stix_schema_spy 1.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (482) hide show
  1. checksums.yaml +15 -0
  2. data/.gitignore +17 -0
  3. data/Gemfile +4 -0
  4. data/LICENSE.txt +24 -0
  5. data/README.md +41 -0
  6. data/Rakefile +3 -0
  7. data/config/1.0.1/stix/README.md +20 -0
  8. data/config/1.0.1/stix/campaign.xsd +210 -0
  9. data/config/1.0.1/stix/course_of_action.xsd +166 -0
  10. data/config/1.0.1/stix/cybox/README.md +13 -0
  11. data/config/1.0.1/stix/cybox/cybox_common.xsd +2319 -0
  12. data/config/1.0.1/stix/cybox/cybox_core.xsd +1095 -0
  13. data/config/1.0.1/stix/cybox/cybox_default_vocabularies.xsd +3326 -0
  14. data/config/1.0.1/stix/cybox/extensions/platform/README.txt +1 -0
  15. data/config/1.0.1/stix/cybox/extensions/platform/cpe-language_2.3.xsd +234 -0
  16. data/config/1.0.1/stix/cybox/extensions/platform/cpe-naming_2.3.xsd +45 -0
  17. data/config/1.0.1/stix/cybox/extensions/platform/cpe2.3.xsd +40 -0
  18. data/config/1.0.1/stix/cybox/extensions/platform/xml.xsd +145 -0
  19. data/config/1.0.1/stix/cybox/objects/API_Object.xsd +55 -0
  20. data/config/1.0.1/stix/cybox/objects/Account_Object.xsd +50 -0
  21. data/config/1.0.1/stix/cybox/objects/Address_Object.xsd +122 -0
  22. data/config/1.0.1/stix/cybox/objects/Artifact_Object.xsd +206 -0
  23. data/config/1.0.1/stix/cybox/objects/Code_Object.xsd +417 -0
  24. data/config/1.0.1/stix/cybox/objects/Custom_Object.xsd +43 -0
  25. data/config/1.0.1/stix/cybox/objects/DNS_Cache_Object.xsd +53 -0
  26. data/config/1.0.1/stix/cybox/objects/DNS_Query_Object.xsd +159 -0
  27. data/config/1.0.1/stix/cybox/objects/DNS_Record_Object.xsd +87 -0
  28. data/config/1.0.1/stix/cybox/objects/Device_Object.xsd +55 -0
  29. data/config/1.0.1/stix/cybox/objects/Disk_Object.xsd +117 -0
  30. data/config/1.0.1/stix/cybox/objects/Disk_Partition_Object.xsd +199 -0
  31. data/config/1.0.1/stix/cybox/objects/Email_Message_Object.xsd +273 -0
  32. data/config/1.0.1/stix/cybox/objects/File_Object.xsd +359 -0
  33. data/config/1.0.1/stix/cybox/objects/GUI_Dialogbox_Object.xsd +41 -0
  34. data/config/1.0.1/stix/cybox/objects/GUI_Object.xsd +40 -0
  35. data/config/1.0.1/stix/cybox/objects/GUI_Window_Object.xsd +46 -0
  36. data/config/1.0.1/stix/cybox/objects/HTTP_Session_Object.xsd +623 -0
  37. data/config/1.0.1/stix/cybox/objects/Library_Object.xsd +114 -0
  38. data/config/1.0.1/stix/cybox/objects/Link_Object.xsd +36 -0
  39. data/config/1.0.1/stix/cybox/objects/Linux_Package_Object.xsd +119 -0
  40. data/config/1.0.1/stix/cybox/objects/Memory_Object.xsd +70 -0
  41. data/config/1.0.1/stix/cybox/objects/Mutex_Object.xsd +40 -0
  42. data/config/1.0.1/stix/cybox/objects/Network_Connection_Object.xsd +609 -0
  43. data/config/1.0.1/stix/cybox/objects/Network_Flow_Object.xsd +1559 -0
  44. data/config/1.0.1/stix/cybox/objects/Network_Packet_Object.xsd +2948 -0
  45. data/config/1.0.1/stix/cybox/objects/Network_Route_Entry_Object.xsd +155 -0
  46. data/config/1.0.1/stix/cybox/objects/Network_Route_Object.xsd +93 -0
  47. data/config/1.0.1/stix/cybox/objects/Network_Socket_Object.xsd +524 -0
  48. data/config/1.0.1/stix/cybox/objects/Network_Subnet_Object.xsd +64 -0
  49. data/config/1.0.1/stix/cybox/objects/PDF_File_Object.xsd +601 -0
  50. data/config/1.0.1/stix/cybox/objects/Pipe_Object.xsd +40 -0
  51. data/config/1.0.1/stix/cybox/objects/Port_Object.xsd +74 -0
  52. data/config/1.0.1/stix/cybox/objects/Process_Object.xsd +197 -0
  53. data/config/1.0.1/stix/cybox/objects/Product_Object.xsd +60 -0
  54. data/config/1.0.1/stix/cybox/objects/Semaphore_Object.xsd +50 -0
  55. data/config/1.0.1/stix/cybox/objects/Socket_Address_Object.xsd +42 -0
  56. data/config/1.0.1/stix/cybox/objects/System_Object.xsd +409 -0
  57. data/config/1.0.1/stix/cybox/objects/URI_Object.xsd +62 -0
  58. data/config/1.0.1/stix/cybox/objects/Unix_File_Object.xsd +164 -0
  59. data/config/1.0.1/stix/cybox/objects/Unix_Network_Route_Entry_Object.xsd +56 -0
  60. data/config/1.0.1/stix/cybox/objects/Unix_Pipe_Object.xsd +36 -0
  61. data/config/1.0.1/stix/cybox/objects/Unix_Process_Object.xsd +143 -0
  62. data/config/1.0.1/stix/cybox/objects/Unix_User_Account_Object.xsd +78 -0
  63. data/config/1.0.1/stix/cybox/objects/Unix_Volume_Object.xsd +41 -0
  64. data/config/1.0.1/stix/cybox/objects/User_Account_Object.xsd +110 -0
  65. data/config/1.0.1/stix/cybox/objects/User_Session_Object.xsd +60 -0
  66. data/config/1.0.1/stix/cybox/objects/Volume_Object.xsd +235 -0
  67. data/config/1.0.1/stix/cybox/objects/Whois_Object.xsd +456 -0
  68. data/config/1.0.1/stix/cybox/objects/Win_Computer_Account_Object.xsd +135 -0
  69. data/config/1.0.1/stix/cybox/objects/Win_Critical_Section_Object.xsd +40 -0
  70. data/config/1.0.1/stix/cybox/objects/Win_Driver_Object.xsd +269 -0
  71. data/config/1.0.1/stix/cybox/objects/Win_Event_Log_Object.xsd +137 -0
  72. data/config/1.0.1/stix/cybox/objects/Win_Event_Object.xsd +80 -0
  73. data/config/1.0.1/stix/cybox/objects/Win_Executable_File_Object.xsd +1333 -0
  74. data/config/1.0.1/stix/cybox/objects/Win_File_Object.xsd +269 -0
  75. data/config/1.0.1/stix/cybox/objects/Win_Handle_Object.xsd +186 -0
  76. data/config/1.0.1/stix/cybox/objects/Win_Kernel_Hook_Object.xsd +109 -0
  77. data/config/1.0.1/stix/cybox/objects/Win_Kernel_Object.xsd +128 -0
  78. data/config/1.0.1/stix/cybox/objects/Win_Mailslot_Object.xsd +56 -0
  79. data/config/1.0.1/stix/cybox/objects/Win_Memory_Page_Region_Object.xsd +198 -0
  80. data/config/1.0.1/stix/cybox/objects/Win_Mutex_Object.xsd +42 -0
  81. data/config/1.0.1/stix/cybox/objects/Win_Network_Route_Entry_Object.xsd +200 -0
  82. data/config/1.0.1/stix/cybox/objects/Win_Network_Share_Object.xsd +205 -0
  83. data/config/1.0.1/stix/cybox/objects/Win_Pipe_Object.xsd +73 -0
  84. data/config/1.0.1/stix/cybox/objects/Win_Prefetch_Object.xsd +113 -0
  85. data/config/1.0.1/stix/cybox/objects/Win_Process_Object.xsd +167 -0
  86. data/config/1.0.1/stix/cybox/objects/Win_Registry_Key_Object.xsd +290 -0
  87. data/config/1.0.1/stix/cybox/objects/Win_Semaphore_Object.xsd +42 -0
  88. data/config/1.0.1/stix/cybox/objects/Win_Service_Object.xsd +287 -0
  89. data/config/1.0.1/stix/cybox/objects/Win_System_Object.xsd +126 -0
  90. data/config/1.0.1/stix/cybox/objects/Win_System_Restore_Object.xsd +199 -0
  91. data/config/1.0.1/stix/cybox/objects/Win_Task_Object.xsd +755 -0
  92. data/config/1.0.1/stix/cybox/objects/Win_Thread_Object.xsd +146 -0
  93. data/config/1.0.1/stix/cybox/objects/Win_User_Account_Object.xsd +73 -0
  94. data/config/1.0.1/stix/cybox/objects/Win_Volume_Object.xsd +161 -0
  95. data/config/1.0.1/stix/cybox/objects/Win_Waitable_Timer_Object.xsd +90 -0
  96. data/config/1.0.1/stix/cybox/objects/X509_Certificate_Object.xsd +270 -0
  97. data/config/1.0.1/stix/data_marking.xsd +92 -0
  98. data/config/1.0.1/stix/exploit_target.xsd +224 -0
  99. data/config/1.0.1/stix/extensions/address/ciq_address_3.0.xsd +27 -0
  100. data/config/1.0.1/stix/extensions/address/readme.txt +1 -0
  101. data/config/1.0.1/stix/extensions/attack_pattern/capec_2.6.1.xsd +31 -0
  102. data/config/1.0.1/stix/extensions/attack_pattern/readme.txt +1 -0
  103. data/config/1.0.1/stix/extensions/identity/ciq_identity_3.0.xsd +108 -0
  104. data/config/1.0.1/stix/extensions/identity/readme.txt +1 -0
  105. data/config/1.0.1/stix/extensions/malware/maec_4.0.1.xsd +31 -0
  106. data/config/1.0.1/stix/extensions/malware/readme.txt +1 -0
  107. data/config/1.0.1/stix/extensions/marking/simple_marking.xsd +30 -0
  108. data/config/1.0.1/stix/extensions/marking/tlp.xsd +39 -0
  109. data/config/1.0.1/stix/extensions/structured_coa/generic.xsd +46 -0
  110. data/config/1.0.1/stix/extensions/test_mechanism/generic.xsd +46 -0
  111. data/config/1.0.1/stix/extensions/test_mechanism/open_ioc_2010.xsd +32 -0
  112. data/config/1.0.1/stix/extensions/test_mechanism/oval_5.10.xsd +37 -0
  113. data/config/1.0.1/stix/extensions/test_mechanism/snort.xsd +36 -0
  114. data/config/1.0.1/stix/extensions/test_mechanism/yara.xsd +36 -0
  115. data/config/1.0.1/stix/extensions/vulnerability/cvrf_1.1.xsd +33 -0
  116. data/config/1.0.1/stix/extensions/vulnerability/readme.txt +1 -0
  117. data/config/1.0.1/stix/external/capec_2.6.1/ap_schema_v2.6.1.xsd +3618 -0
  118. data/config/1.0.1/stix/external/cvrf_1.1/common.xsd +176 -0
  119. data/config/1.0.1/stix/external/cvrf_1.1/cpe-language_2.2a.xsd +182 -0
  120. data/config/1.0.1/stix/external/cvrf_1.1/cvrf.xsd +487 -0
  121. data/config/1.0.1/stix/external/cvrf_1.1/cvss-v2_0.9.xsd +415 -0
  122. data/config/1.0.1/stix/external/cvrf_1.1/dc.xsd +118 -0
  123. data/config/1.0.1/stix/external/cvrf_1.1/prod.xsd +292 -0
  124. data/config/1.0.1/stix/external/cvrf_1.1/scap-core_0.9.xsd +170 -0
  125. data/config/1.0.1/stix/external/cvrf_1.1/vuln.xsd +631 -0
  126. data/config/1.0.1/stix/external/cvrf_1.1/xml.xsd +287 -0
  127. data/config/1.0.1/stix/external/maec_4.0.1/maec_bundle_schema.xsd +1139 -0
  128. data/config/1.0.1/stix/external/maec_4.0.1/maec_package_schema.xsd +938 -0
  129. data/config/1.0.1/stix/external/maec_4.0.1/metadataSharing.xsd +1712 -0
  130. data/config/1.0.1/stix/external/oasis_ciq_3.0/CommonTypes.xsd +104 -0
  131. data/config/1.0.1/stix/external/oasis_ciq_3.0/xAL-types.xsd +511 -0
  132. data/config/1.0.1/stix/external/oasis_ciq_3.0/xAL.xsd +672 -0
  133. data/config/1.0.1/stix/external/oasis_ciq_3.0/xNAL-types.xsd +36 -0
  134. data/config/1.0.1/stix/external/oasis_ciq_3.0/xNAL.xsd +126 -0
  135. data/config/1.0.1/stix/external/oasis_ciq_3.0/xNL-types.xsd +222 -0
  136. data/config/1.0.1/stix/external/oasis_ciq_3.0/xNL.xsd +284 -0
  137. data/config/1.0.1/stix/external/oasis_ciq_3.0/xPIL-types.xsd +854 -0
  138. data/config/1.0.1/stix/external/oasis_ciq_3.0/xPIL.xsd +1621 -0
  139. data/config/1.0.1/stix/external/oasis_ciq_3.0/xlink-2003-12-31.xsd +90 -0
  140. data/config/1.0.1/stix/external/open_ioc_2010/ioc-TR.xsd +25 -0
  141. data/config/1.0.1/stix/external/open_ioc_2010/ioc.xsd +105 -0
  142. data/config/1.0.1/stix/external/oval_5.10/oval-common-schema.xsd +781 -0
  143. data/config/1.0.1/stix/external/oval_5.10/oval-definitions-schema.xsd +1608 -0
  144. data/config/1.0.1/stix/external/oval_5.10/oval-variables-schema.xsd +84 -0
  145. data/config/1.0.1/stix/external/oval_5.10/xmldsig-core-schema.xsd +309 -0
  146. data/config/1.0.1/stix/incident.xsd +787 -0
  147. data/config/1.0.1/stix/indicator.xsd +310 -0
  148. data/config/1.0.1/stix/stix_common.xsd +762 -0
  149. data/config/1.0.1/stix/stix_core.xsd +218 -0
  150. data/config/1.0.1/stix/stix_default_vocabularies.xsd +1684 -0
  151. data/config/1.0.1/stix/threat_actor.xsd +174 -0
  152. data/config/1.0.1/stix/ttp.xsd +341 -0
  153. data/config/1.0/stix/campaign.xsd +209 -0
  154. data/config/1.0/stix/course_of_action.xsd +165 -0
  155. data/config/1.0/stix/cybox/cybox_common.xsd +2319 -0
  156. data/config/1.0/stix/cybox/cybox_core.xsd +1090 -0
  157. data/config/1.0/stix/cybox/cybox_default_vocabularies.xsd +3106 -0
  158. data/config/1.0/stix/cybox/extensions/platform/README.txt +1 -0
  159. data/config/1.0/stix/cybox/extensions/platform/cpe2.3.xsd +40 -0
  160. data/config/1.0/stix/cybox/objects/API_Object.xsd +55 -0
  161. data/config/1.0/stix/cybox/objects/Account_Object.xsd +50 -0
  162. data/config/1.0/stix/cybox/objects/Address_Object.xsd +122 -0
  163. data/config/1.0/stix/cybox/objects/Artifact_Object.xsd +206 -0
  164. data/config/1.0/stix/cybox/objects/Code_Object.xsd +417 -0
  165. data/config/1.0/stix/cybox/objects/Custom_Object.xsd +43 -0
  166. data/config/1.0/stix/cybox/objects/DNS_Cache_Object.xsd +53 -0
  167. data/config/1.0/stix/cybox/objects/DNS_Query_Object.xsd +159 -0
  168. data/config/1.0/stix/cybox/objects/DNS_Record_Object.xsd +87 -0
  169. data/config/1.0/stix/cybox/objects/Device_Object.xsd +55 -0
  170. data/config/1.0/stix/cybox/objects/Disk_Object.xsd +117 -0
  171. data/config/1.0/stix/cybox/objects/Disk_Partition_Object.xsd +199 -0
  172. data/config/1.0/stix/cybox/objects/Email_Message_Object.xsd +273 -0
  173. data/config/1.0/stix/cybox/objects/File_Object.xsd +359 -0
  174. data/config/1.0/stix/cybox/objects/GUI_Dialogbox_Object.xsd +41 -0
  175. data/config/1.0/stix/cybox/objects/GUI_Object.xsd +40 -0
  176. data/config/1.0/stix/cybox/objects/GUI_Window_Object.xsd +46 -0
  177. data/config/1.0/stix/cybox/objects/HTTP_Session_Object.xsd +623 -0
  178. data/config/1.0/stix/cybox/objects/Library_Object.xsd +114 -0
  179. data/config/1.0/stix/cybox/objects/Link_Object.xsd +24 -0
  180. data/config/1.0/stix/cybox/objects/Linux_Package_Object.xsd +119 -0
  181. data/config/1.0/stix/cybox/objects/Memory_Object.xsd +70 -0
  182. data/config/1.0/stix/cybox/objects/Mutex_Object.xsd +40 -0
  183. data/config/1.0/stix/cybox/objects/Network_Connection_Object.xsd +609 -0
  184. data/config/1.0/stix/cybox/objects/Network_Flow_Object.xsd +1559 -0
  185. data/config/1.0/stix/cybox/objects/Network_Packet_Object.xsd +2948 -0
  186. data/config/1.0/stix/cybox/objects/Network_Route_Entry_Object.xsd +155 -0
  187. data/config/1.0/stix/cybox/objects/Network_Route_Object.xsd +93 -0
  188. data/config/1.0/stix/cybox/objects/Network_Socket_Object.xsd +524 -0
  189. data/config/1.0/stix/cybox/objects/Network_Subnet_Object.xsd +64 -0
  190. data/config/1.0/stix/cybox/objects/PDF_File_Object.xsd +601 -0
  191. data/config/1.0/stix/cybox/objects/Pipe_Object.xsd +40 -0
  192. data/config/1.0/stix/cybox/objects/Port_Object.xsd +74 -0
  193. data/config/1.0/stix/cybox/objects/Process_Object.xsd +197 -0
  194. data/config/1.0/stix/cybox/objects/Product_Object.xsd +60 -0
  195. data/config/1.0/stix/cybox/objects/Semaphore_Object.xsd +50 -0
  196. data/config/1.0/stix/cybox/objects/Socket_Address_Object.xsd +42 -0
  197. data/config/1.0/stix/cybox/objects/System_Object.xsd +409 -0
  198. data/config/1.0/stix/cybox/objects/URI_Object.xsd +62 -0
  199. data/config/1.0/stix/cybox/objects/Unix_File_Object.xsd +164 -0
  200. data/config/1.0/stix/cybox/objects/Unix_Network_Route_Entry_Object.xsd +56 -0
  201. data/config/1.0/stix/cybox/objects/Unix_Pipe_Object.xsd +36 -0
  202. data/config/1.0/stix/cybox/objects/Unix_Process_Object.xsd +143 -0
  203. data/config/1.0/stix/cybox/objects/Unix_User_Account_Object.xsd +78 -0
  204. data/config/1.0/stix/cybox/objects/Unix_Volume_Object.xsd +41 -0
  205. data/config/1.0/stix/cybox/objects/User_Account_Object.xsd +110 -0
  206. data/config/1.0/stix/cybox/objects/User_Session_Object.xsd +60 -0
  207. data/config/1.0/stix/cybox/objects/Volume_Object.xsd +235 -0
  208. data/config/1.0/stix/cybox/objects/Whois_Object.xsd +456 -0
  209. data/config/1.0/stix/cybox/objects/Win_Computer_Account_Object.xsd +135 -0
  210. data/config/1.0/stix/cybox/objects/Win_Critical_Section_Object.xsd +40 -0
  211. data/config/1.0/stix/cybox/objects/Win_Driver_Object.xsd +269 -0
  212. data/config/1.0/stix/cybox/objects/Win_Event_Log_Object.xsd +137 -0
  213. data/config/1.0/stix/cybox/objects/Win_Event_Object.xsd +80 -0
  214. data/config/1.0/stix/cybox/objects/Win_Executable_File_Object.xsd +1333 -0
  215. data/config/1.0/stix/cybox/objects/Win_File_Object.xsd +269 -0
  216. data/config/1.0/stix/cybox/objects/Win_Handle_Object.xsd +186 -0
  217. data/config/1.0/stix/cybox/objects/Win_Kernel_Hook_Object.xsd +109 -0
  218. data/config/1.0/stix/cybox/objects/Win_Kernel_Object.xsd +128 -0
  219. data/config/1.0/stix/cybox/objects/Win_Mailslot_Object.xsd +56 -0
  220. data/config/1.0/stix/cybox/objects/Win_Memory_Page_Region_Object.xsd +198 -0
  221. data/config/1.0/stix/cybox/objects/Win_Mutex_Object.xsd +42 -0
  222. data/config/1.0/stix/cybox/objects/Win_Network_Route_Entry_Object.xsd +200 -0
  223. data/config/1.0/stix/cybox/objects/Win_Network_Share_Object.xsd +205 -0
  224. data/config/1.0/stix/cybox/objects/Win_Pipe_Object.xsd +73 -0
  225. data/config/1.0/stix/cybox/objects/Win_Prefetch_Object.xsd +113 -0
  226. data/config/1.0/stix/cybox/objects/Win_Process_Object.xsd +167 -0
  227. data/config/1.0/stix/cybox/objects/Win_Registry_Key_Object.xsd +290 -0
  228. data/config/1.0/stix/cybox/objects/Win_Semaphore_Object.xsd +42 -0
  229. data/config/1.0/stix/cybox/objects/Win_Service_Object.xsd +287 -0
  230. data/config/1.0/stix/cybox/objects/Win_System_Object.xsd +126 -0
  231. data/config/1.0/stix/cybox/objects/Win_System_Restore_Object.xsd +199 -0
  232. data/config/1.0/stix/cybox/objects/Win_Task_Object.xsd +755 -0
  233. data/config/1.0/stix/cybox/objects/Win_Thread_Object.xsd +146 -0
  234. data/config/1.0/stix/cybox/objects/Win_User_Account_Object.xsd +73 -0
  235. data/config/1.0/stix/cybox/objects/Win_Volume_Object.xsd +161 -0
  236. data/config/1.0/stix/cybox/objects/Win_Waitable_Timer_Object.xsd +90 -0
  237. data/config/1.0/stix/cybox/objects/X509_Certificate_Object.xsd +270 -0
  238. data/config/1.0/stix/data_marking.xsd +92 -0
  239. data/config/1.0/stix/exploit_target.xsd +223 -0
  240. data/config/1.0/stix/extensions/address/ciq_address_3.0.xsd +27 -0
  241. data/config/1.0/stix/extensions/address/readme.txt +1 -0
  242. data/config/1.0/stix/extensions/attack_pattern/capec_2.5.xsd +31 -0
  243. data/config/1.0/stix/extensions/identity/ciq_identity_3.0.xsd +108 -0
  244. data/config/1.0/stix/extensions/identity/readme.txt +1 -0
  245. data/config/1.0/stix/extensions/malware/maec_4.0.xsd +32 -0
  246. data/config/1.0/stix/extensions/malware/readme.txt +3 -0
  247. data/config/1.0/stix/extensions/marking/simple_marking.xsd +30 -0
  248. data/config/1.0/stix/extensions/marking/tlp.xsd +39 -0
  249. data/config/1.0/stix/extensions/structured_coa/generic.xsd +46 -0
  250. data/config/1.0/stix/extensions/test_mechanism/generic.xsd +46 -0
  251. data/config/1.0/stix/extensions/test_mechanism/open_ioc_2010.xsd +32 -0
  252. data/config/1.0/stix/extensions/test_mechanism/oval_5.10.xsd +37 -0
  253. data/config/1.0/stix/extensions/test_mechanism/snort.xsd +36 -0
  254. data/config/1.0/stix/extensions/test_mechanism/yara.xsd +36 -0
  255. data/config/1.0/stix/extensions/vulnerability/cvrf_1.1.xsd +33 -0
  256. data/config/1.0/stix/extensions/vulnerability/readme.txt +1 -0
  257. data/config/1.0/stix/external/capec_2.5/ap_schema_v2.5.xsd +2671 -0
  258. data/config/1.0/stix/external/cvrf_1.1/common.xsd +176 -0
  259. data/config/1.0/stix/external/cvrf_1.1/cpe-language_2.2a.xsd +182 -0
  260. data/config/1.0/stix/external/cvrf_1.1/cvrf.xsd +487 -0
  261. data/config/1.0/stix/external/cvrf_1.1/cvss-v2_0.9.xsd +415 -0
  262. data/config/1.0/stix/external/cvrf_1.1/dc.xsd +118 -0
  263. data/config/1.0/stix/external/cvrf_1.1/prod.xsd +292 -0
  264. data/config/1.0/stix/external/cvrf_1.1/scap-core_0.9.xsd +170 -0
  265. data/config/1.0/stix/external/cvrf_1.1/vuln.xsd +631 -0
  266. data/config/1.0/stix/external/cvrf_1.1/xml.xsd +287 -0
  267. data/config/1.0/stix/external/oasis_ciq_3.0/CommonTypes.xsd +104 -0
  268. data/config/1.0/stix/external/oasis_ciq_3.0/xAL-types.xsd +511 -0
  269. data/config/1.0/stix/external/oasis_ciq_3.0/xAL.xsd +672 -0
  270. data/config/1.0/stix/external/oasis_ciq_3.0/xNAL-types.xsd +36 -0
  271. data/config/1.0/stix/external/oasis_ciq_3.0/xNAL.xsd +126 -0
  272. data/config/1.0/stix/external/oasis_ciq_3.0/xNL-types.xsd +222 -0
  273. data/config/1.0/stix/external/oasis_ciq_3.0/xNL.xsd +284 -0
  274. data/config/1.0/stix/external/oasis_ciq_3.0/xPIL-types.xsd +854 -0
  275. data/config/1.0/stix/external/oasis_ciq_3.0/xPIL.xsd +1621 -0
  276. data/config/1.0/stix/external/oasis_ciq_3.0/xlink-2003-12-31.xsd +90 -0
  277. data/config/1.0/stix/external/open_ioc_2010/ioc-TR.xsd +25 -0
  278. data/config/1.0/stix/external/open_ioc_2010/ioc.xsd +105 -0
  279. data/config/1.0/stix/external/oval_5.10/oval-common-schema.xsd +781 -0
  280. data/config/1.0/stix/external/oval_5.10/oval-definitions-schema.xsd +1608 -0
  281. data/config/1.0/stix/external/oval_5.10/oval-variables-schema.xsd +84 -0
  282. data/config/1.0/stix/external/oval_5.10/xmldsig-core-schema.xsd +309 -0
  283. data/config/1.0/stix/incident.xsd +786 -0
  284. data/config/1.0/stix/indicator.xsd +309 -0
  285. data/config/1.0/stix/stix_common.xsd +762 -0
  286. data/config/1.0/stix/stix_core.xsd +217 -0
  287. data/config/1.0/stix/stix_default_vocabularies.xsd +1578 -0
  288. data/config/1.0/stix/threat_actor.xsd +173 -0
  289. data/config/1.0/stix/ttp.xsd +340 -0
  290. data/config/1.1/stix/campaign.xsd +223 -0
  291. data/config/1.1/stix/course_of_action.xsd +190 -0
  292. data/config/1.1/stix/cybox/cybox_common.xsd +2700 -0
  293. data/config/1.1/stix/cybox/cybox_core.xsd +1145 -0
  294. data/config/1.1/stix/cybox/cybox_default_vocabularies.xsd +5180 -0
  295. data/config/1.1/stix/cybox/extensions/location/ciq_address_3.0.xsd +27 -0
  296. data/config/1.1/stix/cybox/extensions/platform/README.txt +1 -0
  297. data/config/1.1/stix/cybox/extensions/platform/cpe2.3.xsd +34 -0
  298. data/config/1.1/stix/cybox/external/cpe_2.3/cpe-language_2.3.xsd +234 -0
  299. data/config/1.1/stix/cybox/external/cpe_2.3/cpe-naming_2.3.xsd +45 -0
  300. data/config/1.1/stix/cybox/external/cpe_2.3/xml.xsd +145 -0
  301. data/config/1.1/stix/cybox/external/oasis_ciq_3.0/CommonTypes.xsd +104 -0
  302. data/config/1.1/stix/cybox/external/oasis_ciq_3.0/xAL-types.xsd +511 -0
  303. data/config/1.1/stix/cybox/external/oasis_ciq_3.0/xAL.xsd +672 -0
  304. data/config/1.1/stix/cybox/external/oasis_ciq_3.0/xNAL-types.xsd +36 -0
  305. data/config/1.1/stix/cybox/external/oasis_ciq_3.0/xNAL.xsd +126 -0
  306. data/config/1.1/stix/cybox/external/oasis_ciq_3.0/xNL-types.xsd +222 -0
  307. data/config/1.1/stix/cybox/external/oasis_ciq_3.0/xNL.xsd +284 -0
  308. data/config/1.1/stix/cybox/external/oasis_ciq_3.0/xPIL-types.xsd +854 -0
  309. data/config/1.1/stix/cybox/external/oasis_ciq_3.0/xPIL.xsd +1621 -0
  310. data/config/1.1/stix/cybox/external/oasis_ciq_3.0/xlink-2003-12-31.xsd +90 -0
  311. data/config/1.1/stix/cybox/objects/API_Object.xsd +55 -0
  312. data/config/1.1/stix/cybox/objects/ARP_Cache_Object.xsd +98 -0
  313. data/config/1.1/stix/cybox/objects/AS_Object.xsd +50 -0
  314. data/config/1.1/stix/cybox/objects/Account_Object.xsd +501 -0
  315. data/config/1.1/stix/cybox/objects/Address_Object.xsd +127 -0
  316. data/config/1.1/stix/cybox/objects/Archive_File_Object.xsd +134 -0
  317. data/config/1.1/stix/cybox/objects/Artifact_Object.xsd +212 -0
  318. data/config/1.1/stix/cybox/objects/Code_Object.xsd +417 -0
  319. data/config/1.1/stix/cybox/objects/Custom_Object.xsd +42 -0
  320. data/config/1.1/stix/cybox/objects/DNS_Cache_Object.xsd +53 -0
  321. data/config/1.1/stix/cybox/objects/DNS_Query_Object.xsd +164 -0
  322. data/config/1.1/stix/cybox/objects/DNS_Record_Object.xsd +92 -0
  323. data/config/1.1/stix/cybox/objects/Device_Object.xsd +65 -0
  324. data/config/1.1/stix/cybox/objects/Disk_Object.xsd +117 -0
  325. data/config/1.1/stix/cybox/objects/Disk_Partition_Object.xsd +199 -0
  326. data/config/1.1/stix/cybox/objects/Domain_Name_Object.xsd +57 -0
  327. data/config/1.1/stix/cybox/objects/Email_Message_Object.xsd +278 -0
  328. data/config/1.1/stix/cybox/objects/File_Object.xsd +397 -0
  329. data/config/1.1/stix/cybox/objects/GUI_Dialogbox_Object.xsd +41 -0
  330. data/config/1.1/stix/cybox/objects/GUI_Object.xsd +40 -0
  331. data/config/1.1/stix/cybox/objects/GUI_Window_Object.xsd +46 -0
  332. data/config/1.1/stix/cybox/objects/HTTP_Session_Object.xsd +633 -0
  333. data/config/1.1/stix/cybox/objects/Hostname_Object.xsd +45 -0
  334. data/config/1.1/stix/cybox/objects/Image_File_Object.xsd +124 -0
  335. data/config/1.1/stix/cybox/objects/Library_Object.xsd +114 -0
  336. data/config/1.1/stix/cybox/objects/Link_Object.xsd +36 -0
  337. data/config/1.1/stix/cybox/objects/Linux_Package_Object.xsd +75 -0
  338. data/config/1.1/stix/cybox/objects/Memory_Object.xsd +141 -0
  339. data/config/1.1/stix/cybox/objects/Mutex_Object.xsd +40 -0
  340. data/config/1.1/stix/cybox/objects/Network_Connection_Object.xsd +540 -0
  341. data/config/1.1/stix/cybox/objects/Network_Flow_Object.xsd +1559 -0
  342. data/config/1.1/stix/cybox/objects/Network_Packet_Object.xsd +2934 -0
  343. data/config/1.1/stix/cybox/objects/Network_Route_Entry_Object.xsd +155 -0
  344. data/config/1.1/stix/cybox/objects/Network_Route_Object.xsd +93 -0
  345. data/config/1.1/stix/cybox/objects/Network_Socket_Object.xsd +529 -0
  346. data/config/1.1/stix/cybox/objects/Network_Subnet_Object.xsd +64 -0
  347. data/config/1.1/stix/cybox/objects/PDF_File_Object.xsd +595 -0
  348. data/config/1.1/stix/cybox/objects/Pipe_Object.xsd +40 -0
  349. data/config/1.1/stix/cybox/objects/Port_Object.xsd +40 -0
  350. data/config/1.1/stix/cybox/objects/Process_Object.xsd +199 -0
  351. data/config/1.1/stix/cybox/objects/Product_Object.xsd +65 -0
  352. data/config/1.1/stix/cybox/objects/SMS_Message_Object.xsd +79 -0
  353. data/config/1.1/stix/cybox/objects/Semaphore_Object.xsd +50 -0
  354. data/config/1.1/stix/cybox/objects/Socket_Address_Object.xsd +50 -0
  355. data/config/1.1/stix/cybox/objects/System_Object.xsd +410 -0
  356. data/config/1.1/stix/cybox/objects/URI_Object.xsd +62 -0
  357. data/config/1.1/stix/cybox/objects/URL_History_Object.xsd +104 -0
  358. data/config/1.1/stix/cybox/objects/Unix_File_Object.xsd +164 -0
  359. data/config/1.1/stix/cybox/objects/Unix_Network_Route_Entry_Object.xsd +56 -0
  360. data/config/1.1/stix/cybox/objects/Unix_Pipe_Object.xsd +36 -0
  361. data/config/1.1/stix/cybox/objects/Unix_Process_Object.xsd +143 -0
  362. data/config/1.1/stix/cybox/objects/Unix_User_Account_Object.xsd +78 -0
  363. data/config/1.1/stix/cybox/objects/Unix_Volume_Object.xsd +41 -0
  364. data/config/1.1/stix/cybox/objects/User_Account_Object.xsd +110 -0
  365. data/config/1.1/stix/cybox/objects/User_Session_Object.xsd +60 -0
  366. data/config/1.1/stix/cybox/objects/Volume_Object.xsd +235 -0
  367. data/config/1.1/stix/cybox/objects/Whois_Object.xsd +430 -0
  368. data/config/1.1/stix/cybox/objects/Win_Computer_Account_Object.xsd +135 -0
  369. data/config/1.1/stix/cybox/objects/Win_Critical_Section_Object.xsd +40 -0
  370. data/config/1.1/stix/cybox/objects/Win_Driver_Object.xsd +270 -0
  371. data/config/1.1/stix/cybox/objects/Win_Event_Log_Object.xsd +137 -0
  372. data/config/1.1/stix/cybox/objects/Win_Event_Object.xsd +80 -0
  373. data/config/1.1/stix/cybox/objects/Win_Executable_File_Object.xsd +1311 -0
  374. data/config/1.1/stix/cybox/objects/Win_File_Object.xsd +269 -0
  375. data/config/1.1/stix/cybox/objects/Win_Filemapping_Object.xsd +175 -0
  376. data/config/1.1/stix/cybox/objects/Win_Handle_Object.xsd +351 -0
  377. data/config/1.1/stix/cybox/objects/Win_Hook_Object.xsd +152 -0
  378. data/config/1.1/stix/cybox/objects/Win_Kernel_Hook_Object.xsd +109 -0
  379. data/config/1.1/stix/cybox/objects/Win_Kernel_Object.xsd +128 -0
  380. data/config/1.1/stix/cybox/objects/Win_Mailslot_Object.xsd +56 -0
  381. data/config/1.1/stix/cybox/objects/Win_Memory_Page_Region_Object.xsd +198 -0
  382. data/config/1.1/stix/cybox/objects/Win_Mutex_Object.xsd +42 -0
  383. data/config/1.1/stix/cybox/objects/Win_Network_Route_Entry_Object.xsd +200 -0
  384. data/config/1.1/stix/cybox/objects/Win_Network_Share_Object.xsd +205 -0
  385. data/config/1.1/stix/cybox/objects/Win_Pipe_Object.xsd +73 -0
  386. data/config/1.1/stix/cybox/objects/Win_Prefetch_Object.xsd +113 -0
  387. data/config/1.1/stix/cybox/objects/Win_Process_Object.xsd +174 -0
  388. data/config/1.1/stix/cybox/objects/Win_Registry_Key_Object.xsd +290 -0
  389. data/config/1.1/stix/cybox/objects/Win_Semaphore_Object.xsd +42 -0
  390. data/config/1.1/stix/cybox/objects/Win_Service_Object.xsd +287 -0
  391. data/config/1.1/stix/cybox/objects/Win_System_Object.xsd +126 -0
  392. data/config/1.1/stix/cybox/objects/Win_System_Restore_Object.xsd +207 -0
  393. data/config/1.1/stix/cybox/objects/Win_Task_Object.xsd +755 -0
  394. data/config/1.1/stix/cybox/objects/Win_Thread_Object.xsd +146 -0
  395. data/config/1.1/stix/cybox/objects/Win_User_Account_Object.xsd +73 -0
  396. data/config/1.1/stix/cybox/objects/Win_Volume_Object.xsd +161 -0
  397. data/config/1.1/stix/cybox/objects/Win_Waitable_Timer_Object.xsd +90 -0
  398. data/config/1.1/stix/cybox/objects/X509_Certificate_Object.xsd +275 -0
  399. data/config/1.1/stix/data_marking.xsd +96 -0
  400. data/config/1.1/stix/exploit_target.xsd +323 -0
  401. data/config/1.1/stix/extensions/address/ciq_3.0_address.xsd +27 -0
  402. data/config/1.1/stix/extensions/address/readme.txt +1 -0
  403. data/config/1.1/stix/extensions/attack_pattern/capec_2.7_attack_pattern.xsd +31 -0
  404. data/config/1.1/stix/extensions/attack_pattern/readme.txt +1 -0
  405. data/config/1.1/stix/extensions/identity/ciq_3.0_identity.xsd +113 -0
  406. data/config/1.1/stix/extensions/identity/readme.txt +1 -0
  407. data/config/1.1/stix/extensions/malware/maec_4.1_malware.xsd +31 -0
  408. data/config/1.1/stix/extensions/malware/readme.txt +1 -0
  409. data/config/1.1/stix/extensions/marking/simple_marking.xsd +31 -0
  410. data/config/1.1/stix/extensions/marking/terms_of_use_marking.xsd +31 -0
  411. data/config/1.1/stix/extensions/marking/tlp_marking.xsd +40 -0
  412. data/config/1.1/stix/extensions/structured_coa/generic_structured_coa.xsd +46 -0
  413. data/config/1.1/stix/extensions/test_mechanism/generic_test_mechanism.xsd +46 -0
  414. data/config/1.1/stix/extensions/test_mechanism/open_ioc_2010_test_mechanism.xsd +32 -0
  415. data/config/1.1/stix/extensions/test_mechanism/oval_5.10_test_mechanism.xsd +37 -0
  416. data/config/1.1/stix/extensions/test_mechanism/snort_test_mechanism.xsd +56 -0
  417. data/config/1.1/stix/extensions/test_mechanism/yara_test_mechanism.xsd +36 -0
  418. data/config/1.1/stix/extensions/vulnerability/cvrf_1.1_vulnerability.xsd +33 -0
  419. data/config/1.1/stix/extensions/vulnerability/readme.txt +1 -0
  420. data/config/1.1/stix/external/capec_2.7/ap_schema_v2.7.xsd +3618 -0
  421. data/config/1.1/stix/external/cvrf_1.1/common.xsd +176 -0
  422. data/config/1.1/stix/external/cvrf_1.1/cpe-language_2.2a.xsd +182 -0
  423. data/config/1.1/stix/external/cvrf_1.1/cvrf.xsd +487 -0
  424. data/config/1.1/stix/external/cvrf_1.1/cvss-v2_0.9.xsd +415 -0
  425. data/config/1.1/stix/external/cvrf_1.1/dc.xsd +118 -0
  426. data/config/1.1/stix/external/cvrf_1.1/prod.xsd +292 -0
  427. data/config/1.1/stix/external/cvrf_1.1/scap-core_0.9.xsd +170 -0
  428. data/config/1.1/stix/external/cvrf_1.1/vuln.xsd +631 -0
  429. data/config/1.1/stix/external/cvrf_1.1/xml.xsd +287 -0
  430. data/config/1.1/stix/external/maec_4.1/maec_bundle_schema.xsd +1228 -0
  431. data/config/1.1/stix/external/maec_4.1/maec_container_schema.xsd +62 -0
  432. data/config/1.1/stix/external/maec_4.1/maec_default_vocabularies.xsd +5325 -0
  433. data/config/1.1/stix/external/maec_4.1/maec_package_schema.xsd +1095 -0
  434. data/config/1.1/stix/external/maec_4.1/metadataSharing.xsd +1712 -0
  435. data/config/1.1/stix/external/oasis_ciq_3.0/CommonTypes.xsd +104 -0
  436. data/config/1.1/stix/external/oasis_ciq_3.0/xAL-types.xsd +511 -0
  437. data/config/1.1/stix/external/oasis_ciq_3.0/xAL.xsd +672 -0
  438. data/config/1.1/stix/external/oasis_ciq_3.0/xNAL-types.xsd +36 -0
  439. data/config/1.1/stix/external/oasis_ciq_3.0/xNAL.xsd +126 -0
  440. data/config/1.1/stix/external/oasis_ciq_3.0/xNL-types.xsd +222 -0
  441. data/config/1.1/stix/external/oasis_ciq_3.0/xNL.xsd +284 -0
  442. data/config/1.1/stix/external/oasis_ciq_3.0/xPIL-types.xsd +854 -0
  443. data/config/1.1/stix/external/oasis_ciq_3.0/xPIL.xsd +1621 -0
  444. data/config/1.1/stix/external/oasis_ciq_3.0/xlink-2003-12-31.xsd +90 -0
  445. data/config/1.1/stix/external/open_ioc_2010/ioc-TR.xsd +25 -0
  446. data/config/1.1/stix/external/open_ioc_2010/ioc.xsd +105 -0
  447. data/config/1.1/stix/external/oval_5.10/oval-common-schema.xsd +781 -0
  448. data/config/1.1/stix/external/oval_5.10/oval-definitions-schema.xsd +1608 -0
  449. data/config/1.1/stix/external/oval_5.10/oval-variables-schema.xsd +84 -0
  450. data/config/1.1/stix/external/oval_5.10/xmldsig-core-schema.xsd +309 -0
  451. data/config/1.1/stix/incident.xsd +759 -0
  452. data/config/1.1/stix/indicator.xsd +367 -0
  453. data/config/1.1/stix/stix_common.xsd +932 -0
  454. data/config/1.1/stix/stix_core.xsd +253 -0
  455. data/config/1.1/stix/stix_default_vocabularies.xsd +2015 -0
  456. data/config/1.1/stix/threat_actor.xsd +181 -0
  457. data/config/1.1/stix/ttp.xsd +429 -0
  458. data/config/1.1/uber_schema.xsd +149 -0
  459. data/config/mappings.json +30 -0
  460. data/lib/stix_schema_spy.rb +18 -0
  461. data/lib/stix_schema_spy/models/attribute.rb +20 -0
  462. data/lib/stix_schema_spy/models/complex_type.rb +50 -0
  463. data/lib/stix_schema_spy/models/element.rb +26 -0
  464. data/lib/stix_schema_spy/models/external_type.rb +48 -0
  465. data/lib/stix_schema_spy/models/has_children.rb +83 -0
  466. data/lib/stix_schema_spy/models/node.rb +71 -0
  467. data/lib/stix_schema_spy/models/schema.rb +217 -0
  468. data/lib/stix_schema_spy/models/simple_type.rb +47 -0
  469. data/lib/stix_schema_spy/models/special_field.rb +21 -0
  470. data/lib/stix_schema_spy/models/type.rb +106 -0
  471. data/lib/stix_schema_spy/util/schema_naming.rb +106 -0
  472. data/lib/stix_schema_spy/util/tasks.rb +69 -0
  473. data/lib/stix_schema_spy/version.rb +3 -0
  474. data/spec/lib/schema_naming_spec.rb +190 -0
  475. data/spec/models/complex_type_spec.rb +68 -0
  476. data/spec/models/node_spec.rb +47 -0
  477. data/spec/models/schema_spec.rb +63 -0
  478. data/spec/models/simple_type_spec.rb +38 -0
  479. data/spec/models/type_spec.rb +43 -0
  480. data/spec/spec_helper.rb +8 -0
  481. data/stix_schema_spy.gemspec +27 -0
  482. metadata +602 -0
