diff options
-rw-r--r-- | schemas/clients.xsd | 9 |
1 files changed, 8 insertions, 1 deletions
diff --git a/schemas/clients.xsd b/schemas/clients.xsd index 8e45ab191..4ea533847 100644 --- a/schemas/clients.xsd +++ b/schemas/clients.xsd @@ -9,6 +9,13 @@ </xsd:annotation> <xsd:complexType name='ClientType'> + <xsd:choice minOccurs='0' maxOccurs='unbounded'> + <xsd:element name='Alias'> + <xsd:complexType> + <xsd:attribute type='xsd:string' name='name' use='required'/> + </xsd:complexType> + </xsd:element> + </xsd:choice> <xsd:attribute type='xsd:string' name='name' use='required'/> <xsd:attribute type='xsd:string' name='profile' use='required'/> <xsd:attribute type='xsd:string' name='pingable' use='required'/> @@ -23,4 +30,4 @@ <xsd:attribute name='version' type='xsd:string'/> </xsd:complexType> </xsd:element> -</xsd:schema>
\ No newline at end of file +</xsd:schema> |