|
Namespace |
No namespace |
Diagram
|
|
Type |
restriction of xs:string |
Facets
|
minLength |
2 |
|
maxLength |
2 |
|
pattern |
[a-z]{2,2}|[A-Z]{2,2} |
|
|
Used by
|
Elements |
AddressRecord/CountryCode, DocumentSubsidiaryRecord/CountryCode, Header/ReceiverCountryCode, Header/SenderCountryCode, PackageDepositRecord/DepositCountry, ProductActivityDetailRecord/CountryOfActivity, ProductActivityInfoRecord/CountryOfOrigin, RoamingListEntryRecord/CountryCode, StatusRecord/DocumentReceiverCountryCode, TargetMarketInfoRecord/TargetMarketCountryCode, TransportInfoRecord/CargoCountryCode, TransportInfoRecord/CarrierCountryCode |
|
Source
|
<xs:simpleType name="CountryCodeType">
<xs:restriction base="xs:string">
<xs:minLength value="2"/>
<xs:maxLength value="2"/>
<xs:pattern value="[a-z]{2,2}|[A-Z]{2,2}"/>
</xs:restriction>
</xs:simpleType>
|
|
|
|