宁虹看板
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

41 lines
2.4 KiB

  1. <?xml version="1.0" encoding="utf-8"?>
  2. <xs:schema xmlns:tns="http://schemas.microsoft.com/2003/10/Serialization/" attributeFormDefault="qualified" elementFormDefault="qualified" targetNamespace="http://schemas.microsoft.com/2003/10/Serialization/" xmlns:xs="http://www.w3.org/2001/XMLSchema">
  3. <xs:element name="anyType" nillable="true" type="xs:anyType" />
  4. <xs:element name="anyURI" nillable="true" type="xs:anyURI" />
  5. <xs:element name="base64Binary" nillable="true" type="xs:base64Binary" />
  6. <xs:element name="boolean" nillable="true" type="xs:boolean" />
  7. <xs:element name="byte" nillable="true" type="xs:byte" />
  8. <xs:element name="dateTime" nillable="true" type="xs:dateTime" />
  9. <xs:element name="decimal" nillable="true" type="xs:decimal" />
  10. <xs:element name="double" nillable="true" type="xs:double" />
  11. <xs:element name="float" nillable="true" type="xs:float" />
  12. <xs:element name="int" nillable="true" type="xs:int" />
  13. <xs:element name="long" nillable="true" type="xs:long" />
  14. <xs:element name="QName" nillable="true" type="xs:QName" />
  15. <xs:element name="short" nillable="true" type="xs:short" />
  16. <xs:element name="string" nillable="true" type="xs:string" />
  17. <xs:element name="unsignedByte" nillable="true" type="xs:unsignedByte" />
  18. <xs:element name="unsignedInt" nillable="true" type="xs:unsignedInt" />
  19. <xs:element name="unsignedLong" nillable="true" type="xs:unsignedLong" />
  20. <xs:element name="unsignedShort" nillable="true" type="xs:unsignedShort" />
  21. <xs:element name="char" nillable="true" type="tns:char" />
  22. <xs:simpleType name="char">
  23. <xs:restriction base="xs:int" />
  24. </xs:simpleType>
  25. <xs:element name="duration" nillable="true" type="tns:duration" />
  26. <xs:simpleType name="duration">
  27. <xs:restriction base="xs:duration">
  28. <xs:pattern value="\-?P(\d*D)?(T(\d*H)?(\d*M)?(\d*(\.\d*)?S)?)?" />
  29. <xs:minInclusive value="-P10675199DT2H48M5.4775808S" />
  30. <xs:maxInclusive value="P10675199DT2H48M5.4775807S" />
  31. </xs:restriction>
  32. </xs:simpleType>
  33. <xs:element name="guid" nillable="true" type="tns:guid" />
  34. <xs:simpleType name="guid">
  35. <xs:restriction base="xs:string">
  36. <xs:pattern value="[\da-fA-F]{8}-[\da-fA-F]{4}-[\da-fA-F]{4}-[\da-fA-F]{4}-[\da-fA-F]{12}" />
  37. </xs:restriction>
  38. </xs:simpleType>
  39. <xs:attribute name="FactoryType" type="xs:QName" />
  40. <xs:attribute name="Id" type="xs:ID" />
  41. <xs:attribute name="Ref" type="xs:IDREF" />
  42. </xs:schema>