Updated the XSD schema

This commit is contained in:
Christophe Coevoet 2011-02-24 02:26:57 +01:00
parent 477109f1e8
commit 0d0f053682

View File

@ -33,27 +33,15 @@
</xsd:attributeGroup> </xsd:attributeGroup>
<xsd:complexType name="dbal"> <xsd:complexType name="dbal">
<xsd:all> <xsd:choice minOccurs="0" maxOccurs="unbounded">
<xsd:element name="connections" type="connections" minOccurs="0" maxOccurs="1" /> <xsd:element name="connection" type="connection" />
<xsd:element name="types" type="types" minOccurs="0" maxOccurs="1" /> <xsd:element name="type" type="type" />
</xsd:all> </xsd:choice>
<xsd:attribute name="default-connection" type="xsd:string" /> <xsd:attribute name="default-connection" type="xsd:string" />
<xsd:attributeGroup ref="connection-config" /> <xsd:attributeGroup ref="connection-config" />
</xsd:complexType> </xsd:complexType>
<xsd:complexType name="connections">
<xsd:choice minOccurs="1" maxOccurs="unbounded">
<xsd:element name="connection" type="connection" />
</xsd:choice>
</xsd:complexType>
<xsd:complexType name="types">
<xsd:choice minOccurs="1" maxOccurs="unbounded">
<xsd:element name="type" type="type" />
</xsd:choice>
</xsd:complexType>
<xsd:complexType name="type"> <xsd:complexType name="type">
<xsd:attribute name="name" type="xsd:string" use="required" /> <xsd:attribute name="name" type="xsd:string" use="required" />
<xsd:attribute name="class" type="xsd:string" use="required" /> <xsd:attribute name="class" type="xsd:string" use="required" />
@ -73,18 +61,12 @@
<xsd:attribute name="is-bundle" type="xsd:boolean" /> <xsd:attribute name="is-bundle" type="xsd:boolean" />
</xsd:complexType> </xsd:complexType>
<xsd:complexType name="mappings">
<xsd:choice minOccurs="1" maxOccurs="unbounded">
<xsd:element name="mapping" type="mapping" />
</xsd:choice>
</xsd:complexType>
<xsd:complexType name="orm"> <xsd:complexType name="orm">
<xsd:all> <xsd:choice minOccurs="0" maxOccurs="unbounded">
<xsd:element name="entity-managers" type="entity_managers" minOccurs="0" maxOccurs="1" /> <xsd:element name="entity-manager" type="entity_manager" />
<xsd:element name="mappings" type="mappings" minOccurs="0" maxOccurs="1" /> <xsd:element name="mapping" type="mapping" />
<xsd:element name="metadata-cache-driver" type="metadata_cache_driver" minOccurs="0" maxOccurs="1" /> <xsd:element name="metadata-cache-driver" type="metadata_cache_driver" minOccurs="0" maxOccurs="1" />
</xsd:all> </xsd:choice>
<xsd:attribute name="default-entity-manager" type="xsd:string" /> <xsd:attribute name="default-entity-manager" type="xsd:string" />
<xsd:attribute name="default-connection" type="xsd:string" /> <xsd:attribute name="default-connection" type="xsd:string" />
@ -106,17 +88,11 @@
<xsd:attribute name="type" type="xsd:string" /> <xsd:attribute name="type" type="xsd:string" />
</xsd:complexType> </xsd:complexType>
<xsd:complexType name="entity_managers">
<xsd:choice minOccurs="1" maxOccurs="unbounded">
<xsd:element name="entity-manager" type="entity_manager" />
</xsd:choice>
</xsd:complexType>
<xsd:complexType name="entity_manager"> <xsd:complexType name="entity_manager">
<xsd:all> <xsd:choice minOccurs="0" maxOccurs="unbounded">
<xsd:element name="mappings" type="mappings" minOccurs="0" maxOccurs="1" /> <xsd:element name="mapping" type="mapping" />
<xsd:element name="metadata-cache-driver" type="metadata_cache_driver" minOccurs="0" maxOccurs="1" /> <xsd:element name="metadata-cache-driver" type="metadata_cache_driver" minOccurs="0" maxOccurs="1" />
</xsd:all> </xsd:choice>
<xsd:attribute name="connection" type="xsd:string" /> <xsd:attribute name="connection" type="xsd:string" />
<xsd:attribute name="name" type="xsd:string" /> <xsd:attribute name="name" type="xsd:string" />