diff options
| author | Jorge L. Williams <jorge.williams@rackspace.com> | 2011-04-15 00:03:42 -0500 |
|---|---|---|
| committer | Jorge L. Williams <jorge.williams@rackspace.com> | 2011-04-15 00:03:42 -0500 |
| commit | 2530aaa1f637af8d960b39626626a749c9a6ee04 (patch) | |
| tree | 55b59b2c5a0d3408180dd7270a8731d1e2cb54d9 /docs | |
| parent | f2279dcd8aaeb5bd4259e993bd1b8c879435eb75 (diff) | |
Made the tenant xsd extensible.
Diffstat (limited to 'docs')
| -rw-r--r-- | docs/guide/src/docbkx/xsd/tenant.xsd | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/docs/guide/src/docbkx/xsd/tenant.xsd b/docs/guide/src/docbkx/xsd/tenant.xsd index 9e09decb..ed1aaad2 100644 --- a/docs/guide/src/docbkx/xsd/tenant.xsd +++ b/docs/guide/src/docbkx/xsd/tenant.xsd @@ -16,14 +16,18 @@ <complexType name="Tenants"> <sequence> <element name="tenant" type="idm:Tenant" maxOccurs="1000"/> + <any namespace="##other" processContents="lax" minOccurs="0" maxOccurs="unbounded" /> </sequence> + <anyAttribute namespace="##other" processContents="lax"/> </complexType> <complexType name="Tenant"> <sequence> <element name="description" type="xsd:string"/> + <any namespace="##other" processContents="lax" minOccurs="0" maxOccurs="unbounded" /> </sequence> <attribute name="enabled" type="xsd:boolean" use="optional" default="true"/> - <attribute name="id" type="xsd:string" use="required"/> + <attribute name="id" type="xsd:string" use="optional"/> + <anyAttribute namespace="##other" processContents="lax"/> </complexType> </schema> |
