Guest User

Untitled

a guest
Jan 24th, 2018
68
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.78 KB | None | 0 0
  1. *<?xml version="1.0" encoding="UTF-8"?>
  2. <Jv-Ins-Reinsurance Version="2008-1"
  3. xmlns="http://www.ACORD.org/standards/Jv-Ins-Reinsurance/2008-1" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:lm="http://www.xchanging.com/USM/xml" xsi:schemaLocation="http://www.ACORD.org/standards/Jv-Ins-Reinsurance/2008-1 Jv-Ins-Reinsurance-2008-1.xsd">
  4. <TechAccount>
  5. <Extension>
  6. <lm:MyCode>Test</lm:MyCode>
  7. </TechAccount>
  8. </Jv-Ins-Reinsurance>*
  9.  
  10. <?xml version="1.0" encoding="UTF-8"?>
  11. <xs:schema
  12. xmlns:xs="http://www.w3.org/2001/XMLSchema" xmlns:usm="http://www.xchanging.com/USM/xml" xmlns="http://www.ACORD.org/standards/Jv-Ins-Reinsurance/2008-1" targetNamespace="http://www.ACORD.org/standards/Jv-Ins-Reinsurance/2008-1" elementFormDefault="qualified" attributeFormDefault="unqualified" version="2008-1b">
  13. <xs:import namespace="http://www.xchanging.com/USM/xml" schemaLocation="USM.xsd"/>
  14.  
  15. <xs:element name="Jv-Ins-Reinsurance" type="Jv-Ins-ReinsuranceType"/>
  16. <xs:element name="TechAccount" type="TechAccountType"/>
  17.  
  18. <xs:complexType name="Jv-Ins-ReinsuranceType">
  19. <xs:choice>
  20. <xs:element ref="TechAccount"/>
  21. </xs:choice>
  22. </xs:complexType>
  23.  
  24. <xs:complexType name="TechAccountType">
  25. <xs:sequence>
  26. <xs:element name="Extension" type="TechAccount_ExtensionType"
  27. minOccurs="0"/>
  28. </xs:sequence>
  29. </xs:complexType>
  30.  
  31. <xs:complexType name="TechAccount_ExtensionType">
  32. <xs:sequence>
  33. <xs:element ref = "usm:MyCode" />
  34. </xs:sequence>
  35. </xs:complexType>
  36. </xs:schema>
  37.  
  38. <?xml version="1.0" encoding="UTF-8"?>
  39. <xs:schema xmlns="http://www.xchanging.com/USM/xml" xmlns:xs="http://www.w3.org/2001/XMLSchema" targetNamespace="http://www.xchanging.com/USM/xml" elementFormDefault="unqualified">
  40. <xs:element name="MyCode" type="xs:string" />
  41. </xs:schema>
Add Comment
Please, Sign In to add comment