SERVER.xsd 1.5 KB

12345678910111213141516171819202122232425262728
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <xs:schema xmlns:xs="http://www.w3.org/2001/XMLSchema" elementFormDefault="qualified"
  3. xmlns:system_cache__appinfo="http://biuro.biall-net.pl/xmlschema_procesy5/default_db_xml_cache/appinfo.xsd"
  4. vc:minVersion="1.1" xmlns:vc="http://www.w3.org/2007/XMLSchema-versioning"
  5. xmlns:SystemObjects__x3A__File="https://biuro.biall-net.pl/wfs/default_db/SystemObjects/File.xsd"
  6. targetNamespace="http://biuro.biall-net.pl/xmlschema_procesy5/default_db_xml_cache/appinfo.xsd">
  7. <xs:annotation>
  8. <xs:documentation>To define instance of IP addressed system. This should be mapped for ease of use for php _SERVER variable</xs:documentation>
  9. </xs:annotation>
  10. <xs:simpleType name="SERVER_NAME">
  11. <xs:restriction base="xs:string"/>
  12. </xs:simpleType>
  13. <xs:simpleType name="SERVER_PORT">
  14. <xs:restriction base="xs:string"/>
  15. </xs:simpleType>
  16. <xs:simpleType name="SERVER_ADDR">
  17. <xs:restriction base="xs:string"/>
  18. </xs:simpleType>
  19. <xs:complexType name="SERVER">
  20. <xs:sequence>
  21. <xs:element name="SERVER_NAME" type="system_cache__appinfo:SERVER_NAME"/>
  22. <xs:element name="SERVER_PORT" type="system_cache__appinfo:SERVER_PORT" maxOccurs="1"
  23. minOccurs="0"/>
  24. <xs:element name="SERVER_ADDR" type="system_cache__appinfo:SERVER_ADDR" minOccurs="0"/>
  25. </xs:sequence>
  26. </xs:complexType>
  27. <xs:element name="SERVER" type="system_cache__appinfo:SERVER"/>
  28. </xs:schema>