I am new to XML and XSD. I understand the basics but have to work with very complex XSD schema.
Can someone please explain to me:
- What the below header says in English. What I specifically do not get is e.g.
"urn:oecd:ties:cbc:v1"
. This question is new. - What the XML file header delivering data under this schema should look like. This question is new.
<?xml version="1.0" encoding="UTF-8"?>
<xsd:schema xmlns:cbc="urn:oecd:ties:cbc:v1"
xmlns:xsd="http://www.w3.org/2001/XMLSchema"
xmlns:stf="urn:oecd:ties:stf:v4"
xmlns:iso="urn:oecd:ties:isocbctypes:v1"
targetNamespace="urn:oecd:ties:cbc:v1"
elementFormDefault="qualified"
attributeFormDefault="unqualified"
version="1.0.1">
<xsd:import namespace="urn:oecd:ties:isocbctypes:v1"
schemaLocation="isocbctypes_v1.0.1.xsd"/>
<xsd:import namespace="urn:oecd:ties:stf:v4"
schemaLocation="oecdtypes_v4.1.xsd"/>