diff options
Diffstat (limited to 'src/main/resources/wsdl/mandate/PostalAddress-1_2.xsd')
-rw-r--r-- | src/main/resources/wsdl/mandate/PostalAddress-1_2.xsd | 95 |
1 files changed, 95 insertions, 0 deletions
diff --git a/src/main/resources/wsdl/mandate/PostalAddress-1_2.xsd b/src/main/resources/wsdl/mandate/PostalAddress-1_2.xsd new file mode 100644 index 0000000..2203ede --- /dev/null +++ b/src/main/resources/wsdl/mandate/PostalAddress-1_2.xsd @@ -0,0 +1,95 @@ +<?xml version="1.0" encoding="UTF-8"?> +<!-- CHANGES from original HR-XML schema for use with PersonData.xsd: + * elementFormDefault set to "qualified" + * CountryCode set to minOccurs="0" --> +<!-- +"Copyright The HR-XML Consortium. All Rights Reserved. http://www.hr-xml.org" +Name: PostalAddress-1_2.xsd +Status: Recommendation +Date this version: 2001-08-20 +Date last version: 2001-07-20 +Purpose: Defines the schema for Postal Address +Author(s): Paul Kiel, Kim Bartkus, CPO Workgroup + +This HR-XML Consortium Work (including specifications, documents, +software, and related items) is provided by the copyright holders +under the following license. By obtaining, using and/or copying +this work, you (the licensee) agree that you have read, understood, +and will comply with the following terms and conditions. + +Permission to use, copy, modify, or redistribute this Work and +its documentation, with or without modification, for any purpose +and without fee or royalty is hereby granted, provided that you +include the following on ALL copies of the software and +documentation or portions thereof, including modifications, +that you make: + +1. This notice: "Copyright The HR-XML Consortium. All Rights + Reserved. http://www.hr-xml.org" +2. Notice of any changes or modifications to the The HR-XML + Consortium files. + +THIS WORK, INCLUDING SPECIFICATIONS, DOCUMENTS, SOFTWARE, OR OTHER +RELATED ITEMS, IS PROVIDED "AS IS," AND COPYRIGHT HOLDERS MAKE NO +REPRESENTATIONS OR WARRANTIES, EXPRESS OR IMPLIED, INCLUDING BUT +NOT LIMITED TO, WARRANTIES OF MERCHANTABILITY OR FITNESS FOR ANY +PARTICULAR PURPOSE OR THAT THE USE OF THE SOFTWARE OR DOCUMENTATION +WILL NOT INFRINGE ANY THIRD PARTY PATENTS, COPYRIGHTS, TRADEMARKS +OR OTHER RIGHTS. + +COPYRIGHT HOLDERS WILL NOT BE LIABLE FOR ANY DIRECT, INDIRECT, +SPECIAL OR CONSEQUENTIAL DAMAGES ARISING OUT OF ANY USE OF THE +SOFTWARE OR DOCUMENTATION. + +TITLE TO COPYRIGHT IN THIS WORK AND ANY ASSOCIATED DOCUMENTATION +WILL AT ALL TIMES REMAIN WITH COPYRIGHT HOLDERS. +--> +<xsd:schema xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema" elementFormDefault="qualified" attributeFormDefault="unqualified"> + <xsd:include schemaLocation="PersonName-1_2.xsd"/> + <xsd:complexType name="PostalAddressType"> + <xsd:sequence> + <xsd:element name="CountryCode" minOccurs="0"> + <xsd:simpleType> + <xsd:restriction base="xsd:string"> + <xsd:pattern value="[A-Z]{2}"/> + </xsd:restriction> + </xsd:simpleType> + </xsd:element> + <xsd:element name="PostalCode" type="xsd:string" minOccurs="0"/> + <xsd:element name="Region" type="xsd:string" minOccurs="0" maxOccurs="unbounded"/> + <xsd:element name="Municipality" type="xsd:string" minOccurs="0"/> + <xsd:element name="DeliveryAddress" minOccurs="0"> + <xsd:complexType> + <xsd:sequence> + <xsd:element name="AddressLine" type="xsd:string" minOccurs="0" maxOccurs="unbounded"/> + <xsd:element name="StreetName" type="xsd:string" minOccurs="0"/> + <xsd:element name="BuildingNumber" type="xsd:string" minOccurs="0"/> + <xsd:element name="Unit" type="xsd:string" minOccurs="0"/> + <xsd:element name="PostOfficeBox" type="xsd:string" minOccurs="0"/> + </xsd:sequence> + </xsd:complexType> + </xsd:element> + <xsd:element name="Recipient" minOccurs="0" maxOccurs="unbounded"> + <xsd:complexType> + <xsd:sequence> + <xsd:element name="PersonName" type="PersonNameType" minOccurs="0"/> + <xsd:element name="AdditionalText" type="xsd:string" minOccurs="0" maxOccurs="unbounded"/> + <xsd:element name="Organization" type="xsd:string" minOccurs="0"/> + <xsd:element name="OrganizationName" type="xsd:string" minOccurs="0"/> + </xsd:sequence> + </xsd:complexType> + </xsd:element> + </xsd:sequence> + <xsd:attribute name="type" default="undefined"> + <xsd:simpleType> + <xsd:restriction base="xsd:string"> + <xsd:enumeration value="postOfficeBoxAddress"/> + <xsd:enumeration value="streetAddress"/> + <xsd:enumeration value="militaryAddress"/> + <xsd:enumeration value="undefined"/> + </xsd:restriction> + </xsd:simpleType> + </xsd:attribute> + </xsd:complexType> + <xsd:element name="PostalAddress" type="PostalAddressType"/> +</xsd:schema> |