123456789101112131415161718192021222324252627282930313233343536373839404142 |
- <?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="DepartmentType">
- <xsd:sequence>
- <xsd:element name="name" type="xsd:string" minOccurs="0"/>
- <xsd:element name="location" type="xsd:string" minOccurs="0"/>
- <xsd:element name="birthDate" type="xsd:dateTime" minOccurs="0"/>
- <xsd:element name="list_date" type="xsd:dateTime" maxOccurs="unbounded" minOccurs="0"/>
- <xsd:element name="changeSummary" type="sdo:ChangeSummary"/>
- </xsd:sequence>
- </xsd:complexType>
- </schema>
- </xsd>
- <changeSummary>
- <DepartmentType sdo:ref="#/DepartmentType">
- <name>R & D</name>
- <location>Ouaga, BF</location>
- <list_date>
- <listChanges kind="change" index="0" dataValues="1976-10-12T18:28:45.056Z"/>
- <listChanges kind="append" index="3"/>
- <listChanges kind="append" index="4"/>
- <listChanges kind="change" index="1" dataValues="1899-12-30T00:00:00Z"/>
- <listChanges kind="delete" index="0" dataValues="2009-09-01T01:50:00.001Z"/>
- <listChanges kind="delete" index="1" dataValues="2008-07-08T08:57:11.012Z"/>
- <listChanges kind="insert" index="2"/>
- <listChanges kind="append" index="4"/>
- </list_date>
- </DepartmentType>
- </changeSummary>
- <ns1:DepartmentType>
- <name>R & D Department</name>
- <location>Ouaga 01, BF</location>
- <birthDate>1976-10-12T18:28:45.056Z</birthDate>
- <list_date>1899-12-30T00:00:00Z</list_date>
- <list_date>1900-11-08T00:49:00Z</list_date>
- <list_date>2008-07-08T08:57:11.012Z</list_date>
- <list_date>1976-10-12T18:28:45.056Z</list_date>
- <list_date>2009-09-01T01:50:00.001Z</list_date>
- </ns1:DepartmentType>
- </sdo:datagraph>
|