Partager via


2.2.4.6 hostNameType

The schema definition for the hostNameType data type is as follows:

<xs:simpleType name="hostNameType">
    <xs:restriction base="xs:string">
       <xs:pattern value="[a-zA-Z0-9_\-\.]*" />
       <xs:maxLength value="255"/>
    </xs:restriction>
 </xs:simpleType>

The hostNameType data type is a string type with a length restriction of 255 characters and the pattern of characters adhering to the regular expression defined previously in the schema.