@@ -0,0 +1,854 @@
1
+ <?xml version="1.0" encoding="UTF-8"?>
2
+ <xs:schema xmlns="urn:oasis:names:tc:ciq:xpil:3" xmlns:xs="http://www.w3.org/2001/XMLSchema" targetNamespace="urn:oasis:names:tc:ciq:xpil:3" elementFormDefault="qualified" attributeFormDefault="qualified">
3
+ <xs:annotation>
4
+ <xs:documentation>
5
+ Specification Name: OASIS CIQ TC - extensible Party Information Language Types (xPIL-types)
6
+ Description: Defines the W3C schema that provides enumeration lists to support
7
+ xPIL.
8
+ (Using XML Schema based standard code list/enumeration mechanism - OPTION 1 AND DEFAULT)
9
+ Produced by: OASIS Customer Information Quality Technical Committee
10
+ URL: http://www.oasis-open.org/committees/ciq
11
+ Version: 3.0
12
+ Status: Committee Specification CS02
13
+ Copyright: 2007-09, OASIS, http://www.oasis-open.org
14
+ Last Modified: 20 September 2008
15
+ Last Modified by: Ram Kumar, Chair, OASIS CIQ TC
16
+
17
+ NOTE: This is the schema that users can customise the enumeration lists to meet their
18
+ exchange requirements. The enumeration values provided are ONLY SAMPLES and
19
+ is not complete. It is upto the application to decide what the values should be. To achieve
20
+ interoperability between applications using this specification, it is recommended that an
21
+ SLA/agreement is in place as to what the enumeration values will be used in this file
22
+ </xs:documentation>
23
+ <xs:documentation>Please note: These schemas have been modified by the STIX team to support remote validation. The only change made is to the schemaLocation attribute(s).</xs:documentation>
24
+ </xs:annotation>
25
+ <xs:simpleType name="AccountElementList">
26
+ <xs:annotation>
27
+ <xs:documentation>List of information types used for account details</xs:documentation>
28
+ </xs:annotation>
29
+ <xs:restriction base="xs:normalizedString">
30
+ <xs:enumeration value="AccountID">
31
+ <xs:annotation>
32
+ <xs:documentation>The unique name, number or mixed account identifier, e.g. bank account number</xs:documentation>
33
+ </xs:annotation>
34
+ </xs:enumeration>
35
+ <xs:enumeration value="IssuingAuthority">
36
+ <xs:annotation>
37
+ <xs:documentation>The organisation that assigns and manages the account, e.g. a bank, power supplier, etc.</xs:documentation>
38
+ </xs:annotation>
39
+ </xs:enumeration>
40
+ <xs:enumeration value="AccountType">
41
+ <xs:annotation>
42
+ <xs:documentation>Commonly recognised names, such as IRD number (for NZ), SSN (for US), ABN (for AU), etc.</xs:documentation>
43
+ </xs:annotation>
44
+ </xs:enumeration>
45
+ <xs:enumeration value="AccountBranch"/>
46
+ <xs:enumeration value="IssuingCountryName">
47
+ <xs:annotation>
48
+ <xs:documentation>The country that issued the account</xs:documentation>
49
+ </xs:annotation>
50
+ </xs:enumeration>
51
+ </xs:restriction>
52
+ </xs:simpleType>
53
+ <xs:simpleType name="AccountOwnershipTypeList">
54
+ <xs:annotation>
55
+ <xs:documentation>List of types of account ownerships</xs:documentation>
56
+ </xs:annotation>
57
+ <xs:restriction base="xs:time"/>
58
+ </xs:simpleType>
59
+ <xs:simpleType name="AccountTypeList">
60
+ <xs:annotation>
61
+ <xs:documentation>List of types of accounts</xs:documentation>
62
+ </xs:annotation>
63
+ <xs:restriction base="xs:normalizedString"/>
64
+ </xs:simpleType>
65
+ <xs:simpleType name="BloodGroupList">
66
+ <xs:annotation>
67
+ <xs:documentation>List of types of blood groups</xs:documentation>
68
+ </xs:annotation>
69
+ <xs:restriction base="xs:normalizedString">
70
+ <xs:enumeration value="A+"/>
71
+ <xs:enumeration value="A-"/>
72
+ <xs:enumeration value="B+"/>
73
+ <xs:enumeration value="B-"/>
74
+ <xs:enumeration value="AB+"/>
75
+ <xs:enumeration value="AB-"/>
76
+ <xs:enumeration value="O+"/>
77
+ <xs:enumeration value="O-"/>
78
+ </xs:restriction>
79
+ </xs:simpleType>
80
+ <xs:simpleType name="BodyMarkPartList">
81
+ <xs:annotation>
82
+ <xs:documentation>List of body parts for marks</xs:documentation>
83
+ </xs:annotation>
84
+ <xs:restriction base="xs:normalizedString"/>
85
+ </xs:simpleType>
86
+ <xs:simpleType name="BodyMarkPartLocationList">
87
+ <xs:annotation>
88
+ <xs:documentation>List of locations on the body parts where the marks are found</xs:documentation>
89
+ </xs:annotation>
90
+ <xs:restriction base="xs:normalizedString"/>
91
+ </xs:simpleType>
92
+ <xs:simpleType name="BirthInfoElementList">
93
+ <xs:annotation>
94
+ <xs:documentation>List of information types used for birth information</xs:documentation>
95
+ </xs:annotation>
96
+ <xs:restriction base="xs:normalizedString">
97
+ <xs:enumeration value="BirthStar">
98
+ <xs:annotation>
99
+ <xs:documentation>Commonly used in some oriental cultures</xs:documentation>
100
+ </xs:annotation>
101
+ </xs:enumeration>
102
+ <xs:enumeration value="BirthPlace">
103
+ <xs:annotation>
104
+ <xs:documentation>A free text descriprion of the birth place, e.g. country name, region, etc.</xs:documentation>
105
+ </xs:annotation>
106
+ </xs:enumeration>
107
+ <xs:enumeration value="BirthSign">
108
+ <xs:annotation>
109
+ <xs:documentation>Specific to some cultures</xs:documentation>
110
+ </xs:annotation>
111
+ </xs:enumeration>
112
+ </xs:restriction>
113
+ </xs:simpleType>
114
+ <xs:simpleType name="CommunicationMediaTypeList">
115
+ <xs:annotation>
116
+ <xs:documentation>List of communication media types used for contact purposes</xs:documentation>
117
+ </xs:annotation>
118
+ <xs:restriction base="xs:normalizedString">
119
+ <xs:enumeration value="Cellphone"/>
120
+ <xs:enumeration value="Fax"/>
121
+ <xs:enumeration value="Pager"/>
122
+ <xs:enumeration value="Telephone"/>
123
+ <xs:enumeration value="VOIP"/>
124
+ </xs:restriction>
125
+ </xs:simpleType>
126
+ <xs:simpleType name="ContactNumberElementList">
127
+ <xs:annotation>
128
+ <xs:documentation>List of information types used for phone number details</xs:documentation>
129
+ </xs:annotation>
130
+ <xs:restriction base="xs:normalizedString">
131
+ <xs:enumeration value="CountryCode">
132
+ <xs:annotation>
133
+ <xs:documentation>Code to dial to a country. E.g. 1 for US, 44 for UK</xs:documentation>
134
+ </xs:annotation>
135
+ </xs:enumeration>
136
+ <xs:enumeration value="AreaCode">
137
+ <xs:annotation>
138
+ <xs:documentation>Code to dial an area within a country. For example: "02" for Sydney, "03" for Melbourne</xs:documentation>
139
+ </xs:annotation>
140
+ </xs:enumeration>
141
+ <xs:enumeration value="LocalNumber">
142
+ <xs:annotation>
143
+ <xs:documentation>Local number as would be used by others within the same dialing area.</xs:documentation>
144
+ </xs:annotation>
145
+ </xs:enumeration>
146
+ <xs:enumeration value="Extension">
147
+ <xs:annotation>
148
+ <xs:documentation>An extension to the number that is usually handled by some PABX</xs:documentation>
149
+ </xs:annotation>
150
+ </xs:enumeration>
151
+ <xs:enumeration value="Pin">
152
+ <xs:annotation>
153
+ <xs:documentation>E.g. special access code</xs:documentation>
154
+ </xs:annotation>
155
+ </xs:enumeration>
156
+ <xs:enumeration value="Separator">
157
+ <xs:annotation>
158
+ <xs:documentation>Any text that is not part of the phone number, but has some informational content, e.g. Ext. </xs:documentation>
159
+ </xs:annotation>
160
+ </xs:enumeration>
161
+ <xs:enumeration value="NationalNumber">
162
+ <xs:annotation>
163
+ <xs:documentation>Area code with local number if one line. May include national access numbers.</xs:documentation>
164
+ </xs:annotation>
165
+ </xs:enumeration>
166
+ <xs:enumeration value="InternationalNumber">
167
+ <xs:annotation>
168
+ <xs:documentation>Full international number in one line. May include international access numbers.</xs:documentation>
169
+ </xs:annotation>
170
+ </xs:enumeration>
171
+ </xs:restriction>
172
+ </xs:simpleType>
173
+ <xs:simpleType name="ContactNumberUsageList">
174
+ <xs:annotation>
175
+ <xs:documentation>List of types of uses of contact number</xs:documentation>
176
+ </xs:annotation>
177
+ <xs:restriction base="xs:normalizedString"/>
178
+ </xs:simpleType>
179
+ <xs:simpleType name="DisabilityCauseList">
180
+ <xs:annotation>
181
+ <xs:documentation>List of causes of disability</xs:documentation>
182
+ </xs:annotation>
183
+ <xs:restriction base="xs:normalizedString"/>
184
+ </xs:simpleType>
185
+ <xs:simpleType name="DocumentElementList">
186
+ <xs:annotation>
187
+ <xs:documentation>List of information types used for document details</xs:documentation>
188
+ </xs:annotation>
189
+ <xs:restriction base="xs:normalizedString">
190
+ <xs:enumeration value="DocumentID">
191
+ <xs:annotation>
192
+ <xs:documentation>Usually the number of the document, which can be alphanumeric</xs:documentation>
193
+ </xs:annotation>
194
+ </xs:enumeration>
195
+ <xs:enumeration value="DocumentName">
196
+ <xs:annotation>
197
+ <xs:documentation>Name of the document.e.g. VISA, MASTERCARD for credit cards</xs:documentation>
198
+ </xs:annotation>
199
+ </xs:enumeration>
200
+ <xs:enumeration value="Privilege">
201
+ <xs:annotation>
202
+ <xs:documentation>A privilege the holder of the document was grunted. E.g. security access level</xs:documentation>
203
+ </xs:annotation>
204
+ </xs:enumeration>
205
+ <xs:enumeration value="Restriction">
206
+ <xs:annotation>
207
+ <xs:documentation>A restriction imposed on the holder of the document. E.g. learners license</xs:documentation>
208
+ </xs:annotation>
209
+ </xs:enumeration>
210
+ <xs:enumeration value="GroupName">
211
+ <xs:annotation>
212
+ <xs:documentation>A name of a larger group that recognises this document or supports it.</xs:documentation>
213
+ </xs:annotation>
214
+ </xs:enumeration>
215
+ <xs:enumeration value="VerificationCode">
216
+ <xs:annotation>
217
+ <xs:documentation>Verirfication/security code as in credit card</xs:documentation>
218
+ </xs:annotation>
219
+ </xs:enumeration>
220
+ <xs:enumeration value="Category">
221
+ <xs:annotation>
222
+ <xs:documentation>Category of the document such as Donor Type in License,
223
+ Gold Card, Silver Card, Platinum Card, etc</xs:documentation>
224
+ </xs:annotation>
225
+ </xs:enumeration>
226
+ <xs:enumeration value="IssuePlace">
227
+ <xs:annotation>
228
+ <xs:documentation>Place of issue of the document. e.g. Sydney, Australia</xs:documentation>
229
+ </xs:annotation>
230
+ </xs:enumeration>
231
+ <xs:enumeration value="AccessCode">
232
+ <xs:annotation>
233
+ <xs:documentation>Access/Security code of the document</xs:documentation>
234
+ </xs:annotation>
235
+ </xs:enumeration>
236
+ <xs:enumeration value="Type">
237
+ <xs:annotation>
238
+ <xs:documentation>Use this if the enumeration list for type of document is not used.</xs:documentation>
239
+ </xs:annotation>
240
+ </xs:enumeration>
241
+ </xs:restriction>
242
+ </xs:simpleType>
243
+ <xs:simpleType name="DocumentTypeList">
244
+ <xs:annotation>
245
+ <xs:documentation>List of types of documents </xs:documentation>
246
+ </xs:annotation>
247
+ <xs:restriction base="xs:normalizedString">
248
+ <xs:enumeration value="Passport"/>
249
+ <xs:enumeration value="DriverLicense"/>
250
+ <xs:enumeration value="CreditCard"/>
251
+ <xs:enumeration value="BankCard"/>
252
+ <xs:enumeration value="KeyCard"/>
253
+ <xs:enumeration value="AccessCard"/>
254
+ <xs:enumeration value="IdentificationCard"/>
255
+ <xs:enumeration value="Certificate"/>
256
+ <xs:enumeration value="MileageProgram"/>
257
+ </xs:restriction>
258
+ </xs:simpleType>
259
+ <xs:simpleType name="ElectronicAddressIdentifierTypeList">
260
+ <xs:annotation>
261
+ <xs:documentation>List of electronic address identifiers</xs:documentation>
262
+ </xs:annotation>
263
+ <xs:restriction base="xs:normalizedString">
264
+ <xs:enumeration value="AIM"/>
265
+ <xs:enumeration value="EMAIL"/>
266
+ <xs:enumeration value="GOOGLE"/>
267
+ <xs:enumeration value="GIZMO"/>
268
+ <xs:enumeration value="ICQ"/>
269
+ <xs:enumeration value="JABBER"/>
270
+ <xs:enumeration value="MSN"/>
271
+ <xs:enumeration value="SIP"/>
272
+ <xs:enumeration value="SKYPE"/>
273
+ <xs:enumeration value="URL"/>
274
+ <xs:enumeration value="XRI"/>
275
+ <xs:enumeration value="YAHOO"/>
276
+ </xs:restriction>
277
+ </xs:simpleType>
278
+ <xs:simpleType name="ElectronicAddressIdentifierUsageList">
279
+ <xs:annotation>
280
+ <xs:documentation>List of types of use of electronic address identifiers</xs:documentation>
281
+ </xs:annotation>
282
+ <xs:restriction base="xs:normalizedString"/>
283
+ </xs:simpleType>
284
+ <xs:simpleType name="EventTypeList">
285
+ <xs:annotation>
286
+ <xs:documentation>List of type of events</xs:documentation>
287
+ </xs:annotation>
288
+ <xs:restriction base="xs:normalizedString"/>
289
+ </xs:simpleType>
290
+ <xs:simpleType name="FeatureTypeList">
291
+ <xs:annotation>
292
+ <xs:documentation>List of person's physical features </xs:documentation>
293
+ </xs:annotation>
294
+ <xs:restriction base="xs:normalizedString">
295
+ <xs:enumeration value="Weight"/>
296
+ <xs:enumeration value="Height"/>
297
+ <xs:enumeration value="HairColour"/>
298
+ <xs:enumeration value="EyeColour"/>
299
+ <xs:enumeration value="SkinColour"/>
300
+ <xs:enumeration value="Waist"/>
301
+ <xs:enumeration value="Breast"/>
302
+ <xs:enumeration value="Hip"/>
303
+ </xs:restriction>
304
+ </xs:simpleType>
305
+ <xs:simpleType name="FreeTextLineTypeList">
306
+ <xs:annotation>
307
+ <xs:documentation>List of types for free text lines for defining party characteristics as free format text</xs:documentation>
308
+ </xs:annotation>
309
+ <xs:restriction base="xs:normalizedString"/>
310
+ </xs:simpleType>
311
+ <xs:simpleType name="GenderList">
312
+ <xs:annotation>
313
+ <xs:documentation>List of type of gender</xs:documentation>
314
+ </xs:annotation>
315
+ <xs:restriction base="xs:normalizedString"/>
316
+ </xs:simpleType>
317
+ <xs:simpleType name="HabitTypeList">
318
+ <xs:annotation>
319
+ <xs:documentation>List of type/category of habit</xs:documentation>
320
+ </xs:annotation>
321
+ <xs:restriction base="xs:normalizedString"/>
322
+ </xs:simpleType>
323
+ <xs:simpleType name="HobbyTypeList">
324
+ <xs:annotation>
325
+ <xs:documentation>List of type/category of hobby</xs:documentation>
326
+ </xs:annotation>
327
+ <xs:restriction base="xs:normalizedString"/>
328
+ </xs:simpleType>
329
+ <xs:simpleType name="IndustryCodeList">
330
+ <xs:annotation>
331
+ <xs:documentation>List if industry code</xs:documentation>
332
+ </xs:annotation>
333
+ <xs:restriction base="xs:normalizedString"/>
334
+ </xs:simpleType>
335
+ <xs:simpleType name="IndustryTypeList">
336
+ <xs:annotation>
337
+ <xs:documentation>List of industry type</xs:documentation>
338
+ </xs:annotation>
339
+ <xs:restriction base="xs:normalizedString"/>
340
+ </xs:simpleType>
341
+ <xs:simpleType name="LanguagePreferenceList">
342
+ <xs:annotation>
343
+ <xs:documentation>Lit of preference to use the language e.g. speak, read, write</xs:documentation>
344
+ </xs:annotation>
345
+ <xs:restriction base="xs:normalizedString"/>
346
+ </xs:simpleType>
347
+ <xs:simpleType name="LanguageSkillsList">
348
+ <xs:annotation>
349
+ <xs:documentation>List of types of skills on languages</xs:documentation>
350
+ </xs:annotation>
351
+ <xs:restriction base="xs:normalizedString">
352
+ <xs:enumeration value="No"/>
353
+ <xs:enumeration value="Fluent"/>
354
+ <xs:enumeration value="Excellent"/>
355
+ <xs:enumeration value="Good"/>
356
+ <xs:enumeration value="Bad"/>
357
+ <xs:enumeration value="Average"/>
358
+ <xs:enumeration value="Fair"/>
359
+ </xs:restriction>
360
+ </xs:simpleType>
361
+ <xs:simpleType name="LanguageTypeList">
362
+ <xs:annotation>
363
+ <xs:documentation>Type of language e.g. by birth, by education</xs:documentation>
364
+ </xs:annotation>
365
+ <xs:restriction base="xs:normalizedString"/>
366
+ </xs:simpleType>
367
+ <xs:simpleType name="MaritalStatusList">
368
+ <xs:annotation>
369
+ <xs:documentation>List of types of marital status</xs:documentation>
370
+ </xs:annotation>
371
+ <xs:restriction base="xs:normalizedString"/>
372
+ </xs:simpleType>
373
+ <xs:simpleType name="MembershipElementList">
374
+ <xs:annotation>
375
+ <xs:documentation>List of information types used for describing a membership</xs:documentation>
376
+ </xs:annotation>
377
+ <xs:restriction base="xs:normalizedString">
378
+ <xs:enumeration value="MembershipNumber">
379
+ <xs:annotation>
380
+ <xs:documentation>Membership identifier, e.g. membership number or some other type of ID</xs:documentation>
381
+ </xs:annotation>
382
+ </xs:enumeration>
383
+ <xs:enumeration value="Privilege">
384
+ <xs:annotation>
385
+ <xs:documentation>A privilege that the member can enjoy as part of the membership. E.g. access to free events.</xs:documentation>
386
+ </xs:annotation>
387
+ </xs:enumeration>
388
+ <xs:enumeration value="Restriction">
389
+ <xs:annotation>
390
+ <xs:documentation>A restriction that the membership imposes on the member, e.g. do not smoke.</xs:documentation>
391
+ </xs:annotation>
392
+ </xs:enumeration>
393
+ <xs:enumeration value="GroupName">
394
+ <xs:annotation>
395
+ <xs:documentation>Larger group or alliance name the membership provides access to.</xs:documentation>
396
+ </xs:annotation>
397
+ </xs:enumeration>
398
+ <xs:enumeration value="Category">
399
+ <xs:annotation>
400
+ <xs:documentation>Category of the membership such as Gold, Silver, Platinum, etc</xs:documentation>
401
+ </xs:annotation>
402
+ </xs:enumeration>
403
+ <xs:enumeration value="Type">
404
+ <xs:annotation>
405
+ <xs:documentation>Use this if the enumeration list for type of memberhsip is not used.</xs:documentation>
406
+ </xs:annotation>
407
+ </xs:enumeration>
408
+ <xs:enumeration value="IssuingCountryName">
409
+ <xs:annotation>
410
+ <xs:documentation>The country that issues the membership</xs:documentation>
411
+ </xs:annotation>
412
+ </xs:enumeration>
413
+ <xs:enumeration value="Role">
414
+ <xs:annotation>
415
+ <xs:documentation>Role in membership for a person , e.g. secretary, President, treasurer</xs:documentation>
416
+ </xs:annotation>
417
+ </xs:enumeration>
418
+ </xs:restriction>
419
+ </xs:simpleType>
420
+ <xs:simpleType name="MembershipTypeList">
421
+ <xs:annotation>
422
+ <xs:documentation>List of types of memberships</xs:documentation>
423
+ </xs:annotation>
424
+ <xs:restriction base="xs:normalizedString"/>
425
+ </xs:simpleType>
426
+ <xs:simpleType name="NationalityTypeList">
427
+ <xs:annotation>
428
+ <xs:documentation>List of types of obtaining nationality</xs:documentation>
429
+ </xs:annotation>
430
+ <xs:restriction base="xs:normalizedString"/>
431
+ </xs:simpleType>
432
+ <xs:simpleType name="NumberTypeList">
433
+ <xs:annotation>
434
+ <xs:documentation>List of name types for commonly used Number type</xs:documentation>
435
+ </xs:annotation>
436
+ <xs:restriction base="xs:normalizedString">
437
+ <xs:enumeration value="RangeFrom">
438
+ <xs:annotation>
439
+ <xs:documentation>Indicates that the element contains the lower value of a range, e.g. 25 in 25-37</xs:documentation>
440
+ </xs:annotation>
441
+ </xs:enumeration>
442
+ <xs:enumeration value="Range">
443
+ <xs:annotation>
444
+ <xs:documentation>Indicates that the value is a range, e.g. 25-37</xs:documentation>
445
+ </xs:annotation>
446
+ </xs:enumeration>
447
+ <xs:enumeration value="RangeTo">
448
+ <xs:annotation>
449
+ <xs:documentation>Indicates that the element contains the top value of a range, e.g. 25 in 25-37</xs:documentation>
450
+ </xs:annotation>
451
+ </xs:enumeration>
452
+ <xs:enumeration value="Prefix">
453
+ <xs:annotation>
454
+ <xs:documentation>Indicates that the element contains some value that is important, but not exactly the number itself. E.g. A250, where A is the prefix to the number 250</xs:documentation>
455
+ </xs:annotation>
456
+ </xs:enumeration>
457
+ <xs:enumeration value="Suffix">
458
+ <xs:annotation>
459
+ <xs:documentation>Indocates that the element contains some value that is important, but not exactly the number itself. E.g. 'bis' in '45 bis'</xs:documentation>
460
+ </xs:annotation>
461
+ </xs:enumeration>
462
+ <xs:enumeration value="Number">
463
+ <xs:annotation>
464
+ <xs:documentation>Indicates that the value is number, e.g. 2020 in ID 2020. The actual value can be alpha-numeric. </xs:documentation>
465
+ </xs:annotation>
466
+ </xs:enumeration>
467
+ <xs:enumeration value="Separator">
468
+ <xs:annotation>
469
+ <xs:documentation>Indicates that the value is a separator that is expected to be preserved. Examples are / - #, etc.</xs:documentation>
470
+ </xs:annotation>
471
+ </xs:enumeration>
472
+ <xs:enumeration value="Extension">
473
+ <xs:annotation>
474
+ <xs:documentation>Indicates that the value is an extension number of some identifier, e.g. 01 in ID 2330-01. 01 could be mean a specific semantics</xs:documentation>
475
+ </xs:annotation>
476
+ </xs:enumeration>
477
+ </xs:restriction>
478
+ </xs:simpleType>
479
+ <xs:simpleType name="OccupationElementList">
480
+ <xs:annotation>
481
+ <xs:documentation>List of information types used for describing an occupation</xs:documentation>
482
+ </xs:annotation>
483
+ <xs:restriction base="xs:normalizedString">
484
+ <xs:enumeration value="Role">
485
+ <xs:annotation>
486
+ <xs:documentation>The actual role the person carries out.</xs:documentation>
487
+ </xs:annotation>
488
+ </xs:enumeration>
489
+ <xs:enumeration value="PositionTitle"/>
490
+ <xs:enumeration value="ReportsTo">
491
+ <xs:annotation>
492
+ <xs:documentation>Name, role or position who the person reports to.</xs:documentation>
493
+ </xs:annotation>
494
+ </xs:enumeration>
495
+ <xs:enumeration value="EmploymentType">
496
+ <xs:annotation>
497
+ <xs:documentation>E.g. full-time, part-time, temporary, contract, etc.</xs:documentation>
498
+ </xs:annotation>
499
+ </xs:enumeration>
500
+ <xs:enumeration value="CostCentre">
501
+ <xs:annotation>
502
+ <xs:documentation>Commonly used identifier for accounting purposes.</xs:documentation>
503
+ </xs:annotation>
504
+ </xs:enumeration>
505
+ <xs:enumeration value="Rank">
506
+ <xs:annotation>
507
+ <xs:documentation>A rank in some ranking system, e.g. private, major, superintendant, Justice, etc.This is different from role</xs:documentation>
508
+ </xs:annotation>
509
+ </xs:enumeration>
510
+ </xs:restriction>
511
+ </xs:simpleType>
512
+ <xs:simpleType name="OrganisationCategoryTypeList">
513
+ <xs:annotation>
514
+ <xs:documentation>List of category the oranisation belongs to</xs:documentation>
515
+ </xs:annotation>
516
+ <xs:restriction base="xs:normalizedString">
517
+ <xs:enumeration value="Vendor"/>
518
+ <xs:enumeration value="GovernmentAgency"/>
519
+ <xs:enumeration value="University"/>
520
+ <xs:enumeration value="College"/>
521
+ <xs:enumeration value="School"/>
522
+ <xs:enumeration value="Club"/>
523
+ <xs:enumeration value="Association"/>
524
+ <xs:enumeration value="Consortium"/>
525
+ <xs:enumeration value="Company"/>
526
+ </xs:restriction>
527
+ </xs:simpleType>
528
+ <xs:simpleType name="OrganisationInfoNatureList">
529
+ <xs:annotation>
530
+ <xs:documentation>List of organisation nature of business</xs:documentation>
531
+ </xs:annotation>
532
+ <xs:restriction base="xs:normalizedString"/>
533
+ </xs:simpleType>
534
+ <xs:simpleType name="OrganisationInfoTypeList">
535
+ <xs:annotation>
536
+ <xs:documentation>List of type of organisation</xs:documentation>
537
+ </xs:annotation>
538
+ <xs:restriction base="xs:normalizedString"/>
539
+ </xs:simpleType>
540
+ <xs:simpleType name="OrganisationRelationshipTypeList">
541
+ <xs:annotation>
542
+ <xs:documentation>List of relationship types with an organisation</xs:documentation>
543
+ </xs:annotation>
544
+ <xs:restriction base="xs:normalizedString"/>
545
+ </xs:simpleType>
546
+ <xs:simpleType name="OrganisationDetailsUsageList">
547
+ <xs:annotation>
548
+ <xs:documentation>Type of use of organisation details data</xs:documentation>
549
+ </xs:annotation>
550
+ <xs:restriction base="xs:string"/>
551
+ </xs:simpleType>
552
+ <xs:simpleType name="PartyIDTypeList">
553
+ <xs:annotation>
554
+ <xs:documentation>List of types of party identifiers</xs:documentation>
555
+ </xs:annotation>
556
+ <xs:restriction base="xs:normalizedString"/>
557
+ </xs:simpleType>
558
+ <xs:simpleType name="PartyIdentifierElementList">
559
+ <xs:annotation>
560
+ <xs:documentation>List of information types used for describing party identifiers</xs:documentation>
561
+ </xs:annotation>
562
+ <xs:restriction base="xs:normalizedString">
563
+ <xs:enumeration value="Identifier"/>
564
+ <xs:enumeration value="IssuingCountryName"/>
565
+ </xs:restriction>
566
+ </xs:simpleType>
567
+ <xs:simpleType name="PartyIdentifierTypeList">
568
+ <xs:annotation>
569
+ <xs:documentation>List of identifier types</xs:documentation>
570
+ </xs:annotation>
571
+ <xs:restriction base="xs:normalizedString">
572
+ <xs:enumeration value="TaxID"/>
573
+ <xs:enumeration value="CompanyID"/>
574
+ <xs:enumeration value="NationalID"/>
575
+ <xs:enumeration value="RegistrationID"/>
576
+ </xs:restriction>
577
+ </xs:simpleType>
578
+ <xs:simpleType name="PartyTypeList">
579
+ <xs:annotation>
580
+ <xs:documentation>Organisation or Person</xs:documentation>
581
+ </xs:annotation>
582
+ <xs:restriction base="xs:normalizedString"/>
583
+ </xs:simpleType>
584
+ <xs:simpleType name="PartyUsageList">
585
+ <xs:annotation>
586
+ <xs:documentation>List of type of use of party data</xs:documentation>
587
+ </xs:annotation>
588
+ <xs:restriction base="xs:string"/>
589
+ </xs:simpleType>
590
+ <xs:simpleType name="PersonCategoryTypeList">
591
+ <xs:annotation>
592
+ <xs:documentation>List of category the person belongs to</xs:documentation>
593
+ </xs:annotation>
594
+ <xs:restriction base="xs:normalizedString">
595
+ <xs:enumeration value="ExistingCustomer"/>
596
+ <xs:enumeration value="PotentialCustomer"/>
597
+ <xs:enumeration value="Employee"/>
598
+ <xs:enumeration value="Friend"/>
599
+ </xs:restriction>
600
+ </xs:simpleType>
601
+ <xs:simpleType name="PersonDetailsUsageList">
602
+ <xs:annotation>
603
+ <xs:documentation>List of type of use of person details data</xs:documentation>
604
+ </xs:annotation>
605
+ <xs:restriction base="xs:string"/>
606
+ </xs:simpleType>
607
+ <xs:simpleType name="PersonEthnicityList">
608
+ <xs:annotation>
609
+ <xs:documentation>List of ethnicity of person</xs:documentation>
610
+ </xs:annotation>
611
+ <xs:restriction base="xs:normalizedString"/>
612
+ </xs:simpleType>
613
+ <xs:simpleType name="PersonFavouriteTypeList">
614
+ <xs:annotation>
615
+ <xs:documentation>List of favourites of the person</xs:documentation>
616
+ </xs:annotation>
617
+ <xs:restriction base="xs:normalizedString"/>
618
+ </xs:simpleType>
619
+ <xs:simpleType name="PhysicalInfoFreeTextTypeList">
620
+ <xs:annotation>
621
+ <xs:documentation>List of type of physical info for free text</xs:documentation>
622
+ </xs:annotation>
623
+ <xs:restriction base="xs:normalizedString"/>
624
+ </xs:simpleType>
625
+ <xs:simpleType name="PhysicalStatusList">
626
+ <xs:annotation>
627
+ <xs:documentation>List of physical status of a person</xs:documentation>
628
+ </xs:annotation>
629
+ <xs:restriction base="xs:normalizedString"/>
630
+ </xs:simpleType>
631
+ <xs:simpleType name="PersonRelationshipTypeList">
632
+ <xs:annotation>
633
+ <xs:documentation>Type of relationship with a person</xs:documentation>
634
+ </xs:annotation>
635
+ <xs:restriction base="xs:normalizedString"/>
636
+ </xs:simpleType>
637
+ <xs:simpleType name="PreferenceTypeList">
638
+ <xs:annotation>
639
+ <xs:documentation>Type of preferences of a person</xs:documentation>
640
+ </xs:annotation>
641
+ <xs:restriction base="xs:normalizedString"/>
642
+ </xs:simpleType>
643
+ <xs:simpleType name="QualificationElementList">
644
+ <xs:annotation>
645
+ <xs:documentation>List of information types used for describing a qualification</xs:documentation>
646
+ </xs:annotation>
647
+ <xs:restriction base="xs:normalizedString">
648
+ <xs:enumeration value="QualificationName">
649
+ <xs:annotation>
650
+ <xs:documentation>Free text name of the qualification</xs:documentation>
651
+ </xs:annotation>
652
+ </xs:enumeration>
653
+ <xs:enumeration value="MajorSubject">
654
+ <xs:annotation>
655
+ <xs:documentation>Name of the major subject of the qualification</xs:documentation>
656
+ </xs:annotation>
657
+ </xs:enumeration>
658
+ <xs:enumeration value="MinorSubject">
659
+ <xs:annotation>
660
+ <xs:documentation>Name of a minor subject of the qualification</xs:documentation>
661
+ </xs:annotation>
662
+ </xs:enumeration>
663
+ <xs:enumeration value="Grade">
664
+ <xs:annotation>
665
+ <xs:documentation>Grade (average?, percentage? ) achieved with the qualification.</xs:documentation>
666
+ </xs:annotation>
667
+ </xs:enumeration>
668
+ <xs:enumeration value="CourseDuration">
669
+ <xs:annotation>
670
+ <xs:documentation>Free text description of the duration of the course, e.g. 4 years, 1 month, etc.</xs:documentation>
671
+ </xs:annotation>
672
+ </xs:enumeration>
673
+ <xs:enumeration value="CompletionDate">
674
+ <xs:annotation>
675
+ <xs:documentation>Free text description of the date when the qualification was completed to the best known precision.</xs:documentation>
676
+ </xs:annotation>
677
+ </xs:enumeration>
678
+ <xs:enumeration value="Award">
679
+ <xs:annotation>
680
+ <xs:documentation>Award, or distinction that was awarded to the graduate, e.g. honors.</xs:documentation>
681
+ </xs:annotation>
682
+ </xs:enumeration>
683
+ <xs:enumeration value="Restriction">
684
+ <xs:annotation>
685
+ <xs:documentation>Restrictions imposed on the graduate, e.g. not valid before completion of 2 year practical work under supervision.</xs:documentation>
686
+ </xs:annotation>
687
+ </xs:enumeration>
688
+ <xs:enumeration value="Registration">
689
+ <xs:annotation>
690
+ <xs:documentation>Details of any professional registration if required for practicing, e.g. for pharmacists, electricians, medical professionals.</xs:documentation>
691
+ </xs:annotation>
692
+ </xs:enumeration>
693
+ <xs:enumeration value="WayOfStudy">
694
+ <xs:annotation>
695
+ <xs:documentation>Full time, part time, evening classes, extramural, etc.</xs:documentation>
696
+ </xs:annotation>
697
+ </xs:enumeration>
698
+ </xs:restriction>
699
+ </xs:simpleType>
700
+ <xs:simpleType name="ReligionList">
701
+ <xs:annotation>
702
+ <xs:documentation>List of religions of person</xs:documentation>
703
+ </xs:annotation>
704
+ <xs:restriction base="xs:normalizedString"/>
705
+ </xs:simpleType>
706
+ <xs:simpleType name="ResidencyTypeList">
707
+ <xs:annotation>
708
+ <xs:documentation>List of residency statusof person</xs:documentation>
709
+ </xs:annotation>
710
+ <xs:restriction base="xs:normalizedString"/>
711
+ </xs:simpleType>
712
+ <xs:simpleType name="RevenueCurrencyCodeList">
713
+ <xs:annotation>
714
+ <xs:documentation>Type of currency codes for revienue</xs:documentation>
715
+ </xs:annotation>
716
+ <xs:restriction base="xs:normalizedString"/>
717
+ </xs:simpleType>
718
+ <xs:simpleType name="RevenueSourceList">
719
+ <xs:annotation>
720
+ <xs:documentation>Type of sources of revenue</xs:documentation>
721
+ </xs:annotation>
722
+ <xs:restriction base="xs:normalizedString"/>
723
+ </xs:simpleType>
724
+ <xs:simpleType name="RevenueTypeList">
725
+ <xs:annotation>
726
+ <xs:documentation>Type of revenue </xs:documentation>
727
+ </xs:annotation>
728
+ <xs:restriction base="xs:normalizedString"/>
729
+ </xs:simpleType>
730
+ <xs:simpleType name="UnitTypeList">
731
+ <xs:annotation>
732
+ <xs:documentation>List of type of units for measurement</xs:documentation>
733
+ </xs:annotation>
734
+ <xs:restriction base="xs:normalizedString"/>
735
+ </xs:simpleType>
736
+ <xs:simpleType name="VehicleInfoElementList">
737
+ <xs:annotation>
738
+ <xs:documentation>List of information types used for describing a vehicle</xs:documentation>
739
+ </xs:annotation>
740
+ <xs:restriction base="xs:normalizedString">
741
+ <xs:enumeration value="Make">
742
+ <xs:annotation>
743
+ <xs:documentation>Free text make description, e.g. Toyota, Ford</xs:documentation>
744
+ </xs:annotation>
745
+ </xs:enumeration>
746
+ <xs:enumeration value="Model">
747
+ <xs:annotation>
748
+ <xs:documentation>Free text model description, e.g. Pajero, Falcon, etc. May include make as in Ford Falcon or Mitsubishi Pajero. If the make information is included then do not put the make as a separate element qualified with Make.</xs:documentation>
749
+ </xs:annotation>
750
+ </xs:enumeration>
751
+ <xs:enumeration value="ManufactureDate">
752
+ <xs:annotation>
753
+ <xs:documentation>Free text data which can be a full date or a year.</xs:documentation>
754
+ </xs:annotation>
755
+ </xs:enumeration>
756
+ <xs:enumeration value="EngineNumber">
757
+ <xs:annotation>
758
+ <xs:documentation>Free text engine number</xs:documentation>
759
+ </xs:annotation>
760
+ </xs:enumeration>
761
+ <xs:enumeration value="ChassisNumber">
762
+ <xs:annotation>
763
+ <xs:documentation>Free text chassis number</xs:documentation>
764
+ </xs:annotation>
765
+ </xs:enumeration>
766
+ <xs:enumeration value="BodyNumber">
767
+ <xs:annotation>
768
+ <xs:documentation>Free text body number</xs:documentation>
769
+ </xs:annotation>
770
+ </xs:enumeration>
771
+ <xs:enumeration value="LicensePlateNumber">
772
+ <xs:annotation>
773
+ <xs:documentation>Free text license plate number</xs:documentation>
774
+ </xs:annotation>
775
+ </xs:enumeration>
776
+ <xs:enumeration value="LicensePlateType">
777
+ <xs:annotation>
778
+ <xs:documentation>Number plate types are different. e.g. standard, premier, diplomat, etc</xs:documentation>
779
+ </xs:annotation>
780
+ </xs:enumeration>
781
+ <xs:enumeration value="Colour"/>
782
+ <xs:enumeration value="BodyType">
783
+ <xs:annotation>
784
+ <xs:documentation>Type of body. e.g. Sedan, Ute, Station wagon, 2 door, etc</xs:documentation>
785
+ </xs:annotation>
786
+ </xs:enumeration>
787
+ <xs:enumeration value="Type">
788
+ <xs:annotation>
789
+ <xs:documentation>Use this if the enumeration list for type of vehicle is not used.</xs:documentation>
790
+ </xs:annotation>
791
+ </xs:enumeration>
792
+ </xs:restriction>
793
+ </xs:simpleType>
794
+ <xs:simpleType name="VehicleTypeList">
795
+ <xs:annotation>
796
+ <xs:documentation>List of types of vehicles</xs:documentation>
797
+ </xs:annotation>
798
+ <xs:restriction base="xs:normalizedString"/>
799
+ </xs:simpleType>
800
+ <xs:simpleType name="VisaElementList">
801
+ <xs:annotation>
802
+ <xs:documentation>List of information types used for describing a visa</xs:documentation>
803
+ </xs:annotation>
804
+ <xs:restriction base="xs:normalizedString">
805
+ <xs:enumeration value="Type">
806
+ <xs:annotation>
807
+ <xs:documentation>Type of visa. e.g. Tourist, Visitor, Student</xs:documentation>
808
+ </xs:annotation>
809
+ </xs:enumeration>
810
+ <xs:enumeration value="Number"/>
811
+ <xs:enumeration value="Code">
812
+ <xs:annotation>
813
+ <xs:documentation>Some visas are known by its code number. e.g. B1, E3, H-1, Class X1</xs:documentation>
814
+ </xs:annotation>
815
+ </xs:enumeration>
816
+ <xs:enumeration value="Country">
817
+ <xs:annotation>
818
+ <xs:documentation>Name of the country for which the visa is issued to.</xs:documentation>
819
+ </xs:annotation>
820
+ </xs:enumeration>
821
+ <xs:enumeration value="IssuePlace">
822
+ <xs:annotation>
823
+ <xs:documentation>Free text description of the issuing place, e.g. country name and office name or country name and the city. For example US Embassy, Prague,
824
+ Australia, Sydney</xs:documentation>
825
+ </xs:annotation>
826
+ </xs:enumeration>
827
+ <xs:enumeration value="MaximumStay">
828
+ <xs:annotation>
829
+ <xs:documentation>Free text description of the length of maximum stay. E.g. 1 week, 2 months, etc.</xs:documentation>
830
+ </xs:annotation>
831
+ </xs:enumeration>
832
+ <xs:enumeration value="Restriction">
833
+ <xs:annotation>
834
+ <xs:documentation>Any restrictions imposed on the visa holder, e.g. not for employment, cannot work for more than 20 hours</xs:documentation>
835
+ </xs:annotation>
836
+ </xs:enumeration>
837
+ <xs:enumeration value="Privilege">
838
+ <xs:annotation>
839
+ <xs:documentation>Any privileges granted to the visa holder, e.g. departure fee waived, etc.</xs:documentation>
840
+ </xs:annotation>
841
+ </xs:enumeration>
842
+ <xs:enumeration value="SpecialCondition">
843
+ <xs:annotation>
844
+ <xs:documentation>Any special conditions imposed on the visa holder. e.g. Not allowed to work for more than 10 hours a week</xs:documentation>
845
+ </xs:annotation>
846
+ </xs:enumeration>
847
+ <xs:enumeration value="EntryType">
848
+ <xs:annotation>
849
+ <xs:documentation>Single Entry, Multiple Entry, Double Entry, etc</xs:documentation>
850
+ </xs:annotation>
851
+ </xs:enumeration>
852
+ </xs:restriction>
853
+ </xs:simpleType>
854
+ </xs:schema>