Advertisement
Guest User

Untitled

a guest
Oct 12th, 2017
61
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.13 KB | None | 0 0
  1. <xs:schema attributeFormDefault="unqualified" elementFormDefault="qualified" targetNamespace="http://webservice.ospita.koedia.com/document/v0.8/schemas" xmlns:xs="http://www.w3.org/2001/XMLSchema">
  2. <xs:element name="Lastname" type="xs:string"/>
  3. <xs:element name="Firstname" type="xs:string"/>
  4. <xs:element name="RoomLeader">
  5. <xs:complexType>
  6. <xs:sequence>
  7. <xs:element ref="sch:Lastname" xmlns:sch="http://webservice.ospita.koedia.com/document/v0.8/schemas"/>
  8. <xs:element ref="sch:Firstname" xmlns:sch="http://webservice.ospita.koedia.com/document/v0.8/schemas"/>
  9. </xs:sequence>
  10. <xs:attribute type="xs:string" name="title"/>
  11. </xs:complexType>
  12. </xs:element>
  13. <xs:element name="Pax">
  14. <xs:complexType>
  15. <xs:sequence>
  16. <xs:element ref="sch:Lastname" xmlns:sch="http://webservice.ospita.koedia.com/document/v0.8/schemas"/>
  17. <xs:element ref="sch:Firstname" xmlns:sch="http://webservice.ospita.koedia.com/document/v0.8/schemas"/>
  18. </xs:sequence>
  19. <xs:attribute type="xs:string" name="title"/>
  20. </xs:complexType>
  21. </xs:element>
  22. <xs:element name="Room">
  23. <xs:complexType>
  24. <xs:sequence>
  25. <xs:element ref="sch:RoomLeader" xmlns:sch="http://webservice.ospita.koedia.com/document/v0.8/schemas"/>
  26. <xs:element ref="sch:Pax" xmlns:sch="http://webservice.ospita.koedia.com/document/v0.8/schemas"/>
  27. </xs:sequence>
  28. <xs:attribute type="xs:string" name="roomid"/>
  29. </xs:complexType>
  30. </xs:element>
  31. <xs:element name="RoomsPlan">
  32. <xs:complexType>
  33. <xs:sequence>
  34. <xs:element ref="sch:Room" xmlns:sch="http://webservice.ospita.koedia.com/document/v0.8/schemas"/>
  35. </xs:sequence>
  36. <xs:attribute type="xs:date" name="from"/>
  37. <xs:attribute type="xs:date" name="to"/>
  38. </xs:complexType>
  39. </xs:element>
  40. <xs:element name="ClientIdentification">
  41. <xs:complexType>
  42. <xs:simpleContent>
  43. <xs:extension base="xs:string">
  44. <xs:attribute type="xs:string" name="login"/>
  45. <xs:attribute type="xs:string" name="password"/>
  46. <xs:attribute type="xs:string" name="customeragentid"/>
  47. </xs:extension>
  48. </xs:simpleContent>
  49. </xs:complexType>
  50. </xs:element>
  51. <xs:element name="SessionId" type="xs:string"/>
  52. <xs:element name="BookItem">
  53. <xs:complexType>
  54. <xs:sequence>
  55. <xs:element ref="sch:RoomsPlan" xmlns:sch="http://webservice.ospita.koedia.com/document/v0.8/schemas"/>
  56. </xs:sequence>
  57. <xs:attribute type="xs:string" name="koediabookingref"/>
  58. <xs:attribute type="xs:byte" name="accomcode"/>
  59. </xs:complexType>
  60. </xs:element>
  61. <xs:element name="ReqAccomBook">
  62. <xs:complexType>
  63. <xs:sequence>
  64. <xs:element ref="sch:ClientIdentification" xmlns:sch="http://webservice.ospita.koedia.com/document/v0.8/schemas"/>
  65. <xs:element ref="sch:SessionId" xmlns:sch="http://webservice.ospita.koedia.com/document/v0.8/schemas"/>
  66. <xs:element ref="sch:BookItem" xmlns:sch="http://webservice.ospita.koedia.com/document/v0.8/schemas"/>
  67. </xs:sequence>
  68. </xs:complexType>
  69. </xs:element>
  70. </xs:schema>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement