blob: 18bc4ed34e6058bc2c98ca200be1ca7d6117019e (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
|
<?xml version="1.0" ?>
<Elements>
<Book xmlns:lib="http://www.library.com/">
<lib:Title>Sherlock Holmes - I</lib:Title>
<lib:Author>Arthur Conan Doyle</lib:Author>
<purchase xmlns:lib="http://www.otherlibrary.com/">
<lib:Title>Sherlock Holmes - II</lib:Title>
<lib:Author>Arthur Conan Doyle</lib:Author>
</purchase>
<lib:Title>Sherlock Holmes - III</lib:Title>
<lib:Author>Arthur Conan Doyle</lib:Author>
</Book>
<Electronics xmlns="http://doesntexist.com/electronics/">
<item>
<Name>Apple iPhone 6s</Name>
<Price>$324</Price>
</item>
<item xmlns="http://doesntexist.com/dailyuse/">
<Name>Philips Aqua Touch Shaver</Name>
<item xmlns="http://doesntexist.com/dailyuse/model/">
<Model>AT890</Model>
<Price>$74</Price>
</item>
</item>
<item>
<Name>Macbook Pro</Name>
<Price>$500</Price>
</item>
</Electronics>
</Elements>
|