( zolti | 2021. 02. 19., p – 10:10 )

Az xml-ben csak az országkód van benne.

base.xsd

<xs:complexType name="DetailedAddressType">
  <xs:annotation>
    <xs:documentation xml:lang="hu">Részletes címadatok</xs:documentation>
    <xs:documentation xml:lang="en">Detailed address data</xs:documentation>
  </xs:annotation>
  <xs:sequence>
    <xs:element name="countryCode" type="common:CountryCodeType">
      <xs:annotation>
        <xs:documentation xml:lang="hu">Az országkód ISO 3166 alpha-2 szabvány szerint</xs:documentation>
        <xs:documentation xml:lang="en">ISO 3166 alpha-2 country code</xs:documentation>
      </xs:annotation>
    </xs:element>
...

common.xsd

<xs:simpleType name="CountryCodeType">
  <xs:annotation>
    <xs:documentation xml:lang="hu">Országkód típus ISO 3166 alpha-2 szabvány szerint</xs:documentation>
  <xs:documentation xml:lang="en">Country code type (ISO 3166 alpha-2)</xs:documentation>
  </xs:annotation>
  <xs:restriction base="AtomicStringType2">
    <xs:length value="2"/>
    <xs:pattern value="[A-Z]{2}"/>
  </xs:restriction>
</xs:simpleType>

 

Most már végképp nem értem, hogy minek neked az ország neve ? Eddig azt hittem te fejlesztesz valamit és nem akarod az usernek az angol neveket mutatni.