1234567891011121314151617181920212223242526272829 |
- <sdo:datagraph xmlns:sdo="commonj.sdo" xmlns:ns1="company.xsd" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
- <xsd>
- <schema targetNamespace="company.xsd" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:tns="company.xsd" xmlns:sdo="commonj.sdo">
- <xsd:complexType name="DepartmentType">
- <xsd:sequence>
- <xsd:element name="Employee" type="tns:Employee" minOccurs="0"/>
- <xsd:element name="changeSummary" type="sdo:ChangeSummary"/>
- </xsd:sequence>
- <xsd:attribute name="name" type="xsd:string"/>
- <xsd:attribute name="location" type="xsd:string"/>
- <xsd:attribute name="number" type="xsd:int"/>
- </xsd:complexType>
- <xsd:complexType name="Employee">
- <xsd:attribute name="name" type="xsd:string"/>
- <xsd:attribute name="SN" type="xsd:string"/>
- <xsd:attribute name="manager" type="xsd:boolean"/>
- </xsd:complexType>
- </schema>
- </xsd>
- <changeSummary delete="#/changeSummary/Employee[0]">
- <DepartmentType sdo:ref="#/DepartmentType" name="R & D" location="Ouaga, BF" sdo:unset="number">
- <Employee sdo:ref="#/changeSummary/Employee[0]"/>
- </DepartmentType>
- <Employee name="Inoussa O." SN="002" manager="1"/>
- </changeSummary>
- <ns1:DepartmentType name="R & D Department" location="Ouaga 01, BF" number="1210">
- <Employee xsi:nil="true"/>
- </ns1:DepartmentType>
- </sdo:datagraph>
|