1234567891011121314151617181920212223242526 |
- <?xml version="1.0" encoding="utf-8"?>
- <sdo:datagraph xmlns:ns1="company.xsd" xmlns:sdo="commonj.sdo">
- <xsd>
- <schema xmlns:sdo="commonj.sdo" xmlns:tns="company.xsd" xmlns:xsd="http://www.w3.org/2001/XMLSchema" targetNamespace="company.xsd">
- <xsd:complexType name="Employee">
- <xsd:sequence>
- <xsd:element name="name" type="xsd:string" minOccurs="0"/>
- <xsd:element name="SN" type="xsd:string" minOccurs="0"/>
- <xsd:element name="changeSummary" type="sdo:ChangeSummary"/>
- </xsd:sequence>
- <xsd:attribute name="manager" type="xsd:boolean"/>
- <xsd:attribute name="age" type="xsd:byte"/>
- </xsd:complexType>
- </schema>
- </xsd>
- <changeSummary>
- <Employee age="30" sdo:ref="#/Employee">
- <name>Inoussa O.</name>
- <SN>002</SN>
- </Employee>
- </changeSummary>
- <ns1:Employee age="32" manager="1">
- <name>Inoussa OUEDRAOGO</name>
- <SN>001</SN>
- </ns1:Employee>
- </sdo:datagraph>
|