Definition Type: Element
Name: AddressDetailWithZipCode
Namespace: http://incometaxindiaefiling.gov.in/Corpmaster
Containing Schema: ITR-5_2018_Master.xsd
Abstract
Collapse XSD Schema Diagram:
Drilldown into ZipCode in schema itr-5_2018_master_xsd Drilldown into PinCode in schema itr-5_2018_master_xsd Drilldown into CountryCode in schema itr-5_2018_master_xsd Drilldown into StateCode in schema itr-5_2018_master_xsd Drilldown into CityOrTownOrDistrict in schema itr-5_2018_master_xsd Drilldown into AddrDetail in schema itr-5_2018_master_xsdXSD Diagram of AddressDetailWithZipCode in schema itr-5_2018_master_xsd (Income Tax Department India ITR-5)
Collapse XSD Schema Code:
<xs:element name="AddressDetailWithZipCode">
    <xs:complexType>
        <xs:sequence>
            <xs:element name="AddrDetail">
                <xs:simpleType>
                    <xs:restriction base="nonEmptyString">
                        <xs:maxLength value="200" />
                    </xs:restriction>
                </xs:simpleType>
            </xs:element>
            <xs:element name="CityOrTownOrDistrict">
                <xs:simpleType>
                    <xs:restriction base="nonEmptyString">
                        <xs:minLength value="1" />
                        <xs:maxLength value="50" />
                    </xs:restriction>
                </xs:simpleType>
            </xs:element>
            <xs:element ref="StateCode" />
            <xs:element ref="CountryCode" />
            <xs:element name="PinCode" minOccurs="0">
                <xs:simpleType>
                    <xs:restriction base="xs:unsignedLong">
                        <xs:totalDigits value="6" />
                        <xs:pattern value="[1-9]{1}[0-9]{5}" />
                    </xs:restriction>
                </xs:simpleType>
            </xs:element>
            <xs:element name="ZipCode" minOccurs="0">
                <xs:simpleType>
                    <xs:restriction base="nonEmptyString">
                        <xs:maxLength value="8" />
                    </xs:restriction>
                </xs:simpleType>
            </xs:element>
        </xs:sequence>
    </xs:complexType>
</xs:element>
Collapse Child Elements:
Name Type Min Occurs Max Occurs
AddrDetail ITRForm:AddrDetail (1) (1)
CityOrTownOrDistrict ITRForm:CityOrTownOrDistrict (1) (1)
StateCode ITRForm:StateCode (1) (1)
CountryCode ITRForm:CountryCode (1) (1)
PinCode ITRForm:PinCode 0 (1)
ZipCode ITRForm:ZipCode 0 (1)