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.

52 lines
2.2 KiB

2 weeks ago
  1. <?xml version="1.0" encoding="utf-8"?>
  2. <xs:schema xmlns:tns="http://schemas.datacontract.org/2004/07/UFSoft.UBF.PL.Engine" elementFormDefault="qualified" targetNamespace="http://schemas.datacontract.org/2004/07/UFSoft.UBF.PL.Engine" xmlns:xs="http://www.w3.org/2001/XMLSchema">
  3. <xs:import namespace="http://schemas.microsoft.com/2003/10/Serialization/" />
  4. <xs:simpleType name="ObjectState">
  5. <xs:restriction base="xs:string">
  6. <xs:enumeration value="NotExist">
  7. <xs:annotation>
  8. <xs:appinfo>
  9. <EnumerationValue xmlns="http://schemas.microsoft.com/2003/10/Serialization/">-1</EnumerationValue>
  10. </xs:appinfo>
  11. </xs:annotation>
  12. </xs:enumeration>
  13. <xs:enumeration value="Unchanged" />
  14. <xs:enumeration value="Unknown">
  15. <xs:annotation>
  16. <xs:appinfo>
  17. <EnumerationValue xmlns="http://schemas.microsoft.com/2003/10/Serialization/">0</EnumerationValue>
  18. </xs:appinfo>
  19. </xs:annotation>
  20. </xs:enumeration>
  21. <xs:enumeration value="Inserted">
  22. <xs:annotation>
  23. <xs:appinfo>
  24. <EnumerationValue xmlns="http://schemas.microsoft.com/2003/10/Serialization/">2</EnumerationValue>
  25. </xs:appinfo>
  26. </xs:annotation>
  27. </xs:enumeration>
  28. <xs:enumeration value="Updated" />
  29. <xs:enumeration value="Deleted">
  30. <xs:annotation>
  31. <xs:appinfo>
  32. <EnumerationValue xmlns="http://schemas.microsoft.com/2003/10/Serialization/">8</EnumerationValue>
  33. </xs:appinfo>
  34. </xs:annotation>
  35. </xs:enumeration>
  36. <xs:enumeration value="Operating">
  37. <xs:annotation>
  38. <xs:appinfo>
  39. <EnumerationValue xmlns="http://schemas.microsoft.com/2003/10/Serialization/">9</EnumerationValue>
  40. </xs:appinfo>
  41. </xs:annotation>
  42. </xs:enumeration>
  43. <xs:enumeration value="NeedLoad">
  44. <xs:annotation>
  45. <xs:appinfo>
  46. <EnumerationValue xmlns="http://schemas.microsoft.com/2003/10/Serialization/">10</EnumerationValue>
  47. </xs:appinfo>
  48. </xs:annotation>
  49. </xs:enumeration>
  50. </xs:restriction>
  51. </xs:simpleType>
  52. <xs:element name="ObjectState" nillable="true" type="tns:ObjectState" />
  53. </xs:schema>