Definition Type: Element
Name: CompDetails
Namespace: http://incometaxindiaefiling.gov.in/Corpmaster
Containing Schema: ITR-6_2018_Master.xsd
Abstract
Collapse XSD Schema Diagram:
Drilldown into CompSharePercent in schema itr-6_2018_master_xsd Drilldown into AddressDetailWithZipCode in schema itr-6_2018_master_xsd Drilldown into CompPAN in schema itr-6_2018_master_xsd Drilldown into CompName in schema itr-6_2018_master_xsdXSD Diagram of CompDetails in schema itr-6_2018_master_xsd (Income Tax Department India ITR-6)
Collapse XSD Schema Code:
<xs:element name="CompDetails">
    <xs:complexType>
        <xs:sequence>
            <xs:element name="CompName">
                <xs:simpleType>
                    <xs:restriction base="nonEmptyString">
                        <xs:minLength value="1" />
                        <xs:maxLength value="125" />
                    </xs:restriction>
                </xs:simpleType>
            </xs:element>
            <xs:element name="CompPAN" minOccurs="0">
                <xs:annotation>
                    <xs:documentation>Enter Company PAN here</xs:documentation>
                </xs:annotation>
                <xs:simpleType>
                    <xs:restriction base="nonEmptyString">
                        <xs:length value="10" />
                        <xs:pattern value="[A-Z][A-Z][A-Z][A-Z][A-Z]\d\d\d\d[A-Z]" />
                    </xs:restriction>
                </xs:simpleType>
            </xs:element>
            <xs:element ref="AddressDetailWithZipCode" />
            <xs:element name="CompSharePercent" default="0" minOccurs="0">
                <xs:simpleType>
                    <xs:restriction base="xs:decimal">
                        <xs:totalDigits value="5" />
                        <xs:fractionDigits value="2" />
                        <xs:minInclusive value="0" />
                        <xs:maxInclusive value="100" />
                    </xs:restriction>
                </xs:simpleType>
            </xs:element>
        </xs:sequence>
    </xs:complexType>
</xs:element>
Collapse Child Elements:
Name Type Min Occurs Max Occurs
CompName ITRForm:CompName (1) (1)
CompPAN ITRForm:CompPAN 0 (1)
AddressDetailWithZipCode ITRForm:AddressDetailWithZipCode (1) (1)
CompSharePercent ITRForm:CompSharePercent 0 (1)