Files
V2GProtocol_CSharp/temp/exificient/data/W3C/XMLSample/XMLSample_pfx.xml
ChiKyun Kim 747aabe224 add files
2025-09-09 13:59:12 +09:00

33 lines
1.2 KiB
XML

<?xml version="1.0" encoding="UTF-8"?>
<!-- Sample XML Document with *weired* prefixes NS declarations -->
<nsp:personnel xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://www.pok.xyz.com XMLSample.xsd" xmlns:nsp="http://www.pok.xyz.com">
<person id="Boss">
<nss:name xmlns:nss="http://www.svl.xyz.com" xmlns:nssFoo="http://www.svl.xyz.com"
xmlns:nspFoo="http://www.pok.xyz.com">
<nspFoo:family>Smith</nspFoo:family>
<nss:given>Bill</nss:given>
</nss:name>
<email>smith@foo.com</email>
<YearsOfService>20</YearsOfService>
<weight>175.4</weight>
<birthday>1955-03-24</birthday>
<nsp:link nsp:subordinates="worker"/>
</person>
<dft:person xmlns:dftFoo="http://www.dft1.xyz.com" xmlns:dft="http://www.dft1.xyz.com"
id="worker">
<dft:name>
<family xmlns="http://www.dft2.xyz.com">Jones</family>
<given xmlns="">Bill</given>
</dft:name>
<dft:email>jones@foo.com</dft:email>
<dft:YearsOfService>15</dft:YearsOfService>
<dft:weight>175.4</dft:weight>
<dft:birthday>1968-07-16</dft:birthday>
<dft:link manager="Boss"/>
</dft:person>
</nsp:personnel>