diff options
Diffstat (limited to 'schemas/clients.xsd')
-rw-r--r-- | schemas/clients.xsd | 9 |
1 files changed, 6 insertions, 3 deletions
diff --git a/schemas/clients.xsd b/schemas/clients.xsd index 0a9ce5202..56f458a45 100644 --- a/schemas/clients.xsd +++ b/schemas/clients.xsd @@ -1,19 +1,21 @@ <xsd:schema xmlns:xsd="http://www.w3.org/2001/XMLSchema" xml:lang="en"> - + <xsd:annotation> <xsd:documentation> client schema for bcfg2 Narayan Desai, Argonne National Laboratory - $Id$ </xsd:documentation> </xsd:annotation> + <xsd:import namespace="http://www.w3.org/XML/1998/namespace" + schemaLocation="xml.xsd"/> + <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:attribute type='xsd:string' name='address'/> + <xsd:attribute type='xsd:string' name='address'/> </xsd:complexType> </xsd:element> </xsd:choice> @@ -35,6 +37,7 @@ <xsd:element name='Clients' type='ClientsType'/> </xsd:choice> <xsd:attribute name='version' type='xsd:string'/> + <xsd:attribute ref="xml:base"/> </xsd:complexType> <xsd:element name='Clients' type='ClientsType'/> |