change_summary_simple.xml 971 B

1234567891011121314151617181920212223242526
  1. <?xml version="1.0" encoding="utf-8"?>
  2. <sdo:datagraph xmlns:ns1="company.xsd" xmlns:sdo="commonj.sdo">
  3. <xsd>
  4. <schema xmlns:sdo="commonj.sdo" xmlns:tns="company.xsd" xmlns:xsd="http://www.w3.org/2001/XMLSchema" targetNamespace="company.xsd">
  5. <xsd:complexType name="Employee">
  6. <xsd:sequence>
  7. <xsd:element name="name" type="xsd:string" minOccurs="0"/>
  8. <xsd:element name="SN" type="xsd:string" minOccurs="0"/>
  9. <xsd:element name="changeSummary" type="sdo:ChangeSummary"/>
  10. </xsd:sequence>
  11. <xsd:attribute name="manager" type="xsd:boolean"/>
  12. <xsd:attribute name="age" type="xsd:byte"/>
  13. </xsd:complexType>
  14. </schema>
  15. </xsd>
  16. <changeSummary>
  17. <Employee age="30" sdo:ref="#/Employee">
  18. <name>Inoussa O.</name>
  19. <SN>002</SN>
  20. </Employee>
  21. </changeSummary>
  22. <ns1:Employee age="32" manager="1">
  23. <name>Inoussa OUEDRAOGO</name>
  24. <SN>001</SN>
  25. </ns1:Employee>
  26. </sdo:datagraph>