| attribute form default: | unqualified |
| element form default: | qualified |
| Elements |
| User |
| attribute form default: | unqualified |
| element form default: | qualified |
| Simple types |
| EmptyType |
| IpAddressType |
| PasswordType |
| VersionType |
| diagram | ![]() |
| children | FullName Password Description |
| source | <xs:element name="User"> <xs:annotation> <xs:documentation>User</xs:documentation> </xs:annotation> <xs:complexType> <xs:sequence> <xs:element name="FullName" type="xs:string"> <xs:annotation> <xs:documentation>User full name</xs:documentation> </xs:annotation> </xs:element> <xs:element name="Password" type="PasswordType"> <xs:annotation> <xs:documentation>User password (storage format only, not visible externally)</xs:documentation> </xs:annotation> </xs:element> <xs:element name="Description" type="xs:string"> <xs:annotation> <xs:documentation>User description</xs:documentation> </xs:annotation> </xs:element> </xs:sequence> </xs:complexType> </xs:element> |
| diagram | |
| type | xs:string |
| source | <xs:element name="FullName" type="xs:string"> <xs:annotation> <xs:documentation>User full name</xs:documentation> </xs:annotation> </xs:element> |
| diagram | ![]() |
| type | PasswordType |
| source | <xs:element name="Password" type="PasswordType"> <xs:annotation> <xs:documentation>User password (storage format only, not visible externally)</xs:documentation> </xs:annotation> </xs:element> |
| diagram | |
| type | xs:string |
| source | <xs:element name="Description" type="xs:string"> <xs:annotation> <xs:documentation>User description</xs:documentation> </xs:annotation> </xs:element> |
| type | restriction of xs:token | ||
| used by |
|
||
| facets |
|
||
| source | <xs:simpleType name="EmptyType"> <xs:restriction base="xs:token"> <xs:enumeration value=""/> </xs:restriction> </xs:simpleType> |
| type | restriction of xs:string | ||
| facets |
|
||
| source | <xs:simpleType name="IpAddressType"> <xs:restriction base="xs:string"> <xs:pattern value="\d+\.\d+\.\d+.\d+"/> </xs:restriction> </xs:simpleType> |
| type | union of (EmptyType, restriction of xs:hexBinary) | ||
| used by |
|
||
| source | <xs:simpleType name="PasswordType"> <xs:union memberTypes="EmptyType"> <xs:simpleType> <xs:restriction base="xs:hexBinary"> <xs:minLength value="8"/> </xs:restriction> </xs:simpleType> </xs:union> </xs:simpleType> |
| type | restriction of xs:string | ||
| facets |
|
||
| source | <xs:simpleType name="VersionType"> <xs:restriction base="xs:string"> <xs:pattern value="\d+\.\d+\.\d+"/> </xs:restriction> </xs:simpleType> |