Created
April 1, 2019 09:33
-
-
Save vikaskanani/efb367bd6729383b6ac8c8abdf787b53 to your computer and use it in GitHub Desktop.
XML data file
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?xml version="1.0" encoding="UTF-8"?> | |
<shiporder orderid="889923" | |
xmlns="http://webservice.example.com/" | |
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" | |
xsi:schemaLocation="http://webservice.example.com/ https://gist.githubusercontent.com/vikaskanani/016522bc8969008e5efdf6770effc430/raw/5eec95f8eb34c538f1cfd1e543b22027e021eafa/ShipOrder.xsd"> | |
<orderperson>John Smith</orderperson> | |
<shipto> | |
<name>Ola Nordmann</name> | |
<address>Langgt 23</address> | |
<city>4000 Stavanger</city> | |
<country>Norway</country> | |
</shipto> | |
<item> | |
<title>Empire Burlesque</title> | |
<note>Special Edition</note> | |
<quantity>1</quantity> | |
<price>10.90</price> | |
</item> | |
<item> | |
<title>Hide your heart</title> | |
<quantity>1</quantity> | |
<price>9.90</price> | |
</item> | |
</shiporder> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment