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.
- checksums.yaml +15 -0
- data/.gitignore +17 -0
- data/Gemfile +4 -0
- data/LICENSE.txt +24 -0
- data/README.md +41 -0
- data/Rakefile +3 -0
- data/config/1.0.1/stix/README.md +20 -0
- data/config/1.0.1/stix/campaign.xsd +210 -0
- data/config/1.0.1/stix/course_of_action.xsd +166 -0
- data/config/1.0.1/stix/cybox/README.md +13 -0
- data/config/1.0.1/stix/cybox/cybox_common.xsd +2319 -0
- data/config/1.0.1/stix/cybox/cybox_core.xsd +1095 -0
- data/config/1.0.1/stix/cybox/cybox_default_vocabularies.xsd +3326 -0
- data/config/1.0.1/stix/cybox/extensions/platform/README.txt +1 -0
- data/config/1.0.1/stix/cybox/extensions/platform/cpe-language_2.3.xsd +234 -0
- data/config/1.0.1/stix/cybox/extensions/platform/cpe-naming_2.3.xsd +45 -0
- data/config/1.0.1/stix/cybox/extensions/platform/cpe2.3.xsd +40 -0
- data/config/1.0.1/stix/cybox/extensions/platform/xml.xsd +145 -0
- data/config/1.0.1/stix/cybox/objects/API_Object.xsd +55 -0
- data/config/1.0.1/stix/cybox/objects/Account_Object.xsd +50 -0
- data/config/1.0.1/stix/cybox/objects/Address_Object.xsd +122 -0
- data/config/1.0.1/stix/cybox/objects/Artifact_Object.xsd +206 -0
- data/config/1.0.1/stix/cybox/objects/Code_Object.xsd +417 -0
- data/config/1.0.1/stix/cybox/objects/Custom_Object.xsd +43 -0
- data/config/1.0.1/stix/cybox/objects/DNS_Cache_Object.xsd +53 -0
- data/config/1.0.1/stix/cybox/objects/DNS_Query_Object.xsd +159 -0
- data/config/1.0.1/stix/cybox/objects/DNS_Record_Object.xsd +87 -0
- data/config/1.0.1/stix/cybox/objects/Device_Object.xsd +55 -0
- data/config/1.0.1/stix/cybox/objects/Disk_Object.xsd +117 -0
- data/config/1.0.1/stix/cybox/objects/Disk_Partition_Object.xsd +199 -0
- data/config/1.0.1/stix/cybox/objects/Email_Message_Object.xsd +273 -0
- data/config/1.0.1/stix/cybox/objects/File_Object.xsd +359 -0
- data/config/1.0.1/stix/cybox/objects/GUI_Dialogbox_Object.xsd +41 -0
- data/config/1.0.1/stix/cybox/objects/GUI_Object.xsd +40 -0
- data/config/1.0.1/stix/cybox/objects/GUI_Window_Object.xsd +46 -0
- data/config/1.0.1/stix/cybox/objects/HTTP_Session_Object.xsd +623 -0
- data/config/1.0.1/stix/cybox/objects/Library_Object.xsd +114 -0
- data/config/1.0.1/stix/cybox/objects/Link_Object.xsd +36 -0
- data/config/1.0.1/stix/cybox/objects/Linux_Package_Object.xsd +119 -0
- data/config/1.0.1/stix/cybox/objects/Memory_Object.xsd +70 -0
- data/config/1.0.1/stix/cybox/objects/Mutex_Object.xsd +40 -0
- data/config/1.0.1/stix/cybox/objects/Network_Connection_Object.xsd +609 -0
- data/config/1.0.1/stix/cybox/objects/Network_Flow_Object.xsd +1559 -0
- data/config/1.0.1/stix/cybox/objects/Network_Packet_Object.xsd +2948 -0
- data/config/1.0.1/stix/cybox/objects/Network_Route_Entry_Object.xsd +155 -0
- data/config/1.0.1/stix/cybox/objects/Network_Route_Object.xsd +93 -0
- data/config/1.0.1/stix/cybox/objects/Network_Socket_Object.xsd +524 -0
- data/config/1.0.1/stix/cybox/objects/Network_Subnet_Object.xsd +64 -0
- data/config/1.0.1/stix/cybox/objects/PDF_File_Object.xsd +601 -0
- data/config/1.0.1/stix/cybox/objects/Pipe_Object.xsd +40 -0
- data/config/1.0.1/stix/cybox/objects/Port_Object.xsd +74 -0
- data/config/1.0.1/stix/cybox/objects/Process_Object.xsd +197 -0
- data/config/1.0.1/stix/cybox/objects/Product_Object.xsd +60 -0
- data/config/1.0.1/stix/cybox/objects/Semaphore_Object.xsd +50 -0
- data/config/1.0.1/stix/cybox/objects/Socket_Address_Object.xsd +42 -0
- data/config/1.0.1/stix/cybox/objects/System_Object.xsd +409 -0
- data/config/1.0.1/stix/cybox/objects/URI_Object.xsd +62 -0
- data/config/1.0.1/stix/cybox/objects/Unix_File_Object.xsd +164 -0
- data/config/1.0.1/stix/cybox/objects/Unix_Network_Route_Entry_Object.xsd +56 -0
- data/config/1.0.1/stix/cybox/objects/Unix_Pipe_Object.xsd +36 -0
- data/config/1.0.1/stix/cybox/objects/Unix_Process_Object.xsd +143 -0
- data/config/1.0.1/stix/cybox/objects/Unix_User_Account_Object.xsd +78 -0
- data/config/1.0.1/stix/cybox/objects/Unix_Volume_Object.xsd +41 -0
- data/config/1.0.1/stix/cybox/objects/User_Account_Object.xsd +110 -0
- data/config/1.0.1/stix/cybox/objects/User_Session_Object.xsd +60 -0
- data/config/1.0.1/stix/cybox/objects/Volume_Object.xsd +235 -0
- data/config/1.0.1/stix/cybox/objects/Whois_Object.xsd +456 -0
- data/config/1.0.1/stix/cybox/objects/Win_Computer_Account_Object.xsd +135 -0
- data/config/1.0.1/stix/cybox/objects/Win_Critical_Section_Object.xsd +40 -0
- data/config/1.0.1/stix/cybox/objects/Win_Driver_Object.xsd +269 -0
- data/config/1.0.1/stix/cybox/objects/Win_Event_Log_Object.xsd +137 -0
- data/config/1.0.1/stix/cybox/objects/Win_Event_Object.xsd +80 -0
- data/config/1.0.1/stix/cybox/objects/Win_Executable_File_Object.xsd +1333 -0
- data/config/1.0.1/stix/cybox/objects/Win_File_Object.xsd +269 -0
- data/config/1.0.1/stix/cybox/objects/Win_Handle_Object.xsd +186 -0
- data/config/1.0.1/stix/cybox/objects/Win_Kernel_Hook_Object.xsd +109 -0
- data/config/1.0.1/stix/cybox/objects/Win_Kernel_Object.xsd +128 -0
- data/config/1.0.1/stix/cybox/objects/Win_Mailslot_Object.xsd +56 -0
- data/config/1.0.1/stix/cybox/objects/Win_Memory_Page_Region_Object.xsd +198 -0
- data/config/1.0.1/stix/cybox/objects/Win_Mutex_Object.xsd +42 -0
- data/config/1.0.1/stix/cybox/objects/Win_Network_Route_Entry_Object.xsd +200 -0
- data/config/1.0.1/stix/cybox/objects/Win_Network_Share_Object.xsd +205 -0
- data/config/1.0.1/stix/cybox/objects/Win_Pipe_Object.xsd +73 -0
- data/config/1.0.1/stix/cybox/objects/Win_Prefetch_Object.xsd +113 -0
- data/config/1.0.1/stix/cybox/objects/Win_Process_Object.xsd +167 -0
- data/config/1.0.1/stix/cybox/objects/Win_Registry_Key_Object.xsd +290 -0
- data/config/1.0.1/stix/cybox/objects/Win_Semaphore_Object.xsd +42 -0
- data/config/1.0.1/stix/cybox/objects/Win_Service_Object.xsd +287 -0
- data/config/1.0.1/stix/cybox/objects/Win_System_Object.xsd +126 -0
- data/config/1.0.1/stix/cybox/objects/Win_System_Restore_Object.xsd +199 -0
- data/config/1.0.1/stix/cybox/objects/Win_Task_Object.xsd +755 -0
- data/config/1.0.1/stix/cybox/objects/Win_Thread_Object.xsd +146 -0
- data/config/1.0.1/stix/cybox/objects/Win_User_Account_Object.xsd +73 -0
- data/config/1.0.1/stix/cybox/objects/Win_Volume_Object.xsd +161 -0
- data/config/1.0.1/stix/cybox/objects/Win_Waitable_Timer_Object.xsd +90 -0
- data/config/1.0.1/stix/cybox/objects/X509_Certificate_Object.xsd +270 -0
- data/config/1.0.1/stix/data_marking.xsd +92 -0
- data/config/1.0.1/stix/exploit_target.xsd +224 -0
- data/config/1.0.1/stix/extensions/address/ciq_address_3.0.xsd +27 -0
- data/config/1.0.1/stix/extensions/address/readme.txt +1 -0
- data/config/1.0.1/stix/extensions/attack_pattern/capec_2.6.1.xsd +31 -0
- data/config/1.0.1/stix/extensions/attack_pattern/readme.txt +1 -0
- data/config/1.0.1/stix/extensions/identity/ciq_identity_3.0.xsd +108 -0
- data/config/1.0.1/stix/extensions/identity/readme.txt +1 -0
- data/config/1.0.1/stix/extensions/malware/maec_4.0.1.xsd +31 -0
- data/config/1.0.1/stix/extensions/malware/readme.txt +1 -0
- data/config/1.0.1/stix/extensions/marking/simple_marking.xsd +30 -0
- data/config/1.0.1/stix/extensions/marking/tlp.xsd +39 -0
- data/config/1.0.1/stix/extensions/structured_coa/generic.xsd +46 -0
- data/config/1.0.1/stix/extensions/test_mechanism/generic.xsd +46 -0
- data/config/1.0.1/stix/extensions/test_mechanism/open_ioc_2010.xsd +32 -0
- data/config/1.0.1/stix/extensions/test_mechanism/oval_5.10.xsd +37 -0
- data/config/1.0.1/stix/extensions/test_mechanism/snort.xsd +36 -0
- data/config/1.0.1/stix/extensions/test_mechanism/yara.xsd +36 -0
- data/config/1.0.1/stix/extensions/vulnerability/cvrf_1.1.xsd +33 -0
- data/config/1.0.1/stix/extensions/vulnerability/readme.txt +1 -0
- data/config/1.0.1/stix/external/capec_2.6.1/ap_schema_v2.6.1.xsd +3618 -0
- data/config/1.0.1/stix/external/cvrf_1.1/common.xsd +176 -0
- data/config/1.0.1/stix/external/cvrf_1.1/cpe-language_2.2a.xsd +182 -0
- data/config/1.0.1/stix/external/cvrf_1.1/cvrf.xsd +487 -0
- data/config/1.0.1/stix/external/cvrf_1.1/cvss-v2_0.9.xsd +415 -0
- data/config/1.0.1/stix/external/cvrf_1.1/dc.xsd +118 -0
- data/config/1.0.1/stix/external/cvrf_1.1/prod.xsd +292 -0
- data/config/1.0.1/stix/external/cvrf_1.1/scap-core_0.9.xsd +170 -0
- data/config/1.0.1/stix/external/cvrf_1.1/vuln.xsd +631 -0
- data/config/1.0.1/stix/external/cvrf_1.1/xml.xsd +287 -0
- data/config/1.0.1/stix/external/maec_4.0.1/maec_bundle_schema.xsd +1139 -0
- data/config/1.0.1/stix/external/maec_4.0.1/maec_package_schema.xsd +938 -0
- data/config/1.0.1/stix/external/maec_4.0.1/metadataSharing.xsd +1712 -0
- data/config/1.0.1/stix/external/oasis_ciq_3.0/CommonTypes.xsd +104 -0
- data/config/1.0.1/stix/external/oasis_ciq_3.0/xAL-types.xsd +511 -0
- data/config/1.0.1/stix/external/oasis_ciq_3.0/xAL.xsd +672 -0
- data/config/1.0.1/stix/external/oasis_ciq_3.0/xNAL-types.xsd +36 -0
- data/config/1.0.1/stix/external/oasis_ciq_3.0/xNAL.xsd +126 -0
- data/config/1.0.1/stix/external/oasis_ciq_3.0/xNL-types.xsd +222 -0
- data/config/1.0.1/stix/external/oasis_ciq_3.0/xNL.xsd +284 -0
- data/config/1.0.1/stix/external/oasis_ciq_3.0/xPIL-types.xsd +854 -0
- data/config/1.0.1/stix/external/oasis_ciq_3.0/xPIL.xsd +1621 -0
- data/config/1.0.1/stix/external/oasis_ciq_3.0/xlink-2003-12-31.xsd +90 -0
- data/config/1.0.1/stix/external/open_ioc_2010/ioc-TR.xsd +25 -0
- data/config/1.0.1/stix/external/open_ioc_2010/ioc.xsd +105 -0
- data/config/1.0.1/stix/external/oval_5.10/oval-common-schema.xsd +781 -0
- data/config/1.0.1/stix/external/oval_5.10/oval-definitions-schema.xsd +1608 -0
- data/config/1.0.1/stix/external/oval_5.10/oval-variables-schema.xsd +84 -0
- data/config/1.0.1/stix/external/oval_5.10/xmldsig-core-schema.xsd +309 -0
- data/config/1.0.1/stix/incident.xsd +787 -0
- data/config/1.0.1/stix/indicator.xsd +310 -0
- data/config/1.0.1/stix/stix_common.xsd +762 -0
- data/config/1.0.1/stix/stix_core.xsd +218 -0
- data/config/1.0.1/stix/stix_default_vocabularies.xsd +1684 -0
- data/config/1.0.1/stix/threat_actor.xsd +174 -0
- data/config/1.0.1/stix/ttp.xsd +341 -0
- data/config/1.0/stix/campaign.xsd +209 -0
- data/config/1.0/stix/course_of_action.xsd +165 -0
- data/config/1.0/stix/cybox/cybox_common.xsd +2319 -0
- data/config/1.0/stix/cybox/cybox_core.xsd +1090 -0
- data/config/1.0/stix/cybox/cybox_default_vocabularies.xsd +3106 -0
- data/config/1.0/stix/cybox/extensions/platform/README.txt +1 -0
- data/config/1.0/stix/cybox/extensions/platform/cpe2.3.xsd +40 -0
- data/config/1.0/stix/cybox/objects/API_Object.xsd +55 -0
- data/config/1.0/stix/cybox/objects/Account_Object.xsd +50 -0
- data/config/1.0/stix/cybox/objects/Address_Object.xsd +122 -0
- data/config/1.0/stix/cybox/objects/Artifact_Object.xsd +206 -0
- data/config/1.0/stix/cybox/objects/Code_Object.xsd +417 -0
- data/config/1.0/stix/cybox/objects/Custom_Object.xsd +43 -0
- data/config/1.0/stix/cybox/objects/DNS_Cache_Object.xsd +53 -0
- data/config/1.0/stix/cybox/objects/DNS_Query_Object.xsd +159 -0
- data/config/1.0/stix/cybox/objects/DNS_Record_Object.xsd +87 -0
- data/config/1.0/stix/cybox/objects/Device_Object.xsd +55 -0
- data/config/1.0/stix/cybox/objects/Disk_Object.xsd +117 -0
- data/config/1.0/stix/cybox/objects/Disk_Partition_Object.xsd +199 -0
- data/config/1.0/stix/cybox/objects/Email_Message_Object.xsd +273 -0
- data/config/1.0/stix/cybox/objects/File_Object.xsd +359 -0
- data/config/1.0/stix/cybox/objects/GUI_Dialogbox_Object.xsd +41 -0
- data/config/1.0/stix/cybox/objects/GUI_Object.xsd +40 -0
- data/config/1.0/stix/cybox/objects/GUI_Window_Object.xsd +46 -0
- data/config/1.0/stix/cybox/objects/HTTP_Session_Object.xsd +623 -0
- data/config/1.0/stix/cybox/objects/Library_Object.xsd +114 -0
- data/config/1.0/stix/cybox/objects/Link_Object.xsd +24 -0
- data/config/1.0/stix/cybox/objects/Linux_Package_Object.xsd +119 -0
- data/config/1.0/stix/cybox/objects/Memory_Object.xsd +70 -0
- data/config/1.0/stix/cybox/objects/Mutex_Object.xsd +40 -0
- data/config/1.0/stix/cybox/objects/Network_Connection_Object.xsd +609 -0
- data/config/1.0/stix/cybox/objects/Network_Flow_Object.xsd +1559 -0
- data/config/1.0/stix/cybox/objects/Network_Packet_Object.xsd +2948 -0
- data/config/1.0/stix/cybox/objects/Network_Route_Entry_Object.xsd +155 -0
- data/config/1.0/stix/cybox/objects/Network_Route_Object.xsd +93 -0
- data/config/1.0/stix/cybox/objects/Network_Socket_Object.xsd +524 -0
- data/config/1.0/stix/cybox/objects/Network_Subnet_Object.xsd +64 -0
- data/config/1.0/stix/cybox/objects/PDF_File_Object.xsd +601 -0
- data/config/1.0/stix/cybox/objects/Pipe_Object.xsd +40 -0
- data/config/1.0/stix/cybox/objects/Port_Object.xsd +74 -0
- data/config/1.0/stix/cybox/objects/Process_Object.xsd +197 -0
- data/config/1.0/stix/cybox/objects/Product_Object.xsd +60 -0
- data/config/1.0/stix/cybox/objects/Semaphore_Object.xsd +50 -0
- data/config/1.0/stix/cybox/objects/Socket_Address_Object.xsd +42 -0
- data/config/1.0/stix/cybox/objects/System_Object.xsd +409 -0
- data/config/1.0/stix/cybox/objects/URI_Object.xsd +62 -0
- data/config/1.0/stix/cybox/objects/Unix_File_Object.xsd +164 -0
- data/config/1.0/stix/cybox/objects/Unix_Network_Route_Entry_Object.xsd +56 -0
- data/config/1.0/stix/cybox/objects/Unix_Pipe_Object.xsd +36 -0
- data/config/1.0/stix/cybox/objects/Unix_Process_Object.xsd +143 -0
- data/config/1.0/stix/cybox/objects/Unix_User_Account_Object.xsd +78 -0
- data/config/1.0/stix/cybox/objects/Unix_Volume_Object.xsd +41 -0
- data/config/1.0/stix/cybox/objects/User_Account_Object.xsd +110 -0
- data/config/1.0/stix/cybox/objects/User_Session_Object.xsd +60 -0
- data/config/1.0/stix/cybox/objects/Volume_Object.xsd +235 -0
- data/config/1.0/stix/cybox/objects/Whois_Object.xsd +456 -0
- data/config/1.0/stix/cybox/objects/Win_Computer_Account_Object.xsd +135 -0
- data/config/1.0/stix/cybox/objects/Win_Critical_Section_Object.xsd +40 -0
- data/config/1.0/stix/cybox/objects/Win_Driver_Object.xsd +269 -0
- data/config/1.0/stix/cybox/objects/Win_Event_Log_Object.xsd +137 -0
- data/config/1.0/stix/cybox/objects/Win_Event_Object.xsd +80 -0
- data/config/1.0/stix/cybox/objects/Win_Executable_File_Object.xsd +1333 -0
- data/config/1.0/stix/cybox/objects/Win_File_Object.xsd +269 -0
- data/config/1.0/stix/cybox/objects/Win_Handle_Object.xsd +186 -0
- data/config/1.0/stix/cybox/objects/Win_Kernel_Hook_Object.xsd +109 -0
- data/config/1.0/stix/cybox/objects/Win_Kernel_Object.xsd +128 -0
- data/config/1.0/stix/cybox/objects/Win_Mailslot_Object.xsd +56 -0
- data/config/1.0/stix/cybox/objects/Win_Memory_Page_Region_Object.xsd +198 -0
- data/config/1.0/stix/cybox/objects/Win_Mutex_Object.xsd +42 -0
- data/config/1.0/stix/cybox/objects/Win_Network_Route_Entry_Object.xsd +200 -0
- data/config/1.0/stix/cybox/objects/Win_Network_Share_Object.xsd +205 -0
- data/config/1.0/stix/cybox/objects/Win_Pipe_Object.xsd +73 -0
- data/config/1.0/stix/cybox/objects/Win_Prefetch_Object.xsd +113 -0
- data/config/1.0/stix/cybox/objects/Win_Process_Object.xsd +167 -0
- data/config/1.0/stix/cybox/objects/Win_Registry_Key_Object.xsd +290 -0
- data/config/1.0/stix/cybox/objects/Win_Semaphore_Object.xsd +42 -0
- data/config/1.0/stix/cybox/objects/Win_Service_Object.xsd +287 -0
- data/config/1.0/stix/cybox/objects/Win_System_Object.xsd +126 -0
- data/config/1.0/stix/cybox/objects/Win_System_Restore_Object.xsd +199 -0
- data/config/1.0/stix/cybox/objects/Win_Task_Object.xsd +755 -0
- data/config/1.0/stix/cybox/objects/Win_Thread_Object.xsd +146 -0
- data/config/1.0/stix/cybox/objects/Win_User_Account_Object.xsd +73 -0
- data/config/1.0/stix/cybox/objects/Win_Volume_Object.xsd +161 -0
- data/config/1.0/stix/cybox/objects/Win_Waitable_Timer_Object.xsd +90 -0
- data/config/1.0/stix/cybox/objects/X509_Certificate_Object.xsd +270 -0
- data/config/1.0/stix/data_marking.xsd +92 -0
- data/config/1.0/stix/exploit_target.xsd +223 -0
- data/config/1.0/stix/extensions/address/ciq_address_3.0.xsd +27 -0
- data/config/1.0/stix/extensions/address/readme.txt +1 -0
- data/config/1.0/stix/extensions/attack_pattern/capec_2.5.xsd +31 -0
- data/config/1.0/stix/extensions/identity/ciq_identity_3.0.xsd +108 -0
- data/config/1.0/stix/extensions/identity/readme.txt +1 -0
- data/config/1.0/stix/extensions/malware/maec_4.0.xsd +32 -0
- data/config/1.0/stix/extensions/malware/readme.txt +3 -0
- data/config/1.0/stix/extensions/marking/simple_marking.xsd +30 -0
- data/config/1.0/stix/extensions/marking/tlp.xsd +39 -0
- data/config/1.0/stix/extensions/structured_coa/generic.xsd +46 -0
- data/config/1.0/stix/extensions/test_mechanism/generic.xsd +46 -0
- data/config/1.0/stix/extensions/test_mechanism/open_ioc_2010.xsd +32 -0
- data/config/1.0/stix/extensions/test_mechanism/oval_5.10.xsd +37 -0
- data/config/1.0/stix/extensions/test_mechanism/snort.xsd +36 -0
- data/config/1.0/stix/extensions/test_mechanism/yara.xsd +36 -0
- data/config/1.0/stix/extensions/vulnerability/cvrf_1.1.xsd +33 -0
- data/config/1.0/stix/extensions/vulnerability/readme.txt +1 -0
- data/config/1.0/stix/external/capec_2.5/ap_schema_v2.5.xsd +2671 -0
- data/config/1.0/stix/external/cvrf_1.1/common.xsd +176 -0
- data/config/1.0/stix/external/cvrf_1.1/cpe-language_2.2a.xsd +182 -0
- data/config/1.0/stix/external/cvrf_1.1/cvrf.xsd +487 -0
- data/config/1.0/stix/external/cvrf_1.1/cvss-v2_0.9.xsd +415 -0
- data/config/1.0/stix/external/cvrf_1.1/dc.xsd +118 -0
- data/config/1.0/stix/external/cvrf_1.1/prod.xsd +292 -0
- data/config/1.0/stix/external/cvrf_1.1/scap-core_0.9.xsd +170 -0
- data/config/1.0/stix/external/cvrf_1.1/vuln.xsd +631 -0
- data/config/1.0/stix/external/cvrf_1.1/xml.xsd +287 -0
- data/config/1.0/stix/external/oasis_ciq_3.0/CommonTypes.xsd +104 -0
- data/config/1.0/stix/external/oasis_ciq_3.0/xAL-types.xsd +511 -0
- data/config/1.0/stix/external/oasis_ciq_3.0/xAL.xsd +672 -0
- data/config/1.0/stix/external/oasis_ciq_3.0/xNAL-types.xsd +36 -0
- data/config/1.0/stix/external/oasis_ciq_3.0/xNAL.xsd +126 -0
- data/config/1.0/stix/external/oasis_ciq_3.0/xNL-types.xsd +222 -0
- data/config/1.0/stix/external/oasis_ciq_3.0/xNL.xsd +284 -0
- data/config/1.0/stix/external/oasis_ciq_3.0/xPIL-types.xsd +854 -0
- data/config/1.0/stix/external/oasis_ciq_3.0/xPIL.xsd +1621 -0
- data/config/1.0/stix/external/oasis_ciq_3.0/xlink-2003-12-31.xsd +90 -0
- data/config/1.0/stix/external/open_ioc_2010/ioc-TR.xsd +25 -0
- data/config/1.0/stix/external/open_ioc_2010/ioc.xsd +105 -0
- data/config/1.0/stix/external/oval_5.10/oval-common-schema.xsd +781 -0
- data/config/1.0/stix/external/oval_5.10/oval-definitions-schema.xsd +1608 -0
- data/config/1.0/stix/external/oval_5.10/oval-variables-schema.xsd +84 -0
- data/config/1.0/stix/external/oval_5.10/xmldsig-core-schema.xsd +309 -0
- data/config/1.0/stix/incident.xsd +786 -0
- data/config/1.0/stix/indicator.xsd +309 -0
- data/config/1.0/stix/stix_common.xsd +762 -0
- data/config/1.0/stix/stix_core.xsd +217 -0
- data/config/1.0/stix/stix_default_vocabularies.xsd +1578 -0
- data/config/1.0/stix/threat_actor.xsd +173 -0
- data/config/1.0/stix/ttp.xsd +340 -0
- data/config/1.1/stix/campaign.xsd +223 -0
- data/config/1.1/stix/course_of_action.xsd +190 -0
- data/config/1.1/stix/cybox/cybox_common.xsd +2700 -0
- data/config/1.1/stix/cybox/cybox_core.xsd +1145 -0
- data/config/1.1/stix/cybox/cybox_default_vocabularies.xsd +5180 -0
- data/config/1.1/stix/cybox/extensions/location/ciq_address_3.0.xsd +27 -0
- data/config/1.1/stix/cybox/extensions/platform/README.txt +1 -0
- data/config/1.1/stix/cybox/extensions/platform/cpe2.3.xsd +34 -0
- data/config/1.1/stix/cybox/external/cpe_2.3/cpe-language_2.3.xsd +234 -0
- data/config/1.1/stix/cybox/external/cpe_2.3/cpe-naming_2.3.xsd +45 -0
- data/config/1.1/stix/cybox/external/cpe_2.3/xml.xsd +145 -0
- data/config/1.1/stix/cybox/external/oasis_ciq_3.0/CommonTypes.xsd +104 -0
- data/config/1.1/stix/cybox/external/oasis_ciq_3.0/xAL-types.xsd +511 -0
- data/config/1.1/stix/cybox/external/oasis_ciq_3.0/xAL.xsd +672 -0
- data/config/1.1/stix/cybox/external/oasis_ciq_3.0/xNAL-types.xsd +36 -0
- data/config/1.1/stix/cybox/external/oasis_ciq_3.0/xNAL.xsd +126 -0
- data/config/1.1/stix/cybox/external/oasis_ciq_3.0/xNL-types.xsd +222 -0
- data/config/1.1/stix/cybox/external/oasis_ciq_3.0/xNL.xsd +284 -0
- data/config/1.1/stix/cybox/external/oasis_ciq_3.0/xPIL-types.xsd +854 -0
- data/config/1.1/stix/cybox/external/oasis_ciq_3.0/xPIL.xsd +1621 -0
- data/config/1.1/stix/cybox/external/oasis_ciq_3.0/xlink-2003-12-31.xsd +90 -0
- data/config/1.1/stix/cybox/objects/API_Object.xsd +55 -0
- data/config/1.1/stix/cybox/objects/ARP_Cache_Object.xsd +98 -0
- data/config/1.1/stix/cybox/objects/AS_Object.xsd +50 -0
- data/config/1.1/stix/cybox/objects/Account_Object.xsd +501 -0
- data/config/1.1/stix/cybox/objects/Address_Object.xsd +127 -0
- data/config/1.1/stix/cybox/objects/Archive_File_Object.xsd +134 -0
- data/config/1.1/stix/cybox/objects/Artifact_Object.xsd +212 -0
- data/config/1.1/stix/cybox/objects/Code_Object.xsd +417 -0
- data/config/1.1/stix/cybox/objects/Custom_Object.xsd +42 -0
- data/config/1.1/stix/cybox/objects/DNS_Cache_Object.xsd +53 -0
- data/config/1.1/stix/cybox/objects/DNS_Query_Object.xsd +164 -0
- data/config/1.1/stix/cybox/objects/DNS_Record_Object.xsd +92 -0
- data/config/1.1/stix/cybox/objects/Device_Object.xsd +65 -0
- data/config/1.1/stix/cybox/objects/Disk_Object.xsd +117 -0
- data/config/1.1/stix/cybox/objects/Disk_Partition_Object.xsd +199 -0
- data/config/1.1/stix/cybox/objects/Domain_Name_Object.xsd +57 -0
- data/config/1.1/stix/cybox/objects/Email_Message_Object.xsd +278 -0
- data/config/1.1/stix/cybox/objects/File_Object.xsd +397 -0
- data/config/1.1/stix/cybox/objects/GUI_Dialogbox_Object.xsd +41 -0
- data/config/1.1/stix/cybox/objects/GUI_Object.xsd +40 -0
- data/config/1.1/stix/cybox/objects/GUI_Window_Object.xsd +46 -0
- data/config/1.1/stix/cybox/objects/HTTP_Session_Object.xsd +633 -0
- data/config/1.1/stix/cybox/objects/Hostname_Object.xsd +45 -0
- data/config/1.1/stix/cybox/objects/Image_File_Object.xsd +124 -0
- data/config/1.1/stix/cybox/objects/Library_Object.xsd +114 -0
- data/config/1.1/stix/cybox/objects/Link_Object.xsd +36 -0
- data/config/1.1/stix/cybox/objects/Linux_Package_Object.xsd +75 -0
- data/config/1.1/stix/cybox/objects/Memory_Object.xsd +141 -0
- data/config/1.1/stix/cybox/objects/Mutex_Object.xsd +40 -0
- data/config/1.1/stix/cybox/objects/Network_Connection_Object.xsd +540 -0
- data/config/1.1/stix/cybox/objects/Network_Flow_Object.xsd +1559 -0
- data/config/1.1/stix/cybox/objects/Network_Packet_Object.xsd +2934 -0
- data/config/1.1/stix/cybox/objects/Network_Route_Entry_Object.xsd +155 -0
- data/config/1.1/stix/cybox/objects/Network_Route_Object.xsd +93 -0
- data/config/1.1/stix/cybox/objects/Network_Socket_Object.xsd +529 -0
- data/config/1.1/stix/cybox/objects/Network_Subnet_Object.xsd +64 -0
- data/config/1.1/stix/cybox/objects/PDF_File_Object.xsd +595 -0
- data/config/1.1/stix/cybox/objects/Pipe_Object.xsd +40 -0
- data/config/1.1/stix/cybox/objects/Port_Object.xsd +40 -0
- data/config/1.1/stix/cybox/objects/Process_Object.xsd +199 -0
- data/config/1.1/stix/cybox/objects/Product_Object.xsd +65 -0
- data/config/1.1/stix/cybox/objects/SMS_Message_Object.xsd +79 -0
- data/config/1.1/stix/cybox/objects/Semaphore_Object.xsd +50 -0
- data/config/1.1/stix/cybox/objects/Socket_Address_Object.xsd +50 -0
- data/config/1.1/stix/cybox/objects/System_Object.xsd +410 -0
- data/config/1.1/stix/cybox/objects/URI_Object.xsd +62 -0
- data/config/1.1/stix/cybox/objects/URL_History_Object.xsd +104 -0
- data/config/1.1/stix/cybox/objects/Unix_File_Object.xsd +164 -0
- data/config/1.1/stix/cybox/objects/Unix_Network_Route_Entry_Object.xsd +56 -0
- data/config/1.1/stix/cybox/objects/Unix_Pipe_Object.xsd +36 -0
- data/config/1.1/stix/cybox/objects/Unix_Process_Object.xsd +143 -0
- data/config/1.1/stix/cybox/objects/Unix_User_Account_Object.xsd +78 -0
- data/config/1.1/stix/cybox/objects/Unix_Volume_Object.xsd +41 -0
- data/config/1.1/stix/cybox/objects/User_Account_Object.xsd +110 -0
- data/config/1.1/stix/cybox/objects/User_Session_Object.xsd +60 -0
- data/config/1.1/stix/cybox/objects/Volume_Object.xsd +235 -0
- data/config/1.1/stix/cybox/objects/Whois_Object.xsd +430 -0
- data/config/1.1/stix/cybox/objects/Win_Computer_Account_Object.xsd +135 -0
- data/config/1.1/stix/cybox/objects/Win_Critical_Section_Object.xsd +40 -0
- data/config/1.1/stix/cybox/objects/Win_Driver_Object.xsd +270 -0
- data/config/1.1/stix/cybox/objects/Win_Event_Log_Object.xsd +137 -0
- data/config/1.1/stix/cybox/objects/Win_Event_Object.xsd +80 -0
- data/config/1.1/stix/cybox/objects/Win_Executable_File_Object.xsd +1311 -0
- data/config/1.1/stix/cybox/objects/Win_File_Object.xsd +269 -0
- data/config/1.1/stix/cybox/objects/Win_Filemapping_Object.xsd +175 -0
- data/config/1.1/stix/cybox/objects/Win_Handle_Object.xsd +351 -0
- data/config/1.1/stix/cybox/objects/Win_Hook_Object.xsd +152 -0
- data/config/1.1/stix/cybox/objects/Win_Kernel_Hook_Object.xsd +109 -0
- data/config/1.1/stix/cybox/objects/Win_Kernel_Object.xsd +128 -0
- data/config/1.1/stix/cybox/objects/Win_Mailslot_Object.xsd +56 -0
- data/config/1.1/stix/cybox/objects/Win_Memory_Page_Region_Object.xsd +198 -0
- data/config/1.1/stix/cybox/objects/Win_Mutex_Object.xsd +42 -0
- data/config/1.1/stix/cybox/objects/Win_Network_Route_Entry_Object.xsd +200 -0
- data/config/1.1/stix/cybox/objects/Win_Network_Share_Object.xsd +205 -0
- data/config/1.1/stix/cybox/objects/Win_Pipe_Object.xsd +73 -0
- data/config/1.1/stix/cybox/objects/Win_Prefetch_Object.xsd +113 -0
- data/config/1.1/stix/cybox/objects/Win_Process_Object.xsd +174 -0
- data/config/1.1/stix/cybox/objects/Win_Registry_Key_Object.xsd +290 -0
- data/config/1.1/stix/cybox/objects/Win_Semaphore_Object.xsd +42 -0
- data/config/1.1/stix/cybox/objects/Win_Service_Object.xsd +287 -0
- data/config/1.1/stix/cybox/objects/Win_System_Object.xsd +126 -0
- data/config/1.1/stix/cybox/objects/Win_System_Restore_Object.xsd +207 -0
- data/config/1.1/stix/cybox/objects/Win_Task_Object.xsd +755 -0
- data/config/1.1/stix/cybox/objects/Win_Thread_Object.xsd +146 -0
- data/config/1.1/stix/cybox/objects/Win_User_Account_Object.xsd +73 -0
- data/config/1.1/stix/cybox/objects/Win_Volume_Object.xsd +161 -0
- data/config/1.1/stix/cybox/objects/Win_Waitable_Timer_Object.xsd +90 -0
- data/config/1.1/stix/cybox/objects/X509_Certificate_Object.xsd +275 -0
- data/config/1.1/stix/data_marking.xsd +96 -0
- data/config/1.1/stix/exploit_target.xsd +323 -0
- data/config/1.1/stix/extensions/address/ciq_3.0_address.xsd +27 -0
- data/config/1.1/stix/extensions/address/readme.txt +1 -0
- data/config/1.1/stix/extensions/attack_pattern/capec_2.7_attack_pattern.xsd +31 -0
- data/config/1.1/stix/extensions/attack_pattern/readme.txt +1 -0
- data/config/1.1/stix/extensions/identity/ciq_3.0_identity.xsd +113 -0
- data/config/1.1/stix/extensions/identity/readme.txt +1 -0
- data/config/1.1/stix/extensions/malware/maec_4.1_malware.xsd +31 -0
- data/config/1.1/stix/extensions/malware/readme.txt +1 -0
- data/config/1.1/stix/extensions/marking/simple_marking.xsd +31 -0
- data/config/1.1/stix/extensions/marking/terms_of_use_marking.xsd +31 -0
- data/config/1.1/stix/extensions/marking/tlp_marking.xsd +40 -0
- data/config/1.1/stix/extensions/structured_coa/generic_structured_coa.xsd +46 -0
- data/config/1.1/stix/extensions/test_mechanism/generic_test_mechanism.xsd +46 -0
- data/config/1.1/stix/extensions/test_mechanism/open_ioc_2010_test_mechanism.xsd +32 -0
- data/config/1.1/stix/extensions/test_mechanism/oval_5.10_test_mechanism.xsd +37 -0
- data/config/1.1/stix/extensions/test_mechanism/snort_test_mechanism.xsd +56 -0
- data/config/1.1/stix/extensions/test_mechanism/yara_test_mechanism.xsd +36 -0
- data/config/1.1/stix/extensions/vulnerability/cvrf_1.1_vulnerability.xsd +33 -0
- data/config/1.1/stix/extensions/vulnerability/readme.txt +1 -0
- data/config/1.1/stix/external/capec_2.7/ap_schema_v2.7.xsd +3618 -0
- data/config/1.1/stix/external/cvrf_1.1/common.xsd +176 -0
- data/config/1.1/stix/external/cvrf_1.1/cpe-language_2.2a.xsd +182 -0
- data/config/1.1/stix/external/cvrf_1.1/cvrf.xsd +487 -0
- data/config/1.1/stix/external/cvrf_1.1/cvss-v2_0.9.xsd +415 -0
- data/config/1.1/stix/external/cvrf_1.1/dc.xsd +118 -0
- data/config/1.1/stix/external/cvrf_1.1/prod.xsd +292 -0
- data/config/1.1/stix/external/cvrf_1.1/scap-core_0.9.xsd +170 -0
- data/config/1.1/stix/external/cvrf_1.1/vuln.xsd +631 -0
- data/config/1.1/stix/external/cvrf_1.1/xml.xsd +287 -0
- data/config/1.1/stix/external/maec_4.1/maec_bundle_schema.xsd +1228 -0
- data/config/1.1/stix/external/maec_4.1/maec_container_schema.xsd +62 -0
- data/config/1.1/stix/external/maec_4.1/maec_default_vocabularies.xsd +5325 -0
- data/config/1.1/stix/external/maec_4.1/maec_package_schema.xsd +1095 -0
- data/config/1.1/stix/external/maec_4.1/metadataSharing.xsd +1712 -0
- data/config/1.1/stix/external/oasis_ciq_3.0/CommonTypes.xsd +104 -0
- data/config/1.1/stix/external/oasis_ciq_3.0/xAL-types.xsd +511 -0
- data/config/1.1/stix/external/oasis_ciq_3.0/xAL.xsd +672 -0
- data/config/1.1/stix/external/oasis_ciq_3.0/xNAL-types.xsd +36 -0
- data/config/1.1/stix/external/oasis_ciq_3.0/xNAL.xsd +126 -0
- data/config/1.1/stix/external/oasis_ciq_3.0/xNL-types.xsd +222 -0
- data/config/1.1/stix/external/oasis_ciq_3.0/xNL.xsd +284 -0
- data/config/1.1/stix/external/oasis_ciq_3.0/xPIL-types.xsd +854 -0
- data/config/1.1/stix/external/oasis_ciq_3.0/xPIL.xsd +1621 -0
- data/config/1.1/stix/external/oasis_ciq_3.0/xlink-2003-12-31.xsd +90 -0
- data/config/1.1/stix/external/open_ioc_2010/ioc-TR.xsd +25 -0
- data/config/1.1/stix/external/open_ioc_2010/ioc.xsd +105 -0
- data/config/1.1/stix/external/oval_5.10/oval-common-schema.xsd +781 -0
- data/config/1.1/stix/external/oval_5.10/oval-definitions-schema.xsd +1608 -0
- data/config/1.1/stix/external/oval_5.10/oval-variables-schema.xsd +84 -0
- data/config/1.1/stix/external/oval_5.10/xmldsig-core-schema.xsd +309 -0
- data/config/1.1/stix/incident.xsd +759 -0
- data/config/1.1/stix/indicator.xsd +367 -0
- data/config/1.1/stix/stix_common.xsd +932 -0
- data/config/1.1/stix/stix_core.xsd +253 -0
- data/config/1.1/stix/stix_default_vocabularies.xsd +2015 -0
- data/config/1.1/stix/threat_actor.xsd +181 -0
- data/config/1.1/stix/ttp.xsd +429 -0
- data/config/1.1/uber_schema.xsd +149 -0
- data/config/mappings.json +30 -0
- data/lib/stix_schema_spy.rb +18 -0
- data/lib/stix_schema_spy/models/attribute.rb +20 -0
- data/lib/stix_schema_spy/models/complex_type.rb +50 -0
- data/lib/stix_schema_spy/models/element.rb +26 -0
- data/lib/stix_schema_spy/models/external_type.rb +48 -0
- data/lib/stix_schema_spy/models/has_children.rb +83 -0
- data/lib/stix_schema_spy/models/node.rb +71 -0
- data/lib/stix_schema_spy/models/schema.rb +217 -0
- data/lib/stix_schema_spy/models/simple_type.rb +47 -0
- data/lib/stix_schema_spy/models/special_field.rb +21 -0
- data/lib/stix_schema_spy/models/type.rb +106 -0
- data/lib/stix_schema_spy/util/schema_naming.rb +106 -0
- data/lib/stix_schema_spy/util/tasks.rb +69 -0
- data/lib/stix_schema_spy/version.rb +3 -0
- data/spec/lib/schema_naming_spec.rb +190 -0
- data/spec/models/complex_type_spec.rb +68 -0
- data/spec/models/node_spec.rb +47 -0
- data/spec/models/schema_spec.rb +63 -0
- data/spec/models/simple_type_spec.rb +38 -0
- data/spec/models/type_spec.rb +43 -0
- data/spec/spec_helper.rb +8 -0
- data/stix_schema_spy.gemspec +27 -0
- metadata +602 -0
@@ -0,0 +1,1621 @@
|
|
1
|
+
<?xml version="1.0" encoding="UTF-8"?>
|
2
|
+
<xs:schema xmlns:a="urn:oasis:names:tc:ciq:xal:3" xmlns:n="urn:oasis:names:tc:ciq:xnl:3" xmlns="urn:oasis:names:tc:ciq:xpil:3" xmlns:xs="http://www.w3.org/2001/XMLSchema" xmlns:xlink="http://www.w3.org/1999/xlink" xmlns:ct="urn:oasis:names:tc:ciq:ct:3" 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 (xPIL)
|
6
|
+
Description: Defines the W3C schema for representing party information (unique identifiers)
|
7
|
+
including party name and address
|
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: Do not modify this schema as it will break specifications compatibility
|
18
|
+
</xs:documentation>
|
19
|
+
<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>
|
20
|
+
</xs:annotation>
|
21
|
+
<xs:import namespace="http://www.w3.org/1999/xlink" schemaLocation="xlink-2003-12-31.xsd"/>
|
22
|
+
<xs:import namespace="urn:oasis:names:tc:ciq:ct:3" schemaLocation="CommonTypes.xsd"/>
|
23
|
+
<xs:import namespace="urn:oasis:names:tc:ciq:xnl:3" schemaLocation="xNL.xsd"/>
|
24
|
+
<xs:import namespace="urn:oasis:names:tc:ciq:xal:3" schemaLocation="xAL.xsd"/>
|
25
|
+
<xs:include schemaLocation="xPIL-types.xsd"/>
|
26
|
+
<!--*************** KEY TOP LEVEL ELEMENTS ********************-->
|
27
|
+
<xs:element name="Party" type="PartyType">
|
28
|
+
<xs:annotation>
|
29
|
+
<xs:documentation>A container for defining the unique characteristics of a party, which can be a person or organisation</xs:documentation>
|
30
|
+
</xs:annotation>
|
31
|
+
</xs:element>
|
32
|
+
<xs:element name="PersonDetails">
|
33
|
+
<xs:annotation>
|
34
|
+
<xs:documentation>A container for defining the unique characteristics of a person only</xs:documentation>
|
35
|
+
</xs:annotation>
|
36
|
+
<xs:complexType>
|
37
|
+
<xs:complexContent>
|
38
|
+
<xs:extension base="PersonDetailsType"/>
|
39
|
+
</xs:complexContent>
|
40
|
+
</xs:complexType>
|
41
|
+
</xs:element>
|
42
|
+
<xs:element name="OrganisationDetails" type="OrganisationDetailsType">
|
43
|
+
<xs:annotation>
|
44
|
+
<xs:documentation>A container for defining the unique characteristics of an organisation only</xs:documentation>
|
45
|
+
</xs:annotation>
|
46
|
+
</xs:element>
|
47
|
+
<!--**************** COMPLEX TYPES ********************************-->
|
48
|
+
<xs:complexType name="PartyType">
|
49
|
+
<xs:annotation>
|
50
|
+
<xs:documentation>A container for defining the unique characteristics of a party, which can be a person or organisation</xs:documentation>
|
51
|
+
</xs:annotation>
|
52
|
+
<xs:sequence>
|
53
|
+
<xs:element ref="FreeTextLines" minOccurs="0"/>
|
54
|
+
<xs:element ref="PartyName" minOccurs="0"/>
|
55
|
+
<xs:element ref="Addresses" minOccurs="0"/>
|
56
|
+
<xs:element ref="Accounts" minOccurs="0">
|
57
|
+
<xs:annotation>
|
58
|
+
<xs:documentation>A container to define the accounts details of the party such as utility account, financil accounts</xs:documentation>
|
59
|
+
</xs:annotation>
|
60
|
+
</xs:element>
|
61
|
+
<xs:element ref="ContactNumbers" minOccurs="0"/>
|
62
|
+
<xs:element ref="Documents" minOccurs="0">
|
63
|
+
<xs:annotation>
|
64
|
+
<xs:documentation>A container for identification document and cards of the party that are unique to the party. e.g. license, identification card, credit card, etc</xs:documentation>
|
65
|
+
</xs:annotation>
|
66
|
+
</xs:element>
|
67
|
+
<xs:element ref="ElectronicAddressIdentifiers" minOccurs="0"/>
|
68
|
+
<xs:element ref="Events" minOccurs="0"/>
|
69
|
+
<xs:element ref="Identifiers" minOccurs="0"/>
|
70
|
+
<xs:element ref="Memberships" minOccurs="0">
|
71
|
+
<xs:annotation>
|
72
|
+
<xs:documentation>A container for memberships of party with other organisations (e.g. industry groups) or social networks (clubs, association, etc)</xs:documentation>
|
73
|
+
</xs:annotation>
|
74
|
+
</xs:element>
|
75
|
+
<xs:element ref="Relationships" minOccurs="0">
|
76
|
+
<xs:annotation>
|
77
|
+
<xs:documentation>Relationships with other parties (persons or organisations, and the nature of relationship). Examples:
|
78
|
+
- For person: Contacts, blood relatives, friends, referees, customers, etc
|
79
|
+
- for Organisation: Subsidiary, Parent company, Branches, Divisions, Partners, etc</xs:documentation>
|
80
|
+
</xs:annotation>
|
81
|
+
</xs:element>
|
82
|
+
<xs:element ref="Revenues" minOccurs="0">
|
83
|
+
<xs:annotation>
|
84
|
+
<xs:documentation>Container for income / revenue information of the party (salary/organisation revenue)</xs:documentation>
|
85
|
+
</xs:annotation>
|
86
|
+
</xs:element>
|
87
|
+
<xs:element ref="Stocks" minOccurs="0"/>
|
88
|
+
<xs:element ref="Vehicles" minOccurs="0"/>
|
89
|
+
<xs:element ref="OrganisationInfo" minOccurs="0">
|
90
|
+
<xs:annotation>
|
91
|
+
<xs:documentation>Container for other organisation specific details that are not covered in this schema that are common to a party</xs:documentation>
|
92
|
+
</xs:annotation>
|
93
|
+
</xs:element>
|
94
|
+
<xs:element ref="PersonInfo" minOccurs="0">
|
95
|
+
<xs:annotation>
|
96
|
+
<xs:documentation>Container for other person specific details that are not covered in this schema elements that are common to a party</xs:documentation>
|
97
|
+
</xs:annotation>
|
98
|
+
</xs:element>
|
99
|
+
<xs:element ref="BirthInfo" minOccurs="0"/>
|
100
|
+
<xs:element ref="CountriesOfResidence" minOccurs="0"/>
|
101
|
+
<xs:element ref="Favourites" minOccurs="0"/>
|
102
|
+
<xs:element ref="Habits" minOccurs="0"/>
|
103
|
+
<xs:element ref="Hobbies" minOccurs="0"/>
|
104
|
+
<xs:element ref="Languages" minOccurs="0"/>
|
105
|
+
<xs:element ref="Nationalities" minOccurs="0"/>
|
106
|
+
<xs:element ref="Occupations" minOccurs="0"/>
|
107
|
+
<xs:element ref="PhysicalInfo" minOccurs="0"/>
|
108
|
+
<xs:element ref="Preferences" minOccurs="0"/>
|
109
|
+
<xs:element ref="Qualifications" minOccurs="0"/>
|
110
|
+
<xs:element ref="Visas" minOccurs="0"/>
|
111
|
+
</xs:sequence>
|
112
|
+
<xs:attribute name="PartyType" type="PartyTypeList">
|
113
|
+
<xs:annotation>
|
114
|
+
<xs:documentation>Type of Party. e.g. Person or an organisation. An organisation could be university, college, club, association, company, etc</xs:documentation>
|
115
|
+
</xs:annotation>
|
116
|
+
</xs:attribute>
|
117
|
+
<xs:attribute name="PartyID" type="ct:String">
|
118
|
+
<xs:annotation>
|
119
|
+
<xs:documentation>A unique identifier for party</xs:documentation>
|
120
|
+
</xs:annotation>
|
121
|
+
</xs:attribute>
|
122
|
+
<xs:attribute name="PartyIDType" type="PartyIDTypeList">
|
123
|
+
<xs:annotation>
|
124
|
+
<xs:documentation>Type of PartyID</xs:documentation>
|
125
|
+
</xs:annotation>
|
126
|
+
</xs:attribute>
|
127
|
+
<xs:attribute name="ID" type="ct:String">
|
128
|
+
<xs:annotation>
|
129
|
+
<xs:documentation>A globally unique identifier assigned to party</xs:documentation>
|
130
|
+
</xs:annotation>
|
131
|
+
</xs:attribute>
|
132
|
+
<xs:attribute name="Usage" type="PartyUsageList">
|
133
|
+
<xs:annotation>
|
134
|
+
<xs:documentation>Type of use of party date. e.g. exchange, update, create</xs:documentation>
|
135
|
+
</xs:annotation>
|
136
|
+
</xs:attribute>
|
137
|
+
<xs:attribute name="Status" type="ct:StatusList">
|
138
|
+
<xs:annotation>
|
139
|
+
<xs:documentation>Status of the entity. e.g. Old, Current, Inactive, Active, etc</xs:documentation>
|
140
|
+
</xs:annotation>
|
141
|
+
</xs:attribute>
|
142
|
+
<xs:attributeGroup ref="ct:grValidityDate"/>
|
143
|
+
<xs:attribute name="PartyKey" type="ct:String">
|
144
|
+
<xs:annotation>
|
145
|
+
<xs:documentation>A primary key to reference Party.</xs:documentation>
|
146
|
+
</xs:annotation>
|
147
|
+
</xs:attribute>
|
148
|
+
<xs:attribute name="PartyKeyRef" type="ct:String">
|
149
|
+
<xs:annotation>
|
150
|
+
<xs:documentation>A foreign key to reference attribute Key of Party.</xs:documentation>
|
151
|
+
</xs:annotation>
|
152
|
+
</xs:attribute>
|
153
|
+
<xs:attribute ref="xlink:type"/>
|
154
|
+
<xs:attribute ref="xlink:label"/>
|
155
|
+
<xs:attribute ref="xlink:href"/>
|
156
|
+
<xs:attributeGroup ref="ct:grDataQuality"/>
|
157
|
+
<xs:attributeGroup ref="ct:grLanguageCode"/>
|
158
|
+
<xs:anyAttribute namespace="##other" processContents="lax"/>
|
159
|
+
</xs:complexType>
|
160
|
+
<xs:complexType name="PersonDetailsType">
|
161
|
+
<xs:annotation>
|
162
|
+
<xs:documentation>A container for defining the unique characteristics of a person only</xs:documentation>
|
163
|
+
</xs:annotation>
|
164
|
+
<xs:sequence>
|
165
|
+
<xs:element ref="FreeTextLines" minOccurs="0"/>
|
166
|
+
<xs:element ref="n:PersonName" maxOccurs="unbounded"/>
|
167
|
+
<xs:element ref="Addresses" minOccurs="0"/>
|
168
|
+
<xs:element ref="Accounts" minOccurs="0">
|
169
|
+
<xs:annotation>
|
170
|
+
<xs:documentation>A container to define the accounts details of the party such as utility account, financil accounts</xs:documentation>
|
171
|
+
</xs:annotation>
|
172
|
+
</xs:element>
|
173
|
+
<xs:element ref="ContactNumbers" minOccurs="0"/>
|
174
|
+
<xs:element ref="Documents" minOccurs="0">
|
175
|
+
<xs:annotation>
|
176
|
+
<xs:documentation>A container for identification document and cards of the party that are unique to the party. e.g. license, identification card, credit card, etc</xs:documentation>
|
177
|
+
</xs:annotation>
|
178
|
+
</xs:element>
|
179
|
+
<xs:element ref="ElectronicAddressIdentifiers" minOccurs="0"/>
|
180
|
+
<xs:element ref="Events" minOccurs="0"/>
|
181
|
+
<xs:element ref="Identifiers" minOccurs="0"/>
|
182
|
+
<xs:element ref="Memberships" minOccurs="0">
|
183
|
+
<xs:annotation>
|
184
|
+
<xs:documentation>A container for memberships of party with other organisations (e.g. industry groups) or social networks (clubs, association, etc)</xs:documentation>
|
185
|
+
</xs:annotation>
|
186
|
+
</xs:element>
|
187
|
+
<xs:element ref="Relationships" minOccurs="0">
|
188
|
+
<xs:annotation>
|
189
|
+
<xs:documentation>Relationships with other parties (persons or organisations, and the nature of relationship). Examples:
|
190
|
+
- For person: Contacts, blood relatives, friends, referees, customers, etc
|
191
|
+
- for Organisation: Subsidiary, Parent company, Branches, Divisions, Partners, etc</xs:documentation>
|
192
|
+
</xs:annotation>
|
193
|
+
</xs:element>
|
194
|
+
<xs:element ref="Revenues" minOccurs="0">
|
195
|
+
<xs:annotation>
|
196
|
+
<xs:documentation>Container for income / revenue information of the party (salary/organisation revenue)</xs:documentation>
|
197
|
+
</xs:annotation>
|
198
|
+
</xs:element>
|
199
|
+
<xs:element ref="Stocks" minOccurs="0"/>
|
200
|
+
<xs:element ref="Vehicles" minOccurs="0"/>
|
201
|
+
<xs:element ref="PersonInfo" minOccurs="0">
|
202
|
+
<xs:annotation>
|
203
|
+
<xs:documentation>Container for other person specific details that are not covered in this schema elements that are common to a party</xs:documentation>
|
204
|
+
</xs:annotation>
|
205
|
+
</xs:element>
|
206
|
+
<xs:element ref="BirthInfo" minOccurs="0"/>
|
207
|
+
<xs:element ref="CountriesOfResidence" minOccurs="0"/>
|
208
|
+
<xs:element ref="Favourites" minOccurs="0"/>
|
209
|
+
<xs:element ref="Habits" minOccurs="0"/>
|
210
|
+
<xs:element ref="Hobbies" minOccurs="0"/>
|
211
|
+
<xs:element ref="Languages" minOccurs="0"/>
|
212
|
+
<xs:element ref="Nationalities" minOccurs="0"/>
|
213
|
+
<xs:element ref="Occupations" minOccurs="0"/>
|
214
|
+
<xs:element ref="PhysicalInfo" minOccurs="0"/>
|
215
|
+
<xs:element ref="Preferences" minOccurs="0"/>
|
216
|
+
<xs:element ref="Qualifications" minOccurs="0"/>
|
217
|
+
<xs:element ref="Visas" minOccurs="0"/>
|
218
|
+
</xs:sequence>
|
219
|
+
<xs:attribute name="Usage" type="PersonDetailsUsageList">
|
220
|
+
<xs:annotation>
|
221
|
+
<xs:documentation>Type of use of this data. e.g. data exchange, contact, update, create</xs:documentation>
|
222
|
+
</xs:annotation>
|
223
|
+
</xs:attribute>
|
224
|
+
<xs:attribute name="Status" type="ct:StatusList">
|
225
|
+
<xs:annotation>
|
226
|
+
<xs:documentation>Status of the organisation details</xs:documentation>
|
227
|
+
</xs:annotation>
|
228
|
+
</xs:attribute>
|
229
|
+
<xs:attributeGroup ref="ct:grValidityDate"/>
|
230
|
+
<xs:attribute name="PersonDetailsKey" type="ct:String">
|
231
|
+
<xs:annotation>
|
232
|
+
<xs:documentation>A primary key to reference Person Details.</xs:documentation>
|
233
|
+
</xs:annotation>
|
234
|
+
</xs:attribute>
|
235
|
+
<xs:attribute name="PersonDetailsKeyRef" type="ct:String">
|
236
|
+
<xs:annotation>
|
237
|
+
<xs:documentation>A foreign key to reference attribute Key of Person Details.</xs:documentation>
|
238
|
+
</xs:annotation>
|
239
|
+
</xs:attribute>
|
240
|
+
<xs:attributeGroup ref="ct:grDataQuality"/>
|
241
|
+
<xs:attributeGroup ref="ct:grLanguageCode"/>
|
242
|
+
<xs:anyAttribute namespace="##other"/>
|
243
|
+
</xs:complexType>
|
244
|
+
<xs:complexType name="OrganisationDetailsType">
|
245
|
+
<xs:annotation>
|
246
|
+
<xs:documentation>A container for defining the unique characteristics of an organisation only</xs:documentation>
|
247
|
+
</xs:annotation>
|
248
|
+
<xs:sequence>
|
249
|
+
<xs:element ref="FreeTextLines" minOccurs="0"/>
|
250
|
+
<xs:element ref="n:OrganisationName" maxOccurs="unbounded"/>
|
251
|
+
<xs:element ref="Addresses" minOccurs="0"/>
|
252
|
+
<xs:element ref="Accounts" minOccurs="0">
|
253
|
+
<xs:annotation>
|
254
|
+
<xs:documentation>A container to define the accounts details of the party such as utility account, financil accounts</xs:documentation>
|
255
|
+
</xs:annotation>
|
256
|
+
</xs:element>
|
257
|
+
<xs:element ref="ContactNumbers" minOccurs="0"/>
|
258
|
+
<xs:element ref="Documents" minOccurs="0">
|
259
|
+
<xs:annotation>
|
260
|
+
<xs:documentation>A container for identification document and cards of the party that are unique to the party. e.g. license, identification card, credit card, etc</xs:documentation>
|
261
|
+
</xs:annotation>
|
262
|
+
</xs:element>
|
263
|
+
<xs:element ref="ElectronicAddressIdentifiers" minOccurs="0"/>
|
264
|
+
<xs:element ref="Events" minOccurs="0"/>
|
265
|
+
<xs:element ref="Identifiers" minOccurs="0"/>
|
266
|
+
<xs:element ref="Memberships" minOccurs="0">
|
267
|
+
<xs:annotation>
|
268
|
+
<xs:documentation>A container for memberships of party with other organisations (e.g. industry groups) or social networks (clubs, association, etc)</xs:documentation>
|
269
|
+
</xs:annotation>
|
270
|
+
</xs:element>
|
271
|
+
<xs:element ref="Relationships" minOccurs="0">
|
272
|
+
<xs:annotation>
|
273
|
+
<xs:documentation>Relationships with other parties (persons or organisations, and the nature of relationship). Examples:
|
274
|
+
- For person: Contacts, blood relatives, friends, referees, customers, etc
|
275
|
+
- for Organisation: Subsidiary, Parent company, Branches, Divisions, Partners, etc</xs:documentation>
|
276
|
+
</xs:annotation>
|
277
|
+
</xs:element>
|
278
|
+
<xs:element ref="Revenues" minOccurs="0">
|
279
|
+
<xs:annotation>
|
280
|
+
<xs:documentation>Container for income / revenue information of the party (salary/organisation revenue)</xs:documentation>
|
281
|
+
</xs:annotation>
|
282
|
+
</xs:element>
|
283
|
+
<xs:element ref="Stocks" minOccurs="0"/>
|
284
|
+
<xs:element ref="Vehicles" minOccurs="0"/>
|
285
|
+
<xs:element ref="OrganisationInfo" minOccurs="0">
|
286
|
+
<xs:annotation>
|
287
|
+
<xs:documentation>Container for other person specific details that are not covered in this schema elements that are common to a party</xs:documentation>
|
288
|
+
</xs:annotation>
|
289
|
+
</xs:element>
|
290
|
+
</xs:sequence>
|
291
|
+
<xs:attribute name="Usage" type="OrganisationDetailsUsageList">
|
292
|
+
<xs:annotation>
|
293
|
+
<xs:documentation>Type of use of this data. e.g. data exchange, contact, update, create</xs:documentation>
|
294
|
+
</xs:annotation>
|
295
|
+
</xs:attribute>
|
296
|
+
<xs:attribute name="Status" type="ct:StatusList">
|
297
|
+
<xs:annotation>
|
298
|
+
<xs:documentation>Status of the organisation details</xs:documentation>
|
299
|
+
</xs:annotation>
|
300
|
+
</xs:attribute>
|
301
|
+
<xs:attributeGroup ref="ct:grValidityDate"/>
|
302
|
+
<xs:attribute name="OrganisationDetailsKey" type="ct:String">
|
303
|
+
<xs:annotation>
|
304
|
+
<xs:documentation>A primary key to reference Organisation Details.</xs:documentation>
|
305
|
+
</xs:annotation>
|
306
|
+
</xs:attribute>
|
307
|
+
<xs:attribute name="OrganisationDetailsKeyRef" type="ct:String">
|
308
|
+
<xs:annotation>
|
309
|
+
<xs:documentation>A foreign key to reference attribute Key of Organisation Details.</xs:documentation>
|
310
|
+
</xs:annotation>
|
311
|
+
</xs:attribute>
|
312
|
+
<xs:attribute ref="xlink:type"/>
|
313
|
+
<xs:attribute ref="xlink:label"/>
|
314
|
+
<xs:attribute ref="xlink:href"/>
|
315
|
+
<xs:attributeGroup ref="ct:grDataQuality"/>
|
316
|
+
<xs:attributeGroup ref="ct:grLanguageCode"/>
|
317
|
+
<xs:anyAttribute namespace="##other"/>
|
318
|
+
</xs:complexType>
|
319
|
+
<!--**************** SECOND LEVEL ELEMENTS FOR REUSE - COMMON ELEMENTS VALID AND REUSABLE FOR BOTH PERSON AND ORGANISATION ***************************-->
|
320
|
+
<xs:element name="FreeTextLines">
|
321
|
+
<xs:annotation>
|
322
|
+
<xs:documentation>Free text description of the party as line 1, line 2, line n. </xs:documentation>
|
323
|
+
</xs:annotation>
|
324
|
+
<xs:complexType>
|
325
|
+
<xs:sequence>
|
326
|
+
<xs:element name="FreeTextLine" maxOccurs="unbounded">
|
327
|
+
<xs:complexType>
|
328
|
+
<xs:simpleContent>
|
329
|
+
<xs:extension base="ct:String">
|
330
|
+
<xs:attribute name="Type" type="FreeTextLineTypeList">
|
331
|
+
<xs:annotation>
|
332
|
+
<xs:documentation>Type (semantics or category) of free text data </xs:documentation>
|
333
|
+
</xs:annotation>
|
334
|
+
</xs:attribute>
|
335
|
+
<xs:attributeGroup ref="ct:grDataQuality"/>
|
336
|
+
<xs:anyAttribute namespace="##other" processContents="lax"/>
|
337
|
+
</xs:extension>
|
338
|
+
</xs:simpleContent>
|
339
|
+
</xs:complexType>
|
340
|
+
</xs:element>
|
341
|
+
</xs:sequence>
|
342
|
+
<xs:anyAttribute namespace="##other" processContents="lax"/>
|
343
|
+
</xs:complexType>
|
344
|
+
</xs:element>
|
345
|
+
<xs:element name="Accounts">
|
346
|
+
<xs:annotation>
|
347
|
+
<xs:documentation>A container to define the accounts details of the party</xs:documentation>
|
348
|
+
</xs:annotation>
|
349
|
+
<xs:complexType>
|
350
|
+
<xs:sequence>
|
351
|
+
<xs:element name="Account" maxOccurs="unbounded">
|
352
|
+
<xs:annotation>
|
353
|
+
<xs:documentation>Account details such as bank account, customer account with utilities</xs:documentation>
|
354
|
+
</xs:annotation>
|
355
|
+
<xs:complexType>
|
356
|
+
<xs:sequence>
|
357
|
+
<xs:element name="AccountElement" minOccurs="0" maxOccurs="unbounded">
|
358
|
+
<xs:annotation>
|
359
|
+
<xs:documentation>Information about the account</xs:documentation>
|
360
|
+
</xs:annotation>
|
361
|
+
<xs:complexType>
|
362
|
+
<xs:simpleContent>
|
363
|
+
<xs:extension base="ct:String">
|
364
|
+
<xs:attribute name="Type" type="AccountElementList">
|
365
|
+
<xs:annotation>
|
366
|
+
<xs:documentation>If present, specifies the type of the information provided as text value of the element.</xs:documentation>
|
367
|
+
</xs:annotation>
|
368
|
+
</xs:attribute>
|
369
|
+
<xs:anyAttribute namespace="##other" processContents="lax"/>
|
370
|
+
</xs:extension>
|
371
|
+
</xs:simpleContent>
|
372
|
+
</xs:complexType>
|
373
|
+
</xs:element>
|
374
|
+
<xs:element name="Organisation" minOccurs="0">
|
375
|
+
<xs:annotation>
|
376
|
+
<xs:documentation>Reference to a Party element that describes the organisation where the account is held.</xs:documentation>
|
377
|
+
</xs:annotation>
|
378
|
+
<xs:complexType>
|
379
|
+
<xs:complexContent>
|
380
|
+
<xs:extension base="n:OrganisationNameType"/>
|
381
|
+
</xs:complexContent>
|
382
|
+
</xs:complexType>
|
383
|
+
</xs:element>
|
384
|
+
</xs:sequence>
|
385
|
+
<xs:attribute name="Type" type="AccountTypeList">
|
386
|
+
<xs:annotation>
|
387
|
+
<xs:documentation>Type of account. e.g. bank, customer, employee, etc</xs:documentation>
|
388
|
+
</xs:annotation>
|
389
|
+
</xs:attribute>
|
390
|
+
<xs:attribute name="OwnershipType" type="AccountOwnershipTypeList">
|
391
|
+
<xs:annotation>
|
392
|
+
<xs:documentation>Joint, Individual, corporate, etc.</xs:documentation>
|
393
|
+
</xs:annotation>
|
394
|
+
</xs:attribute>
|
395
|
+
<xs:attribute name="Status" type="ct:StatusList">
|
396
|
+
<xs:annotation>
|
397
|
+
<xs:documentation>Status of the entity. e.g. Old, Current, Inactive, Active, etc</xs:documentation>
|
398
|
+
</xs:annotation>
|
399
|
+
</xs:attribute>
|
400
|
+
<xs:attributeGroup ref="ct:grValidityDate"/>
|
401
|
+
<xs:attributeGroup ref="ct:grDataQuality"/>
|
402
|
+
<xs:anyAttribute namespace="##other" processContents="lax"/>
|
403
|
+
</xs:complexType>
|
404
|
+
</xs:element>
|
405
|
+
</xs:sequence>
|
406
|
+
<xs:anyAttribute namespace="##other" processContents="lax"/>
|
407
|
+
</xs:complexType>
|
408
|
+
</xs:element>
|
409
|
+
<xs:element name="Addresses">
|
410
|
+
<xs:annotation>
|
411
|
+
<xs:documentation>A container for all party addresses</xs:documentation>
|
412
|
+
</xs:annotation>
|
413
|
+
<xs:complexType>
|
414
|
+
<xs:sequence>
|
415
|
+
<xs:element name="Address" maxOccurs="unbounded">
|
416
|
+
<xs:complexType>
|
417
|
+
<xs:complexContent>
|
418
|
+
<xs:extension base="a:AddressType"/>
|
419
|
+
</xs:complexContent>
|
420
|
+
</xs:complexType>
|
421
|
+
</xs:element>
|
422
|
+
</xs:sequence>
|
423
|
+
<xs:anyAttribute namespace="##other" processContents="lax"/>
|
424
|
+
</xs:complexType>
|
425
|
+
</xs:element>
|
426
|
+
<xs:element name="ContactNumbers">
|
427
|
+
<xs:annotation>
|
428
|
+
<xs:documentation>A container for all kinds of telecommunication lines of party used for contact purposes. e.g. phone, fax, mobile, pager, etc.</xs:documentation>
|
429
|
+
</xs:annotation>
|
430
|
+
<xs:complexType>
|
431
|
+
<xs:sequence>
|
432
|
+
<xs:element name="ContactNumber" maxOccurs="unbounded">
|
433
|
+
<xs:annotation>
|
434
|
+
<xs:documentation>Universal telecommunication number structure</xs:documentation>
|
435
|
+
</xs:annotation>
|
436
|
+
<xs:complexType>
|
437
|
+
<xs:sequence>
|
438
|
+
<xs:element name="ContactNumberElement" minOccurs="0" maxOccurs="unbounded">
|
439
|
+
<xs:annotation>
|
440
|
+
<xs:documentation>Full contact number or part of it</xs:documentation>
|
441
|
+
</xs:annotation>
|
442
|
+
<xs:complexType>
|
443
|
+
<xs:simpleContent>
|
444
|
+
<xs:extension base="ct:String">
|
445
|
+
<xs:attribute name="Type" type="ContactNumberElementList">
|
446
|
+
<xs:annotation>
|
447
|
+
<xs:documentation>If present, specifies type of the information provdied as text value of the element.</xs:documentation>
|
448
|
+
</xs:annotation>
|
449
|
+
</xs:attribute>
|
450
|
+
<xs:anyAttribute namespace="##other" processContents="lax"/>
|
451
|
+
</xs:extension>
|
452
|
+
</xs:simpleContent>
|
453
|
+
</xs:complexType>
|
454
|
+
</xs:element>
|
455
|
+
</xs:sequence>
|
456
|
+
<xs:attribute name="CommunicationMediaType" type="CommunicationMediaTypeList">
|
457
|
+
<xs:annotation>
|
458
|
+
<xs:documentation>Free text explanation of the communication line type. e.g. telephone, land line, mobile, fax, pager, etc</xs:documentation>
|
459
|
+
</xs:annotation>
|
460
|
+
</xs:attribute>
|
461
|
+
<xs:attribute name="Status" type="ct:StatusList">
|
462
|
+
<xs:annotation>
|
463
|
+
<xs:documentation>Status of the entity. e.g. Old, Current, Inactive, Active, etc</xs:documentation>
|
464
|
+
<xs:documentation>Current Status of Contact Number</xs:documentation>
|
465
|
+
</xs:annotation>
|
466
|
+
</xs:attribute>
|
467
|
+
<xs:attribute name="Usage" type="ContactNumberUsageList">
|
468
|
+
<xs:annotation>
|
469
|
+
<xs:documentation>Nature of contact. Example: business, personal, free call, toll free, after hours, etc</xs:documentation>
|
470
|
+
</xs:annotation>
|
471
|
+
</xs:attribute>
|
472
|
+
<xs:attribute name="ContactHours" type="ct:String">
|
473
|
+
<xs:annotation>
|
474
|
+
<xs:documentation>Free text expression of contact hours. e.g. 9:00AM-5:00PM</xs:documentation>
|
475
|
+
</xs:annotation>
|
476
|
+
</xs:attribute>
|
477
|
+
<xs:attributeGroup ref="ct:grValidityDate"/>
|
478
|
+
<xs:attributeGroup ref="ct:grDataQuality"/>
|
479
|
+
<xs:anyAttribute namespace="#other" processContents="lax"/>
|
480
|
+
</xs:complexType>
|
481
|
+
</xs:element>
|
482
|
+
</xs:sequence>
|
483
|
+
<xs:anyAttribute namespace="##other" processContents="lax"/>
|
484
|
+
</xs:complexType>
|
485
|
+
</xs:element>
|
486
|
+
<xs:element name="Documents">
|
487
|
+
<xs:annotation>
|
488
|
+
<xs:documentation>A container for identification document and cards of the party that are unique to the party.</xs:documentation>
|
489
|
+
</xs:annotation>
|
490
|
+
<xs:complexType>
|
491
|
+
<xs:sequence>
|
492
|
+
<xs:element name="Document" maxOccurs="unbounded">
|
493
|
+
<xs:annotation>
|
494
|
+
<xs:documentation>Passports, driver licenses, credit cards, certificates, etc.</xs:documentation>
|
495
|
+
</xs:annotation>
|
496
|
+
<xs:complexType>
|
497
|
+
<xs:sequence>
|
498
|
+
<xs:element name="DocumentElement" minOccurs="0" maxOccurs="unbounded">
|
499
|
+
<xs:annotation>
|
500
|
+
<xs:documentation>Full document desctiption or part of it.</xs:documentation>
|
501
|
+
</xs:annotation>
|
502
|
+
<xs:complexType>
|
503
|
+
<xs:simpleContent>
|
504
|
+
<xs:extension base="ct:String">
|
505
|
+
<xs:attribute name="Type" type="DocumentElementList">
|
506
|
+
<xs:annotation>
|
507
|
+
<xs:documentation>If present, specifies the type of the information provided as text value of the element.</xs:documentation>
|
508
|
+
</xs:annotation>
|
509
|
+
</xs:attribute>
|
510
|
+
<xs:anyAttribute namespace="##other" processContents="lax"/>
|
511
|
+
</xs:extension>
|
512
|
+
</xs:simpleContent>
|
513
|
+
</xs:complexType>
|
514
|
+
</xs:element>
|
515
|
+
<xs:element name="NameOnDocument" type="n:PartyNameType" minOccurs="0">
|
516
|
+
<xs:annotation>
|
517
|
+
<xs:documentation>Party Name as on the document if different from the main one.</xs:documentation>
|
518
|
+
</xs:annotation>
|
519
|
+
</xs:element>
|
520
|
+
<xs:element name="AddressOnDocument" type="a:AddressType" minOccurs="0">
|
521
|
+
<xs:annotation>
|
522
|
+
<xs:documentation>Address details on the document</xs:documentation>
|
523
|
+
</xs:annotation>
|
524
|
+
</xs:element>
|
525
|
+
<xs:element name="IssuerName" minOccurs="0">
|
526
|
+
<xs:annotation>
|
527
|
+
<xs:documentation>Reference to a Party element that describes the issuing organisation</xs:documentation>
|
528
|
+
</xs:annotation>
|
529
|
+
<xs:complexType>
|
530
|
+
<xs:complexContent>
|
531
|
+
<xs:extension base="n:OrganisationNameType"/>
|
532
|
+
</xs:complexContent>
|
533
|
+
</xs:complexType>
|
534
|
+
</xs:element>
|
535
|
+
</xs:sequence>
|
536
|
+
<xs:attribute name="Type" type="DocumentTypeList"/>
|
537
|
+
<xs:attribute name="Status" type="ct:StatusList">
|
538
|
+
<xs:annotation>
|
539
|
+
<xs:documentation>Status of the entity. e.g. Old, Current, Inactive, Active, etc</xs:documentation>
|
540
|
+
</xs:annotation>
|
541
|
+
</xs:attribute>
|
542
|
+
<xs:attributeGroup ref="ct:grValidityDate"/>
|
543
|
+
<xs:attributeGroup ref="ct:grDataQuality"/>
|
544
|
+
<xs:anyAttribute namespace="##other" processContents="lax"/>
|
545
|
+
</xs:complexType>
|
546
|
+
</xs:element>
|
547
|
+
</xs:sequence>
|
548
|
+
<xs:anyAttribute namespace="##other" processContents="lax"/>
|
549
|
+
</xs:complexType>
|
550
|
+
</xs:element>
|
551
|
+
<xs:element name="ElectronicAddressIdentifiers">
|
552
|
+
<xs:annotation>
|
553
|
+
<xs:documentation>A container of different types of electronic addresses of party (e.g. email, chat, skype, etc)</xs:documentation>
|
554
|
+
</xs:annotation>
|
555
|
+
<xs:complexType>
|
556
|
+
<xs:sequence>
|
557
|
+
<xs:element name="ElectronicAddressIdentifier" maxOccurs="unbounded">
|
558
|
+
<xs:complexType>
|
559
|
+
<xs:simpleContent>
|
560
|
+
<xs:extension base="ct:String">
|
561
|
+
<xs:attribute name="Type" type="ElectronicAddressIdentifierTypeList">
|
562
|
+
<xs:annotation>
|
563
|
+
<xs:documentation>Type of electronic address identifier</xs:documentation>
|
564
|
+
</xs:annotation>
|
565
|
+
</xs:attribute>
|
566
|
+
<xs:attribute name="Status" type="ct:StatusList">
|
567
|
+
<xs:annotation>
|
568
|
+
<xs:documentation>Status of the entity. e.g. Old, Current, Inactive, Active, etc</xs:documentation>
|
569
|
+
</xs:annotation>
|
570
|
+
</xs:attribute>
|
571
|
+
<xs:attribute name="Usage" type="ElectronicAddressIdentifierUsageList">
|
572
|
+
<xs:annotation>
|
573
|
+
<xs:documentation>Usage of electronic address identifier. e.g. business, personal</xs:documentation>
|
574
|
+
</xs:annotation>
|
575
|
+
</xs:attribute>
|
576
|
+
<xs:attribute name="Label" type="ct:String">
|
577
|
+
<xs:annotation>
|
578
|
+
<xs:documentation>An electronic address identifier is usually stored (and probably exchanged) in conjunction with a label which is typically displayed and the URL/electronic identifier just links that label.</xs:documentation>
|
579
|
+
</xs:annotation>
|
580
|
+
</xs:attribute>
|
581
|
+
<xs:attributeGroup ref="ct:grDataQuality"/>
|
582
|
+
<xs:anyAttribute namespace="##other" processContents="lax"/>
|
583
|
+
</xs:extension>
|
584
|
+
</xs:simpleContent>
|
585
|
+
</xs:complexType>
|
586
|
+
</xs:element>
|
587
|
+
</xs:sequence>
|
588
|
+
<xs:anyAttribute namespace="##other" processContents="lax"/>
|
589
|
+
</xs:complexType>
|
590
|
+
</xs:element>
|
591
|
+
<xs:element name="Events">
|
592
|
+
<xs:annotation>
|
593
|
+
<xs:documentation>A container for a list of key events and dates of the events of the organisation and person</xs:documentation>
|
594
|
+
</xs:annotation>
|
595
|
+
<xs:complexType>
|
596
|
+
<xs:sequence>
|
597
|
+
<xs:element name="Event" maxOccurs="unbounded">
|
598
|
+
<xs:annotation>
|
599
|
+
<xs:documentation>Type of event for a person - e.g. marriage anniversary, death, daughter's birth, spouse birthday, etc.
|
600
|
+
|
601
|
+
Type of event for organisation - date of formation/registration, date of closing down, date of liquidation, data of becoming public limited, etc
|
602
|
+
</xs:documentation>
|
603
|
+
</xs:annotation>
|
604
|
+
<xs:complexType>
|
605
|
+
<xs:simpleContent>
|
606
|
+
<xs:extension base="ct:String">
|
607
|
+
<xs:attribute name="Type" type="EventTypeList">
|
608
|
+
<xs:annotation>
|
609
|
+
<xs:documentation>Type of event. e.g. Anniversary. If "Anniversary" is type, then the text for Event could be "20th wedding anniversary"</xs:documentation>
|
610
|
+
</xs:annotation>
|
611
|
+
</xs:attribute>
|
612
|
+
<xs:attributeGroup ref="ct:grValidityDate"/>
|
613
|
+
<xs:attribute name="Date" type="xs:dateTime">
|
614
|
+
<xs:annotation>
|
615
|
+
<xs:documentation>Record the exact date of the event here. For example, deceased date, company closed date, birthday date of spouse, etc</xs:documentation>
|
616
|
+
</xs:annotation>
|
617
|
+
</xs:attribute>
|
618
|
+
<xs:attributeGroup ref="ct:grDataQuality"/>
|
619
|
+
<xs:anyAttribute namespace="##other" processContents="lax"/>
|
620
|
+
</xs:extension>
|
621
|
+
</xs:simpleContent>
|
622
|
+
</xs:complexType>
|
623
|
+
</xs:element>
|
624
|
+
</xs:sequence>
|
625
|
+
<xs:anyAttribute namespace="##other" processContents="lax"/>
|
626
|
+
</xs:complexType>
|
627
|
+
</xs:element>
|
628
|
+
<xs:element name="Identifiers">
|
629
|
+
<xs:annotation>
|
630
|
+
<xs:documentation>A container for a list of Identifiers to recognise the party such as customer identifer, social security number, tax number, etc</xs:documentation>
|
631
|
+
</xs:annotation>
|
632
|
+
<xs:complexType>
|
633
|
+
<xs:sequence>
|
634
|
+
<xs:element name="Identifier" maxOccurs="unbounded">
|
635
|
+
<xs:annotation>
|
636
|
+
<xs:documentation>Identifier to recognise the party such as customer identifer, social security number, National ID Card, tax number, buiness number, company number, company registration, etc</xs:documentation>
|
637
|
+
</xs:annotation>
|
638
|
+
<xs:complexType>
|
639
|
+
<xs:sequence>
|
640
|
+
<xs:element name="IdentifierElement" minOccurs="0" maxOccurs="unbounded">
|
641
|
+
<xs:annotation>
|
642
|
+
<xs:documentation>Information about the identifer</xs:documentation>
|
643
|
+
</xs:annotation>
|
644
|
+
<xs:complexType>
|
645
|
+
<xs:simpleContent>
|
646
|
+
<xs:extension base="ct:String">
|
647
|
+
<xs:attribute name="Type" type="PartyIdentifierElementList"/>
|
648
|
+
<xs:anyAttribute namespace="##other" processContents="lax"/>
|
649
|
+
</xs:extension>
|
650
|
+
</xs:simpleContent>
|
651
|
+
</xs:complexType>
|
652
|
+
</xs:element>
|
653
|
+
<xs:element name="IssuerName" type="n:OrganisationNameType" minOccurs="0">
|
654
|
+
<xs:annotation>
|
655
|
+
<xs:documentation>Reference to a Party element that describes the issuing organisation</xs:documentation>
|
656
|
+
</xs:annotation>
|
657
|
+
</xs:element>
|
658
|
+
</xs:sequence>
|
659
|
+
<xs:attribute name="Type" type="PartyIdentifierTypeList">
|
660
|
+
<xs:annotation>
|
661
|
+
<xs:documentation>Type of identifier. e.g. Tax Number</xs:documentation>
|
662
|
+
</xs:annotation>
|
663
|
+
</xs:attribute>
|
664
|
+
<xs:attribute name="Status" type="ct:StatusList">
|
665
|
+
<xs:annotation>
|
666
|
+
<xs:documentation>Status of the entity. e.g. Old, Current, Inactive, Active, etc</xs:documentation>
|
667
|
+
</xs:annotation>
|
668
|
+
</xs:attribute>
|
669
|
+
<xs:attributeGroup ref="ct:grValidityDate"/>
|
670
|
+
<xs:attributeGroup ref="ct:grDataQuality"/>
|
671
|
+
<xs:anyAttribute namespace="##other" processContents="lax"/>
|
672
|
+
</xs:complexType>
|
673
|
+
</xs:element>
|
674
|
+
</xs:sequence>
|
675
|
+
<xs:anyAttribute namespace="##other" processContents="lax"/>
|
676
|
+
</xs:complexType>
|
677
|
+
</xs:element>
|
678
|
+
<xs:element name="Memberships">
|
679
|
+
<xs:annotation>
|
680
|
+
<xs:documentation>A container for memberships of party with other organisations (e.g. industry groups).</xs:documentation>
|
681
|
+
</xs:annotation>
|
682
|
+
<xs:complexType>
|
683
|
+
<xs:sequence>
|
684
|
+
<xs:element name="Membership" maxOccurs="unbounded">
|
685
|
+
<xs:annotation>
|
686
|
+
<xs:documentation>Membership details</xs:documentation>
|
687
|
+
</xs:annotation>
|
688
|
+
<xs:complexType>
|
689
|
+
<xs:sequence>
|
690
|
+
<xs:element name="MembershipElement" minOccurs="0" maxOccurs="unbounded">
|
691
|
+
<xs:annotation>
|
692
|
+
<xs:documentation>Full description of membership or part of it</xs:documentation>
|
693
|
+
</xs:annotation>
|
694
|
+
<xs:complexType>
|
695
|
+
<xs:simpleContent>
|
696
|
+
<xs:extension base="ct:String">
|
697
|
+
<xs:attribute name="Type" type="MembershipElementList">
|
698
|
+
<xs:annotation>
|
699
|
+
<xs:documentation>If present, specifies the type of the information provided as text value of the element.</xs:documentation>
|
700
|
+
</xs:annotation>
|
701
|
+
</xs:attribute>
|
702
|
+
<xs:anyAttribute namespace="##other" processContents="lax"/>
|
703
|
+
</xs:extension>
|
704
|
+
</xs:simpleContent>
|
705
|
+
</xs:complexType>
|
706
|
+
</xs:element>
|
707
|
+
<xs:element name="Organisation" minOccurs="0">
|
708
|
+
<xs:annotation>
|
709
|
+
<xs:documentation>Reference to a Party element that describes the organisation where the memberships is held.</xs:documentation>
|
710
|
+
</xs:annotation>
|
711
|
+
<xs:complexType>
|
712
|
+
<xs:complexContent>
|
713
|
+
<xs:extension base="n:OrganisationNameType"/>
|
714
|
+
</xs:complexContent>
|
715
|
+
</xs:complexType>
|
716
|
+
</xs:element>
|
717
|
+
</xs:sequence>
|
718
|
+
<xs:attribute name="Type" type="MembershipTypeList">
|
719
|
+
<xs:annotation>
|
720
|
+
<xs:documentation>Type of membership. e.g </xs:documentation>
|
721
|
+
<xs:documentation>Type of membership. e.g IEEE, Rifles Club</xs:documentation>
|
722
|
+
</xs:annotation>
|
723
|
+
</xs:attribute>
|
724
|
+
<xs:attribute name="Status" type="ct:StatusList">
|
725
|
+
<xs:annotation>
|
726
|
+
<xs:documentation>Status of the entity. e.g. Old, Current, Inactive, Active, etc</xs:documentation>
|
727
|
+
</xs:annotation>
|
728
|
+
</xs:attribute>
|
729
|
+
<xs:attributeGroup ref="ct:grValidityDate"/>
|
730
|
+
<xs:attributeGroup ref="ct:grDataQuality"/>
|
731
|
+
<xs:anyAttribute namespace="##other" processContents="lax"/>
|
732
|
+
</xs:complexType>
|
733
|
+
</xs:element>
|
734
|
+
</xs:sequence>
|
735
|
+
<xs:anyAttribute namespace="##other" processContents="lax"/>
|
736
|
+
</xs:complexType>
|
737
|
+
</xs:element>
|
738
|
+
<xs:element name="Relationships">
|
739
|
+
<xs:annotation>
|
740
|
+
<xs:documentation>A container for relationships with other parties (persons or organisations, and the nature of relationship). Can also use this to define an organisation hierarchy (parent and subsidiary organisations or branches/groups of organisations)</xs:documentation>
|
741
|
+
</xs:annotation>
|
742
|
+
<xs:complexType>
|
743
|
+
<xs:sequence>
|
744
|
+
<xs:element name="Relationship" minOccurs="0" maxOccurs="unbounded">
|
745
|
+
<xs:annotation>
|
746
|
+
<xs:documentation>Relationship with a party. e.g. Friend, Wife, referee. organisation, customer. etc</xs:documentation>
|
747
|
+
</xs:annotation>
|
748
|
+
<xs:complexType>
|
749
|
+
<xs:sequence>
|
750
|
+
<xs:element ref="n:NameLine" minOccurs="0"/>
|
751
|
+
<xs:element ref="n:PersonName" minOccurs="0"/>
|
752
|
+
<xs:element ref="n:OrganisationName" minOccurs="0"/>
|
753
|
+
<xs:element ref="Addresses" minOccurs="0"/>
|
754
|
+
<xs:element ref="ContactNumbers" minOccurs="0"/>
|
755
|
+
<xs:element ref="ElectronicAddressIdentifiers" minOccurs="0"/>
|
756
|
+
</xs:sequence>
|
757
|
+
<xs:attribute name="Status" type="ct:StatusList">
|
758
|
+
<xs:annotation>
|
759
|
+
<xs:documentation>Status of the entity. e.g. Old, Current, Inactive, Active, etc</xs:documentation>
|
760
|
+
</xs:annotation>
|
761
|
+
</xs:attribute>
|
762
|
+
<xs:attribute name="PartyType" type="PartyTypeList">
|
763
|
+
<xs:annotation>
|
764
|
+
<xs:documentation>Type of party involved in the relationship, i.e. person or organisation</xs:documentation>
|
765
|
+
</xs:annotation>
|
766
|
+
</xs:attribute>
|
767
|
+
<xs:attribute name="RelationshipWithPerson" type="PersonRelationshipTypeList">
|
768
|
+
<xs:annotation>
|
769
|
+
<xs:documentation>If tha party is person, then the type of relationship with the person such as Friend, Mother, wife, contact, referee</xs:documentation>
|
770
|
+
</xs:annotation>
|
771
|
+
</xs:attribute>
|
772
|
+
<xs:attribute name="RelationshipWithOrganisation" type="OrganisationRelationshipTypeList">
|
773
|
+
<xs:annotation>
|
774
|
+
<xs:documentation>If tha party is organisation, then the type of relationship with the organisation such as employer, branch, head office, subsidiary, etc</xs:documentation>
|
775
|
+
</xs:annotation>
|
776
|
+
</xs:attribute>
|
777
|
+
<xs:attribute name="RelationshipValidFrom" type="xs:dateTime"/>
|
778
|
+
<xs:attribute name="RelationshipValidTo" type="xs:dateTime"/>
|
779
|
+
<xs:attributeGroup ref="ct:grDataQuality"/>
|
780
|
+
<xs:anyAttribute namespace="##other" processContents="lax"/>
|
781
|
+
</xs:complexType>
|
782
|
+
</xs:element>
|
783
|
+
</xs:sequence>
|
784
|
+
<xs:anyAttribute namespace="##other" processContents="lax"/>
|
785
|
+
</xs:complexType>
|
786
|
+
</xs:element>
|
787
|
+
<xs:element name="Revenues">
|
788
|
+
<xs:annotation>
|
789
|
+
<xs:documentation>Container for income / revenue information of the party</xs:documentation>
|
790
|
+
</xs:annotation>
|
791
|
+
<xs:complexType>
|
792
|
+
<xs:sequence>
|
793
|
+
<xs:element name="Revenue" maxOccurs="unbounded">
|
794
|
+
<xs:annotation>
|
795
|
+
<xs:documentation>Revenue/Income details</xs:documentation>
|
796
|
+
</xs:annotation>
|
797
|
+
<xs:complexType>
|
798
|
+
<xs:simpleContent>
|
799
|
+
<xs:extension base="xs:decimal">
|
800
|
+
<xs:attribute name="CurrencyCode" type="RevenueCurrencyCodeList">
|
801
|
+
<xs:annotation>
|
802
|
+
<xs:documentation>A three-letter currency code as per ISO 4217</xs:documentation>
|
803
|
+
</xs:annotation>
|
804
|
+
</xs:attribute>
|
805
|
+
<xs:attribute name="Status" type="ct:StatusList">
|
806
|
+
<xs:annotation>
|
807
|
+
<xs:documentation>Status of the entity. e.g. Old, Current, Inactive, Active, etc</xs:documentation>
|
808
|
+
</xs:annotation>
|
809
|
+
</xs:attribute>
|
810
|
+
<xs:attribute name="PeriodFrom" type="xs:dateTime">
|
811
|
+
<xs:annotation>
|
812
|
+
<xs:documentation>Begining of the period. Inclusive.</xs:documentation>
|
813
|
+
</xs:annotation>
|
814
|
+
</xs:attribute>
|
815
|
+
<xs:attribute name="PeriodTo" type="xs:dateTime">
|
816
|
+
<xs:annotation>
|
817
|
+
<xs:documentation>End of the period. Inclusive.</xs:documentation>
|
818
|
+
</xs:annotation>
|
819
|
+
</xs:attribute>
|
820
|
+
<xs:attribute name="Type" type="RevenueTypeList">
|
821
|
+
<xs:annotation>
|
822
|
+
<xs:documentation>Defines the type of amount. Example: Total earning, profit, loss, turnover, etc.</xs:documentation>
|
823
|
+
</xs:annotation>
|
824
|
+
</xs:attribute>
|
825
|
+
<xs:attribute name="Precision">
|
826
|
+
<xs:annotation>
|
827
|
+
<xs:documentation>Precision range where the value of the element is in the middle of the range. E.g. </xs:documentation>
|
828
|
+
</xs:annotation>
|
829
|
+
<xs:simpleType>
|
830
|
+
<xs:restriction base="xs:decimal">
|
831
|
+
<xs:minInclusive value="0"/>
|
832
|
+
</xs:restriction>
|
833
|
+
</xs:simpleType>
|
834
|
+
</xs:attribute>
|
835
|
+
<xs:attribute name="Source" type="RevenueSourceList">
|
836
|
+
<xs:annotation>
|
837
|
+
<xs:documentation>Where this revenue / income comes from, e.g. business stream, activity, etc.</xs:documentation>
|
838
|
+
</xs:annotation>
|
839
|
+
</xs:attribute>
|
840
|
+
<xs:attribute name="CountryName" type="ct:String">
|
841
|
+
<xs:annotation>
|
842
|
+
<xs:documentation>Country from where the revenue is generated</xs:documentation>
|
843
|
+
</xs:annotation>
|
844
|
+
</xs:attribute>
|
845
|
+
<xs:attribute name="AfterTax" type="xs:boolean">
|
846
|
+
<xs:annotation>
|
847
|
+
<xs:documentation>If present and set to true indicates that the income / revenue is after tax. </xs:documentation>
|
848
|
+
</xs:annotation>
|
849
|
+
</xs:attribute>
|
850
|
+
<xs:attributeGroup ref="ct:grDataQuality"/>
|
851
|
+
<xs:anyAttribute namespace="##other" processContents="lax"/>
|
852
|
+
</xs:extension>
|
853
|
+
</xs:simpleContent>
|
854
|
+
</xs:complexType>
|
855
|
+
</xs:element>
|
856
|
+
</xs:sequence>
|
857
|
+
<xs:anyAttribute namespace="##other" processContents="lax"/>
|
858
|
+
</xs:complexType>
|
859
|
+
</xs:element>
|
860
|
+
<xs:element name="Stocks">
|
861
|
+
<xs:annotation>
|
862
|
+
<xs:documentation>A container for stocks invested information </xs:documentation>
|
863
|
+
</xs:annotation>
|
864
|
+
<xs:complexType>
|
865
|
+
<xs:sequence>
|
866
|
+
<xs:element name="Stock" maxOccurs="unbounded">
|
867
|
+
<xs:annotation>
|
868
|
+
<xs:documentation>A Stock market listing details. The organisation could be listed on more than one country</xs:documentation>
|
869
|
+
</xs:annotation>
|
870
|
+
<xs:complexType>
|
871
|
+
<xs:attribute name="ListedCode" type="ct:String">
|
872
|
+
<xs:annotation>
|
873
|
+
<xs:documentation>The code name for the organisation as listed in the exchange. E.g. MOT for Motorola Inc</xs:documentation>
|
874
|
+
</xs:annotation>
|
875
|
+
</xs:attribute>
|
876
|
+
<xs:attribute name="MarketName" type="ct:String">
|
877
|
+
<xs:annotation>
|
878
|
+
<xs:documentation>Free text name of the stock exchange or other market. E.g. NYSE or NZX</xs:documentation>
|
879
|
+
</xs:annotation>
|
880
|
+
</xs:attribute>
|
881
|
+
<xs:attribute name="CountryName" type="ct:String">
|
882
|
+
<xs:annotation>
|
883
|
+
<xs:documentation>Name of the country where listed</xs:documentation>
|
884
|
+
</xs:annotation>
|
885
|
+
</xs:attribute>
|
886
|
+
<xs:attribute name="InvestedDate" type="xs:dateTime">
|
887
|
+
<xs:annotation>
|
888
|
+
<xs:documentation>date of investment</xs:documentation>
|
889
|
+
</xs:annotation>
|
890
|
+
</xs:attribute>
|
891
|
+
<xs:attribute name="ShareQuantity" type="ct:String">
|
892
|
+
<xs:annotation>
|
893
|
+
<xs:documentation>Quantity of shares.....1 million shares</xs:documentation>
|
894
|
+
</xs:annotation>
|
895
|
+
</xs:attribute>
|
896
|
+
<xs:attribute name="ListedDate" type="xs:dateTime">
|
897
|
+
<xs:annotation>
|
898
|
+
<xs:documentation>date of listing </xs:documentation>
|
899
|
+
</xs:annotation>
|
900
|
+
</xs:attribute>
|
901
|
+
<xs:attributeGroup ref="ct:grDataQuality"/>
|
902
|
+
<xs:anyAttribute namespace="##other" processContents="lax"/>
|
903
|
+
</xs:complexType>
|
904
|
+
</xs:element>
|
905
|
+
</xs:sequence>
|
906
|
+
<xs:anyAttribute namespace="##other" processContents="lax"/>
|
907
|
+
</xs:complexType>
|
908
|
+
</xs:element>
|
909
|
+
<xs:element name="Vehicles">
|
910
|
+
<xs:annotation>
|
911
|
+
<xs:documentation>A container to define all the vehicles of the party</xs:documentation>
|
912
|
+
</xs:annotation>
|
913
|
+
<xs:complexType>
|
914
|
+
<xs:sequence>
|
915
|
+
<xs:element name="Vehicle" maxOccurs="unbounded">
|
916
|
+
<xs:annotation>
|
917
|
+
<xs:documentation>Vehicle Details</xs:documentation>
|
918
|
+
</xs:annotation>
|
919
|
+
<xs:complexType>
|
920
|
+
<xs:sequence>
|
921
|
+
<xs:element name="VehicleElement" minOccurs="0" maxOccurs="unbounded">
|
922
|
+
<xs:annotation>
|
923
|
+
<xs:documentation>Full vehicle description of part of it</xs:documentation>
|
924
|
+
</xs:annotation>
|
925
|
+
<xs:complexType>
|
926
|
+
<xs:simpleContent>
|
927
|
+
<xs:extension base="ct:String">
|
928
|
+
<xs:attribute name="Type" type="VehicleInfoElementList">
|
929
|
+
<xs:annotation>
|
930
|
+
<xs:documentation>If present, specifies the type of the information provided as text value of the element.</xs:documentation>
|
931
|
+
</xs:annotation>
|
932
|
+
</xs:attribute>
|
933
|
+
<xs:anyAttribute namespace="##other" processContents="lax"/>
|
934
|
+
</xs:extension>
|
935
|
+
</xs:simpleContent>
|
936
|
+
</xs:complexType>
|
937
|
+
</xs:element>
|
938
|
+
</xs:sequence>
|
939
|
+
<xs:attribute name="Type" type="VehicleTypeList">
|
940
|
+
<xs:annotation>
|
941
|
+
<xs:documentation>Type of vehicle. Example: Motorbike, Truck, Car, Bicycle, 4WD, Jeep, etc</xs:documentation>
|
942
|
+
</xs:annotation>
|
943
|
+
</xs:attribute>
|
944
|
+
<xs:attribute name="Status" type="ct:StatusList">
|
945
|
+
<xs:annotation>
|
946
|
+
<xs:documentation>Status of the entity. e.g. Old, Current, Inactive, Active, etc</xs:documentation>
|
947
|
+
</xs:annotation>
|
948
|
+
</xs:attribute>
|
949
|
+
<xs:attributeGroup ref="ct:grDataQuality"/>
|
950
|
+
<xs:anyAttribute namespace="##other" processContents="lax"/>
|
951
|
+
</xs:complexType>
|
952
|
+
</xs:element>
|
953
|
+
</xs:sequence>
|
954
|
+
<xs:anyAttribute namespace="##other" processContents="lax"/>
|
955
|
+
</xs:complexType>
|
956
|
+
</xs:element>
|
957
|
+
<!--***************** SECOND LEVEL ELEMENTS FOR REUSE - FOR ORGANISATION SPECIFIC DATA ONLY ***********************-->
|
958
|
+
<xs:element name="OrganisationInfo">
|
959
|
+
<xs:annotation>
|
960
|
+
<xs:documentation>Container for organisation specific details that are not covered in this schema that is common to a party</xs:documentation>
|
961
|
+
</xs:annotation>
|
962
|
+
<xs:complexType>
|
963
|
+
<xs:attribute name="Type" type="OrganisationInfoTypeList">
|
964
|
+
<xs:annotation>
|
965
|
+
<xs:documentation>Type of organisation. Free text description, e.g. Company, Trust, Bank, Society, Club, etc.</xs:documentation>
|
966
|
+
</xs:annotation>
|
967
|
+
</xs:attribute>
|
968
|
+
<xs:attribute name="CategoryType" type="OrganisationCategoryTypeList">
|
969
|
+
<xs:annotation>
|
970
|
+
<xs:documentation>Type of category the organisation belongs to such as club, association, company, vendor, etc</xs:documentation>
|
971
|
+
</xs:annotation>
|
972
|
+
</xs:attribute>
|
973
|
+
<xs:attribute name="Status" type="ct:StatusList">
|
974
|
+
<xs:annotation>
|
975
|
+
<xs:documentation>Status of the entity. e.g. Old, Current, Inactive, Active, etc</xs:documentation>
|
976
|
+
</xs:annotation>
|
977
|
+
</xs:attribute>
|
978
|
+
<xs:attribute name="Nature" type="OrganisationInfoNatureList">
|
979
|
+
<xs:annotation>
|
980
|
+
<xs:documentation>Nature of the organisation. e.g. Public limited, Commercial, charity, non-commercial, etc.</xs:documentation>
|
981
|
+
</xs:annotation>
|
982
|
+
</xs:attribute>
|
983
|
+
<xs:attribute name="IndustryType" type="IndustryTypeList">
|
984
|
+
<xs:annotation>
|
985
|
+
<xs:documentation>Organisation Industry type such as IT, Manufacturing. </xs:documentation>
|
986
|
+
</xs:annotation>
|
987
|
+
</xs:attribute>
|
988
|
+
<xs:attribute name="IndustryCode" type="IndustryCodeList">
|
989
|
+
<xs:annotation>
|
990
|
+
<xs:documentation>Industry code or classification</xs:documentation>
|
991
|
+
</xs:annotation>
|
992
|
+
</xs:attribute>
|
993
|
+
<xs:attribute name="IndustryCodeType" type="ct:String">
|
994
|
+
<xs:annotation>
|
995
|
+
<xs:documentation>Type of code used for industry code</xs:documentation>
|
996
|
+
</xs:annotation>
|
997
|
+
</xs:attribute>
|
998
|
+
<xs:attribute name="NumberOfEmployees" type="ct:String">
|
999
|
+
<xs:annotation>
|
1000
|
+
<xs:documentation>Free text description of organisation size in terms of number of employees</xs:documentation>
|
1001
|
+
</xs:annotation>
|
1002
|
+
</xs:attribute>
|
1003
|
+
<xs:attribute name="OperatingHourStartTime" type="xs:time">
|
1004
|
+
<xs:annotation>
|
1005
|
+
<xs:documentation>Operating hour start time of the organisation, e.g. 9:00am</xs:documentation>
|
1006
|
+
</xs:annotation>
|
1007
|
+
</xs:attribute>
|
1008
|
+
<xs:attribute name="OperatingHourEndTime" type="xs:time">
|
1009
|
+
<xs:annotation>
|
1010
|
+
<xs:documentation>Operating hour end time for the organisation. e.g. 5:00pm</xs:documentation>
|
1011
|
+
</xs:annotation>
|
1012
|
+
</xs:attribute>
|
1013
|
+
<xs:attributeGroup ref="ct:grDataQuality"/>
|
1014
|
+
<xs:anyAttribute namespace="##other" processContents="lax"/>
|
1015
|
+
</xs:complexType>
|
1016
|
+
</xs:element>
|
1017
|
+
<!--****************** SECOND LEVEL ELEMENTS FOR REUSE - FOR PERSON SPECIFIC DATA ONLY *********************************-->
|
1018
|
+
<xs:element name="PersonInfo">
|
1019
|
+
<xs:annotation>
|
1020
|
+
<xs:documentation>Container for person specific details that are not covered in this schema that is common to a party</xs:documentation>
|
1021
|
+
</xs:annotation>
|
1022
|
+
<xs:complexType>
|
1023
|
+
<xs:attribute name="Age" type="ct:String">
|
1024
|
+
<xs:annotation>
|
1025
|
+
<xs:documentation>Age of the person as integer</xs:documentation>
|
1026
|
+
</xs:annotation>
|
1027
|
+
</xs:attribute>
|
1028
|
+
<xs:attribute name="CategoryType" type="PersonCategoryTypeList">
|
1029
|
+
<xs:annotation>
|
1030
|
+
<xs:documentation>Type of category the person belongs such as customer, employee, friend, prospect, etc</xs:documentation>
|
1031
|
+
</xs:annotation>
|
1032
|
+
</xs:attribute>
|
1033
|
+
<xs:attribute name="PhysicalStatus" type="PhysicalStatusList">
|
1034
|
+
<xs:annotation>
|
1035
|
+
<xs:documentation>Status of the person. e.g. living, deceased, retired. To log the date of the status such as death or retired, use "Events" element</xs:documentation>
|
1036
|
+
</xs:annotation>
|
1037
|
+
</xs:attribute>
|
1038
|
+
<xs:attribute name="MaritalStatus" type="MaritalStatusList">
|
1039
|
+
<xs:annotation>
|
1040
|
+
<xs:documentation>Free text description of the current marital status, e.g. married, separated, divorced, separated, etc.</xs:documentation>
|
1041
|
+
</xs:annotation>
|
1042
|
+
</xs:attribute>
|
1043
|
+
<xs:attribute name="Ethnicity" type="PersonEthnicityList">
|
1044
|
+
<xs:annotation>
|
1045
|
+
<xs:documentation>Ethnicity of the person, e.g. Asian, Chinese, African, etc.</xs:documentation>
|
1046
|
+
</xs:annotation>
|
1047
|
+
</xs:attribute>
|
1048
|
+
<xs:attribute name="Gender" type="GenderList">
|
1049
|
+
<xs:annotation>
|
1050
|
+
<xs:documentation>Free text gender description.</xs:documentation>
|
1051
|
+
</xs:annotation>
|
1052
|
+
</xs:attribute>
|
1053
|
+
<xs:attribute name="Religion" type="ReligionList">
|
1054
|
+
<xs:annotation>
|
1055
|
+
<xs:documentation>Free text name of the religion</xs:documentation>
|
1056
|
+
</xs:annotation>
|
1057
|
+
</xs:attribute>
|
1058
|
+
<xs:attributeGroup ref="ct:grDataQuality"/>
|
1059
|
+
<xs:anyAttribute namespace="##other" processContents="lax"/>
|
1060
|
+
</xs:complexType>
|
1061
|
+
</xs:element>
|
1062
|
+
<xs:element name="BirthInfo">
|
1063
|
+
<xs:annotation>
|
1064
|
+
<xs:documentation>A container to define the Date of Birth details of a person</xs:documentation>
|
1065
|
+
</xs:annotation>
|
1066
|
+
<xs:complexType>
|
1067
|
+
<xs:sequence>
|
1068
|
+
<xs:element name="BirthInfoElement" minOccurs="0" maxOccurs="unbounded">
|
1069
|
+
<xs:annotation>
|
1070
|
+
<xs:documentation>Birth details of the person</xs:documentation>
|
1071
|
+
</xs:annotation>
|
1072
|
+
<xs:complexType>
|
1073
|
+
<xs:simpleContent>
|
1074
|
+
<xs:extension base="ct:String">
|
1075
|
+
<xs:attribute name="Type" type="BirthInfoElementList">
|
1076
|
+
<xs:annotation>
|
1077
|
+
<xs:documentation>If present, specifies the type of the information provided as text value of the element.</xs:documentation>
|
1078
|
+
</xs:annotation>
|
1079
|
+
</xs:attribute>
|
1080
|
+
<xs:anyAttribute namespace="##other" processContents="lax"/>
|
1081
|
+
</xs:extension>
|
1082
|
+
</xs:simpleContent>
|
1083
|
+
</xs:complexType>
|
1084
|
+
</xs:element>
|
1085
|
+
<xs:element name="BirthPlaceDetails" type="a:AddressType" minOccurs="0">
|
1086
|
+
<xs:annotation>
|
1087
|
+
<xs:documentation>Full location details (e.g. address) may be required to get the exact geo-cordinates for astrology purposes</xs:documentation>
|
1088
|
+
</xs:annotation>
|
1089
|
+
</xs:element>
|
1090
|
+
</xs:sequence>
|
1091
|
+
<xs:attribute name="BirthDateTime" type="xs:dateTime">
|
1092
|
+
<xs:annotation>
|
1093
|
+
<xs:documentation>Birth data and time to the known precision. Usually, it is only the date that is known. Leave time as 00:00:00 if not known.</xs:documentation>
|
1094
|
+
</xs:annotation>
|
1095
|
+
</xs:attribute>
|
1096
|
+
<xs:attribute name="BirthDateTimePrecision" type="xs:duration">
|
1097
|
+
<xs:annotation>
|
1098
|
+
<xs:documentation>Specify the duration of the uncertainity period as a range where BirthDateTime is in the middle of the range. Uses xsd:duration as the data type. The time interval is in the format: PnYnMnDTnHnMnS
|
1099
|
+
P: period (required), nY: number of years, nM: number of months, nD: number of days, T: start of a time section (required if hours, minutes or secords to be specified), nH: number of hours, nM: number of minutes, nS: number of seconds
|
1100
|
+
|
1101
|
+
P5Y -> period of 5 years
|
1102
|
+
P5Y2M10D -> 5 years, 2 months, 10 days, and 15 hours</xs:documentation>
|
1103
|
+
</xs:annotation>
|
1104
|
+
</xs:attribute>
|
1105
|
+
<xs:attributeGroup ref="ct:grDataQuality"/>
|
1106
|
+
<xs:anyAttribute namespace="##other" processContents="lax"/>
|
1107
|
+
</xs:complexType>
|
1108
|
+
</xs:element>
|
1109
|
+
<xs:element name="CountriesOfResidence">
|
1110
|
+
<xs:annotation>
|
1111
|
+
<xs:documentation>A container for all citizenships and residencies (Permanent/temporary) of a person.</xs:documentation>
|
1112
|
+
</xs:annotation>
|
1113
|
+
<xs:complexType>
|
1114
|
+
<xs:sequence>
|
1115
|
+
<xs:element name="Country" maxOccurs="unbounded">
|
1116
|
+
<xs:annotation>
|
1117
|
+
<xs:documentation>Citizenship and residence information in a free-text form.</xs:documentation>
|
1118
|
+
</xs:annotation>
|
1119
|
+
<xs:complexType>
|
1120
|
+
<xs:complexContent>
|
1121
|
+
<xs:extension base="a:CountryType">
|
1122
|
+
<xs:attribute name="Type" type="ResidencyTypeList">
|
1123
|
+
<xs:annotation>
|
1124
|
+
<xs:documentation>Type of residency. e.g. permenant resident, citizen, temporary resident</xs:documentation>
|
1125
|
+
</xs:annotation>
|
1126
|
+
</xs:attribute>
|
1127
|
+
<xs:attribute name="Status" type="ct:StatusList">
|
1128
|
+
<xs:annotation>
|
1129
|
+
<xs:documentation>Status of the entity. e.g. Old, Current, Inactive, Active, etc</xs:documentation>
|
1130
|
+
</xs:annotation>
|
1131
|
+
</xs:attribute>
|
1132
|
+
<xs:attributeGroup ref="ct:grValidityDate"/>
|
1133
|
+
</xs:extension>
|
1134
|
+
</xs:complexContent>
|
1135
|
+
</xs:complexType>
|
1136
|
+
</xs:element>
|
1137
|
+
</xs:sequence>
|
1138
|
+
<xs:anyAttribute namespace="##other" processContents="lax"/>
|
1139
|
+
</xs:complexType>
|
1140
|
+
</xs:element>
|
1141
|
+
<xs:element name="Favourites">
|
1142
|
+
<xs:annotation>
|
1143
|
+
<xs:documentation>A container for a list of favourites of a person</xs:documentation>
|
1144
|
+
</xs:annotation>
|
1145
|
+
<xs:complexType>
|
1146
|
+
<xs:sequence>
|
1147
|
+
<xs:element name="Favourite" maxOccurs="unbounded">
|
1148
|
+
<xs:annotation>
|
1149
|
+
<xs:documentation>The favourites of the person</xs:documentation>
|
1150
|
+
</xs:annotation>
|
1151
|
+
<xs:complexType>
|
1152
|
+
<xs:simpleContent>
|
1153
|
+
<xs:extension base="ct:String">
|
1154
|
+
<xs:attribute name="Type" type="PersonFavouriteTypeList">
|
1155
|
+
<xs:annotation>
|
1156
|
+
<xs:documentation>Type of favourite. e.g. author, food, book, sport, etc
|
1157
|
+
|
1158
|
+
<Favourite Type="sport">Cricket</Favourite>
|
1159
|
+
<Favourite Type="Movie">Back to the Future</Favourite>
|
1160
|
+
</xs:documentation>
|
1161
|
+
</xs:annotation>
|
1162
|
+
</xs:attribute>
|
1163
|
+
<xs:attributeGroup ref="ct:grDataQuality"/>
|
1164
|
+
<xs:anyAttribute namespace="##other" processContents="lax"/>
|
1165
|
+
</xs:extension>
|
1166
|
+
</xs:simpleContent>
|
1167
|
+
</xs:complexType>
|
1168
|
+
</xs:element>
|
1169
|
+
</xs:sequence>
|
1170
|
+
<xs:anyAttribute namespace="##other" processContents="lax"/>
|
1171
|
+
</xs:complexType>
|
1172
|
+
</xs:element>
|
1173
|
+
<xs:element name="Habits">
|
1174
|
+
<xs:annotation>
|
1175
|
+
<xs:documentation>A container for a list of habits of a person</xs:documentation>
|
1176
|
+
</xs:annotation>
|
1177
|
+
<xs:complexType>
|
1178
|
+
<xs:sequence>
|
1179
|
+
<xs:element name="Habit" maxOccurs="unbounded">
|
1180
|
+
<xs:annotation>
|
1181
|
+
<xs:documentation>Personal habits. E.g. smoking, drinking, gambling, etc.</xs:documentation>
|
1182
|
+
</xs:annotation>
|
1183
|
+
<xs:complexType>
|
1184
|
+
<xs:simpleContent>
|
1185
|
+
<xs:extension base="ct:String">
|
1186
|
+
<xs:attribute name="Type" type="HabitTypeList">
|
1187
|
+
<xs:annotation>
|
1188
|
+
<xs:documentation>Category/type of habit. e.g. sports, food, reading, etc. If "Hot Drinks" is type, then text for Habit could be "Strong Black Coffee"</xs:documentation>
|
1189
|
+
</xs:annotation>
|
1190
|
+
</xs:attribute>
|
1191
|
+
<xs:attributeGroup ref="ct:grDataQuality"/>
|
1192
|
+
<xs:anyAttribute namespace="##other" processContents="lax"/>
|
1193
|
+
</xs:extension>
|
1194
|
+
</xs:simpleContent>
|
1195
|
+
</xs:complexType>
|
1196
|
+
</xs:element>
|
1197
|
+
</xs:sequence>
|
1198
|
+
<xs:anyAttribute namespace="##other" processContents="lax"/>
|
1199
|
+
</xs:complexType>
|
1200
|
+
</xs:element>
|
1201
|
+
<xs:element name="Hobbies">
|
1202
|
+
<xs:annotation>
|
1203
|
+
<xs:documentation>A container for a list of hobbies of a person</xs:documentation>
|
1204
|
+
</xs:annotation>
|
1205
|
+
<xs:complexType>
|
1206
|
+
<xs:sequence>
|
1207
|
+
<xs:element name="Hobby" maxOccurs="unbounded">
|
1208
|
+
<xs:annotation>
|
1209
|
+
<xs:documentation>A hobby of the person. E.g. craft, sport, recreational activity, etc.</xs:documentation>
|
1210
|
+
</xs:annotation>
|
1211
|
+
<xs:complexType>
|
1212
|
+
<xs:simpleContent>
|
1213
|
+
<xs:extension base="ct:String">
|
1214
|
+
<xs:attribute name="Type" type="HobbyTypeList">
|
1215
|
+
<xs:annotation>
|
1216
|
+
<xs:documentation>Type/Category of Hobby. e.g. sports, travelling. If "Sport" is a type/category of hobby, then text for "Hobby" could be "Playing cricket"</xs:documentation>
|
1217
|
+
</xs:annotation>
|
1218
|
+
</xs:attribute>
|
1219
|
+
<xs:attributeGroup ref="ct:grDataQuality"/>
|
1220
|
+
<xs:anyAttribute namespace="##other" processContents="lax"/>
|
1221
|
+
</xs:extension>
|
1222
|
+
</xs:simpleContent>
|
1223
|
+
</xs:complexType>
|
1224
|
+
</xs:element>
|
1225
|
+
</xs:sequence>
|
1226
|
+
<xs:anyAttribute namespace="##other" processContents="lax"/>
|
1227
|
+
</xs:complexType>
|
1228
|
+
</xs:element>
|
1229
|
+
<xs:element name="Languages">
|
1230
|
+
<xs:annotation>
|
1231
|
+
<xs:documentation>A container for a list of languages spoken by a person.</xs:documentation>
|
1232
|
+
</xs:annotation>
|
1233
|
+
<xs:complexType>
|
1234
|
+
<xs:sequence>
|
1235
|
+
<xs:element name="Language" maxOccurs="unbounded">
|
1236
|
+
<xs:annotation>
|
1237
|
+
<xs:documentation>Name of the language spoken by the person</xs:documentation>
|
1238
|
+
</xs:annotation>
|
1239
|
+
<xs:complexType>
|
1240
|
+
<xs:simpleContent>
|
1241
|
+
<xs:extension base="ct:String">
|
1242
|
+
<xs:attribute name="Type" type="LanguageTypeList">
|
1243
|
+
<xs:annotation>
|
1244
|
+
<xs:documentation>Mother tongue, by birth, etc</xs:documentation>
|
1245
|
+
</xs:annotation>
|
1246
|
+
</xs:attribute>
|
1247
|
+
<xs:attribute name="Speak" type="LanguageSkillsList">
|
1248
|
+
<xs:annotation>
|
1249
|
+
<xs:documentation>Indicates ability to speak: yes, no, poor, good, bad, average</xs:documentation>
|
1250
|
+
</xs:annotation>
|
1251
|
+
</xs:attribute>
|
1252
|
+
<xs:attribute name="Read" type="LanguageSkillsList">
|
1253
|
+
<xs:annotation>
|
1254
|
+
<xs:documentation>Indicates ability to read: yes, no, poor, good, bad, average</xs:documentation>
|
1255
|
+
</xs:annotation>
|
1256
|
+
</xs:attribute>
|
1257
|
+
<xs:attribute name="Write" type="LanguageSkillsList">
|
1258
|
+
<xs:annotation>
|
1259
|
+
<xs:documentation>Indicates ability to write: yes, no, poor, good, bad, average</xs:documentation>
|
1260
|
+
</xs:annotation>
|
1261
|
+
</xs:attribute>
|
1262
|
+
<xs:attribute name="Understand" type="LanguageSkillsList">
|
1263
|
+
<xs:annotation>
|
1264
|
+
<xs:documentation>Indicates ability to understand speech: yes, no, poor, good, bad, average</xs:documentation>
|
1265
|
+
</xs:annotation>
|
1266
|
+
</xs:attribute>
|
1267
|
+
<xs:attribute name="Preference" type="LanguagePreferenceList">
|
1268
|
+
<xs:annotation>
|
1269
|
+
<xs:documentation>Indicates preferred language of communication (read and/or write and/or speak)</xs:documentation>
|
1270
|
+
</xs:annotation>
|
1271
|
+
</xs:attribute>
|
1272
|
+
<xs:attributeGroup ref="ct:grDataQuality"/>
|
1273
|
+
<xs:anyAttribute namespace="##other" processContents="lax"/>
|
1274
|
+
</xs:extension>
|
1275
|
+
</xs:simpleContent>
|
1276
|
+
</xs:complexType>
|
1277
|
+
</xs:element>
|
1278
|
+
</xs:sequence>
|
1279
|
+
<xs:anyAttribute namespace="##other" processContents="lax"/>
|
1280
|
+
</xs:complexType>
|
1281
|
+
</xs:element>
|
1282
|
+
<xs:element name="Nationalities">
|
1283
|
+
<xs:annotation>
|
1284
|
+
<xs:documentation>A container for a list of nationalities of a person</xs:documentation>
|
1285
|
+
</xs:annotation>
|
1286
|
+
<xs:complexType>
|
1287
|
+
<xs:sequence>
|
1288
|
+
<xs:element name="Country" maxOccurs="unbounded">
|
1289
|
+
<xs:annotation>
|
1290
|
+
<xs:documentation>Name of the country of nationality. Could be more than one nationality</xs:documentation>
|
1291
|
+
</xs:annotation>
|
1292
|
+
<xs:complexType>
|
1293
|
+
<xs:complexContent>
|
1294
|
+
<xs:extension base="a:CountryType">
|
1295
|
+
<xs:attribute name="Type" type="NationalityTypeList">
|
1296
|
+
<xs:annotation>
|
1297
|
+
<xs:documentation>Type of nationality - By birth, naturalization, citizen</xs:documentation>
|
1298
|
+
</xs:annotation>
|
1299
|
+
</xs:attribute>
|
1300
|
+
<xs:attribute name="Status" type="ct:StatusList">
|
1301
|
+
<xs:annotation>
|
1302
|
+
<xs:documentation>Status of the entity. e.g. Old, Current, Inactive, Active, etc</xs:documentation>
|
1303
|
+
</xs:annotation>
|
1304
|
+
</xs:attribute>
|
1305
|
+
<xs:attributeGroup ref="ct:grValidityDate"/>
|
1306
|
+
</xs:extension>
|
1307
|
+
</xs:complexContent>
|
1308
|
+
</xs:complexType>
|
1309
|
+
</xs:element>
|
1310
|
+
</xs:sequence>
|
1311
|
+
<xs:anyAttribute namespace="##other" processContents="lax"/>
|
1312
|
+
</xs:complexType>
|
1313
|
+
</xs:element>
|
1314
|
+
<xs:element name="Occupations">
|
1315
|
+
<xs:annotation>
|
1316
|
+
<xs:documentation>A container for a list of occupations of a person</xs:documentation>
|
1317
|
+
</xs:annotation>
|
1318
|
+
<xs:complexType>
|
1319
|
+
<xs:sequence>
|
1320
|
+
<xs:element name="Occupation" maxOccurs="unbounded">
|
1321
|
+
<xs:annotation>
|
1322
|
+
<xs:documentation>Occupation details</xs:documentation>
|
1323
|
+
</xs:annotation>
|
1324
|
+
<xs:complexType>
|
1325
|
+
<xs:sequence>
|
1326
|
+
<xs:element name="OccupationElement" minOccurs="0" maxOccurs="unbounded">
|
1327
|
+
<xs:annotation>
|
1328
|
+
<xs:documentation>Full description of the occupation or part of it</xs:documentation>
|
1329
|
+
</xs:annotation>
|
1330
|
+
<xs:complexType>
|
1331
|
+
<xs:simpleContent>
|
1332
|
+
<xs:extension base="ct:String">
|
1333
|
+
<xs:attribute name="Type" type="OccupationElementList">
|
1334
|
+
<xs:annotation>
|
1335
|
+
<xs:documentation>If present, specifies the type of the information provided as text value of the element.</xs:documentation>
|
1336
|
+
</xs:annotation>
|
1337
|
+
</xs:attribute>
|
1338
|
+
<xs:anyAttribute namespace="##other" processContents="lax"/>
|
1339
|
+
</xs:extension>
|
1340
|
+
</xs:simpleContent>
|
1341
|
+
</xs:complexType>
|
1342
|
+
</xs:element>
|
1343
|
+
<xs:element name="Employer" minOccurs="0">
|
1344
|
+
<xs:annotation>
|
1345
|
+
<xs:documentation>Reference to a Party element that describes the employer.</xs:documentation>
|
1346
|
+
</xs:annotation>
|
1347
|
+
<xs:complexType>
|
1348
|
+
<xs:complexContent>
|
1349
|
+
<xs:extension base="n:OrganisationNameType"/>
|
1350
|
+
</xs:complexContent>
|
1351
|
+
</xs:complexType>
|
1352
|
+
</xs:element>
|
1353
|
+
</xs:sequence>
|
1354
|
+
<xs:attribute name="isSelfEmployed" type="xs:boolean">
|
1355
|
+
<xs:annotation>
|
1356
|
+
<xs:documentation>Is the party self employed? A boolean value expected</xs:documentation>
|
1357
|
+
</xs:annotation>
|
1358
|
+
</xs:attribute>
|
1359
|
+
<xs:attribute name="Status" type="ct:StatusList">
|
1360
|
+
<xs:annotation>
|
1361
|
+
<xs:documentation>Status of the entity. e.g. Old, Current, Inactive, Active, etc</xs:documentation>
|
1362
|
+
</xs:annotation>
|
1363
|
+
</xs:attribute>
|
1364
|
+
<xs:attributeGroup ref="ct:grValidityDate"/>
|
1365
|
+
<xs:attributeGroup ref="ct:grDataQuality"/>
|
1366
|
+
<xs:anyAttribute namespace="##other" processContents="lax"/>
|
1367
|
+
</xs:complexType>
|
1368
|
+
</xs:element>
|
1369
|
+
</xs:sequence>
|
1370
|
+
<xs:anyAttribute namespace="##other" processContents="lax"/>
|
1371
|
+
</xs:complexType>
|
1372
|
+
</xs:element>
|
1373
|
+
<xs:element name="PhysicalInfo">
|
1374
|
+
<xs:annotation>
|
1375
|
+
<xs:documentation>A container for physical characteristics of a person</xs:documentation>
|
1376
|
+
</xs:annotation>
|
1377
|
+
<xs:complexType>
|
1378
|
+
<xs:sequence>
|
1379
|
+
<xs:element name="FreeTextLine" minOccurs="0" maxOccurs="unbounded">
|
1380
|
+
<xs:annotation>
|
1381
|
+
<xs:documentation>Any other physical info not covered by elements here</xs:documentation>
|
1382
|
+
</xs:annotation>
|
1383
|
+
<xs:complexType>
|
1384
|
+
<xs:simpleContent>
|
1385
|
+
<xs:extension base="ct:String">
|
1386
|
+
<xs:attribute name="Type" type="PhysicalInfoFreeTextTypeList">
|
1387
|
+
<xs:annotation>
|
1388
|
+
<xs:documentation>Category or type of physical info</xs:documentation>
|
1389
|
+
</xs:annotation>
|
1390
|
+
</xs:attribute>
|
1391
|
+
<xs:attributeGroup ref="ct:grDataQuality"/>
|
1392
|
+
<xs:anyAttribute namespace="##other" processContents="lax"/>
|
1393
|
+
</xs:extension>
|
1394
|
+
</xs:simpleContent>
|
1395
|
+
</xs:complexType>
|
1396
|
+
</xs:element>
|
1397
|
+
<xs:element name="Feature" minOccurs="0" maxOccurs="unbounded">
|
1398
|
+
<xs:annotation>
|
1399
|
+
<xs:documentation>Description of a physical feature such as hair, height, eye color, etc.</xs:documentation>
|
1400
|
+
</xs:annotation>
|
1401
|
+
<xs:complexType>
|
1402
|
+
<xs:simpleContent>
|
1403
|
+
<xs:extension base="ct:String">
|
1404
|
+
<xs:attribute name="Type" type="FeatureTypeList">
|
1405
|
+
<xs:annotation>
|
1406
|
+
<xs:documentation>If present, specifies the type of the information provided as text value of the element.</xs:documentation>
|
1407
|
+
</xs:annotation>
|
1408
|
+
</xs:attribute>
|
1409
|
+
<xs:attribute name="UnitType" type="UnitTypeList">
|
1410
|
+
<xs:annotation>
|
1411
|
+
<xs:documentation>Defines the unit of measurement. Example: Inches, feet, cm, meters, days, months, years, kgs, pounds, etc.</xs:documentation>
|
1412
|
+
</xs:annotation>
|
1413
|
+
</xs:attribute>
|
1414
|
+
<xs:attributeGroup ref="ct:grDataQuality"/>
|
1415
|
+
<xs:anyAttribute namespace="##other" processContents="lax"/>
|
1416
|
+
</xs:extension>
|
1417
|
+
</xs:simpleContent>
|
1418
|
+
</xs:complexType>
|
1419
|
+
</xs:element>
|
1420
|
+
<xs:element name="BodyMark" minOccurs="0" maxOccurs="unbounded">
|
1421
|
+
<xs:annotation>
|
1422
|
+
<xs:documentation>Description of body marks, such as scars, tatoos, spots, etc.</xs:documentation>
|
1423
|
+
</xs:annotation>
|
1424
|
+
<xs:complexType>
|
1425
|
+
<xs:simpleContent>
|
1426
|
+
<xs:extension base="ct:String">
|
1427
|
+
<xs:attribute name="Part" type="BodyMarkPartList">
|
1428
|
+
<xs:annotation>
|
1429
|
+
<xs:documentation>Free text name/description of the body part where the mark is located</xs:documentation>
|
1430
|
+
</xs:annotation>
|
1431
|
+
</xs:attribute>
|
1432
|
+
<xs:attribute name="Location" type="BodyMarkPartLocationList">
|
1433
|
+
<xs:annotation>
|
1434
|
+
<xs:documentation>Free text description of where on the body part the mark is located. E.g. left hand side, front, back, etc</xs:documentation>
|
1435
|
+
</xs:annotation>
|
1436
|
+
</xs:attribute>
|
1437
|
+
<xs:attributeGroup ref="ct:grDataQuality"/>
|
1438
|
+
<xs:anyAttribute namespace="##other" processContents="lax"/>
|
1439
|
+
</xs:extension>
|
1440
|
+
</xs:simpleContent>
|
1441
|
+
</xs:complexType>
|
1442
|
+
</xs:element>
|
1443
|
+
<xs:element name="Disability" minOccurs="0" maxOccurs="unbounded">
|
1444
|
+
<xs:annotation>
|
1445
|
+
<xs:documentation>Description of person's disability.</xs:documentation>
|
1446
|
+
</xs:annotation>
|
1447
|
+
<xs:complexType>
|
1448
|
+
<xs:simpleContent>
|
1449
|
+
<xs:extension base="ct:String">
|
1450
|
+
<xs:attribute name="Cause" type="DisabilityCauseList">
|
1451
|
+
<xs:annotation>
|
1452
|
+
<xs:documentation>Free text description of the cause of the disability, e.g. birth defect, accident, etc.</xs:documentation>
|
1453
|
+
</xs:annotation>
|
1454
|
+
</xs:attribute>
|
1455
|
+
<xs:attributeGroup ref="ct:grDataQuality"/>
|
1456
|
+
<xs:anyAttribute namespace="##other" processContents="lax"/>
|
1457
|
+
</xs:extension>
|
1458
|
+
</xs:simpleContent>
|
1459
|
+
</xs:complexType>
|
1460
|
+
</xs:element>
|
1461
|
+
<xs:element name="Allergy" minOccurs="0" maxOccurs="unbounded">
|
1462
|
+
<xs:annotation>
|
1463
|
+
<xs:documentation>Description of the person's allergy. e.g. Allergic to Pencillin, milk products</xs:documentation>
|
1464
|
+
</xs:annotation>
|
1465
|
+
<xs:complexType>
|
1466
|
+
<xs:simpleContent>
|
1467
|
+
<xs:extension base="ct:String">
|
1468
|
+
<xs:attributeGroup ref="ct:grDataQuality"/>
|
1469
|
+
<xs:anyAttribute namespace="##other" processContents="lax"/>
|
1470
|
+
</xs:extension>
|
1471
|
+
</xs:simpleContent>
|
1472
|
+
</xs:complexType>
|
1473
|
+
</xs:element>
|
1474
|
+
<xs:element name="HealthCondition" minOccurs="0" maxOccurs="unbounded">
|
1475
|
+
<xs:annotation>
|
1476
|
+
<xs:documentation>Condition of health in terms of medical. e.g. Healthy, diabetic, hgh blood pressure, high cholestrol, etc</xs:documentation>
|
1477
|
+
</xs:annotation>
|
1478
|
+
<xs:complexType>
|
1479
|
+
<xs:simpleContent>
|
1480
|
+
<xs:extension base="ct:String">
|
1481
|
+
<xs:attributeGroup ref="ct:grDataQuality"/>
|
1482
|
+
<xs:anyAttribute namespace="##other" processContents="lax"/>
|
1483
|
+
</xs:extension>
|
1484
|
+
</xs:simpleContent>
|
1485
|
+
</xs:complexType>
|
1486
|
+
</xs:element>
|
1487
|
+
</xs:sequence>
|
1488
|
+
<xs:attribute name="BloodGroup" type="BloodGroupList"/>
|
1489
|
+
<xs:attributeGroup ref="ct:grDataQuality"/>
|
1490
|
+
<xs:anyAttribute namespace="##other" processContents="lax"/>
|
1491
|
+
</xs:complexType>
|
1492
|
+
</xs:element>
|
1493
|
+
<xs:element name="Preferences">
|
1494
|
+
<xs:annotation>
|
1495
|
+
<xs:documentation>A container for a list of preferences of a person (e.g. seat position in flight, restuarants)</xs:documentation>
|
1496
|
+
</xs:annotation>
|
1497
|
+
<xs:complexType>
|
1498
|
+
<xs:sequence>
|
1499
|
+
<xs:element name="Preference" maxOccurs="unbounded">
|
1500
|
+
<xs:annotation>
|
1501
|
+
<xs:documentation>Preferences of the person. e.g. seat in non smoking area, holiday with family than alone</xs:documentation>
|
1502
|
+
</xs:annotation>
|
1503
|
+
<xs:complexType>
|
1504
|
+
<xs:simpleContent>
|
1505
|
+
<xs:extension base="ct:String">
|
1506
|
+
<xs:attribute name="Type" type="PreferenceTypeList">
|
1507
|
+
<xs:annotation>
|
1508
|
+
<xs:documentation>Type of preference. e.g. seating position</xs:documentation>
|
1509
|
+
</xs:annotation>
|
1510
|
+
</xs:attribute>
|
1511
|
+
<xs:attributeGroup ref="ct:grDataQuality"/>
|
1512
|
+
<xs:anyAttribute namespace="##other" processContents="lax"/>
|
1513
|
+
</xs:extension>
|
1514
|
+
</xs:simpleContent>
|
1515
|
+
</xs:complexType>
|
1516
|
+
</xs:element>
|
1517
|
+
</xs:sequence>
|
1518
|
+
<xs:anyAttribute namespace="##other" processContents="lax"/>
|
1519
|
+
</xs:complexType>
|
1520
|
+
</xs:element>
|
1521
|
+
<xs:element name="Qualifications">
|
1522
|
+
<xs:annotation>
|
1523
|
+
<xs:documentation>A container for a list of qualifications of a person</xs:documentation>
|
1524
|
+
</xs:annotation>
|
1525
|
+
<xs:complexType>
|
1526
|
+
<xs:sequence>
|
1527
|
+
<xs:element name="Qualification" maxOccurs="unbounded">
|
1528
|
+
<xs:annotation>
|
1529
|
+
<xs:documentation>Educational qualification</xs:documentation>
|
1530
|
+
</xs:annotation>
|
1531
|
+
<xs:complexType>
|
1532
|
+
<xs:sequence>
|
1533
|
+
<xs:element name="QualificationElement" minOccurs="0" maxOccurs="unbounded">
|
1534
|
+
<xs:annotation>
|
1535
|
+
<xs:documentation>Full / partial name or description of person's qualification</xs:documentation>
|
1536
|
+
</xs:annotation>
|
1537
|
+
<xs:complexType>
|
1538
|
+
<xs:simpleContent>
|
1539
|
+
<xs:extension base="ct:String">
|
1540
|
+
<xs:attribute name="Type" type="QualificationElementList">
|
1541
|
+
<xs:annotation>
|
1542
|
+
<xs:documentation>If present, specifies the type of the information provided as text value of the element.</xs:documentation>
|
1543
|
+
</xs:annotation>
|
1544
|
+
</xs:attribute>
|
1545
|
+
<xs:anyAttribute namespace="##other" processContents="lax"/>
|
1546
|
+
</xs:extension>
|
1547
|
+
</xs:simpleContent>
|
1548
|
+
</xs:complexType>
|
1549
|
+
</xs:element>
|
1550
|
+
<xs:element name="Institution" minOccurs="0">
|
1551
|
+
<xs:annotation>
|
1552
|
+
<xs:documentation>Reference to a Party element that describes the institution.</xs:documentation>
|
1553
|
+
</xs:annotation>
|
1554
|
+
<xs:complexType>
|
1555
|
+
<xs:complexContent>
|
1556
|
+
<xs:extension base="n:OrganisationNameType"/>
|
1557
|
+
</xs:complexContent>
|
1558
|
+
</xs:complexType>
|
1559
|
+
</xs:element>
|
1560
|
+
</xs:sequence>
|
1561
|
+
<xs:attribute name="Status" type="ct:StatusList">
|
1562
|
+
<xs:annotation>
|
1563
|
+
<xs:documentation>Status of the entity. e.g. Old, Current, Inactive, Active, etc</xs:documentation>
|
1564
|
+
</xs:annotation>
|
1565
|
+
</xs:attribute>
|
1566
|
+
<xs:attributeGroup ref="ct:grValidityDate"/>
|
1567
|
+
<xs:attributeGroup ref="ct:grDataQuality"/>
|
1568
|
+
<xs:anyAttribute namespace="##other" processContents="lax"/>
|
1569
|
+
</xs:complexType>
|
1570
|
+
</xs:element>
|
1571
|
+
</xs:sequence>
|
1572
|
+
<xs:anyAttribute namespace="##other" processContents="lax"/>
|
1573
|
+
</xs:complexType>
|
1574
|
+
</xs:element>
|
1575
|
+
<xs:element name="Visas">
|
1576
|
+
<xs:annotation>
|
1577
|
+
<xs:documentation>A container to define the VISAs held by a person (e.g. visitor, temporary, permanent resident, work, etc)</xs:documentation>
|
1578
|
+
</xs:annotation>
|
1579
|
+
<xs:complexType>
|
1580
|
+
<xs:sequence>
|
1581
|
+
<xs:element name="Visa" maxOccurs="unbounded">
|
1582
|
+
<xs:annotation>
|
1583
|
+
<xs:documentation>All information about Visa details.</xs:documentation>
|
1584
|
+
</xs:annotation>
|
1585
|
+
<xs:complexType>
|
1586
|
+
<xs:sequence>
|
1587
|
+
<xs:element name="VisaElement" minOccurs="0" maxOccurs="unbounded">
|
1588
|
+
<xs:annotation>
|
1589
|
+
<xs:documentation>Visa category number depending upon the type of visa. Example: H-1 for employment visa as in the USA</xs:documentation>
|
1590
|
+
</xs:annotation>
|
1591
|
+
<xs:complexType>
|
1592
|
+
<xs:simpleContent>
|
1593
|
+
<xs:extension base="ct:String">
|
1594
|
+
<xs:attribute name="Type" type="VisaElementList">
|
1595
|
+
<xs:annotation>
|
1596
|
+
<xs:documentation>If present, specifies the type of the information provided as text value of the element.</xs:documentation>
|
1597
|
+
</xs:annotation>
|
1598
|
+
</xs:attribute>
|
1599
|
+
<xs:anyAttribute namespace="##other" processContents="lax"/>
|
1600
|
+
</xs:extension>
|
1601
|
+
</xs:simpleContent>
|
1602
|
+
</xs:complexType>
|
1603
|
+
</xs:element>
|
1604
|
+
</xs:sequence>
|
1605
|
+
<xs:attribute name="Status" type="ct:StatusList">
|
1606
|
+
<xs:annotation>
|
1607
|
+
<xs:documentation>Status of the entity. e.g. Old, Current, Inactive, Active, etc</xs:documentation>
|
1608
|
+
</xs:annotation>
|
1609
|
+
</xs:attribute>
|
1610
|
+
<xs:attributeGroup ref="ct:grValidityDate"/>
|
1611
|
+
<xs:attribute name="EntryByDate" type="xs:dateTime"/>
|
1612
|
+
<xs:attributeGroup ref="ct:grDataQuality"/>
|
1613
|
+
<xs:anyAttribute namespace="##other" processContents="lax"/>
|
1614
|
+
</xs:complexType>
|
1615
|
+
</xs:element>
|
1616
|
+
</xs:sequence>
|
1617
|
+
<xs:anyAttribute namespace="##other" processContents="lax"/>
|
1618
|
+
</xs:complexType>
|
1619
|
+
</xs:element>
|
1620
|
+
<xs:element name="PartyName" type="n:PartyNameType"/>
|
1621
|
+
</xs:schema>
|