Endorsement

<xs:complexType name="ServiceconfigurationEndorsement">
        <xs:attribute name="active" use="required">
            <xs:annotation>
                <xs:documentation>Indicates, if the option is on/off</xs:documentation>
            </xs:annotation>
            <xs:simpleType>
                <xs:restriction base="xs:string">
                    <xs:enumeration value="0"/>
                    <xs:enumeration value="1"/>
                </xs:restriction>
            </xs:simpleType>
        </xs:attribute>
        <xs:attribute name="type" use="required">
            <xs:annotation>
                <xs:documentation>
                    Service endorsement is used to specify handling if recipient not met
                    There are the following types are allowed:
                    For Germany:
                    SOZU (Return immediately),
                    ZWZU (2nd attempt of Delivery);
                    for International:
                    IMMEDIATE (Sending back immediately to sender),
                    AFTER_DEADLINE (Sending back immediately to sender after expiration of time),
                    ABANDONMENT (Abandonment of parcel at the hands of sender (free of charge))
                </xs:documentation>
            </xs:annotation>
            <xs:simpleType>
                <xs:restriction base="xs:string">
                    <xs:enumeration value="SOZU"/>
                    <xs:enumeration value="ZWZU"/>
                    <xs:enumeration value="IMMEDIATE"/>
                    <xs:enumeration value="AFTER_DEADLINE"/>
                    <xs:enumeration value="ABANDONMENT"/>
                </xs:restriction>
            </xs:simpleType>
        </xs:attribute>
    </xs:complexType>