summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJorge L. Williams <jorge.williams@rackspace.com>2011-04-15 00:00:03 -0500
committerJorge L. Williams <jorge.williams@rackspace.com>2011-04-15 00:00:03 -0500
commitf2279dcd8aaeb5bd4259e993bd1b8c879435eb75 (patch)
treec53dba9d98e1c7a7f05accfc56bec244fe8809b0
parent504ce828c7023e6221c50a7a252675f3fa044e0b (diff)
downloadkeystone-f2279dcd8aaeb5bd4259e993bd1b8c879435eb75.tar.gz
keystone-f2279dcd8aaeb5bd4259e993bd1b8c879435eb75.tar.xz
keystone-f2279dcd8aaeb5bd4259e993bd1b8c879435eb75.zip
Initial tenant xsd.
-rw-r--r--docs/guide/src/docbkx/xsd/tenant.xsd29
1 files changed, 29 insertions, 0 deletions
diff --git a/docs/guide/src/docbkx/xsd/tenant.xsd b/docs/guide/src/docbkx/xsd/tenant.xsd
new file mode 100644
index 00000000..9e09decb
--- /dev/null
+++ b/docs/guide/src/docbkx/xsd/tenant.xsd
@@ -0,0 +1,29 @@
+<?xml version="1.0" encoding="UTF-8"?>
+
+<schema
+ elementFormDefault="qualified"
+ attributeFormDefault="unqualified"
+ xmlns="http://www.w3.org/2001/XMLSchema"
+ xmlns:idm="http://docs.openstack.org/idm/api/v1.0"
+ xmlns:xsd="http://www.w3.org/2001/XMLSchema"
+ targetNamespace="http://docs.openstack.org/idm/api/v1.0"
+>
+ <!-- Elements -->
+ <element name="tenant" type="idm:Tenant" />
+ <element name="tenants" type="idm:Tenants" />
+
+ <!-- Complex Types -->
+ <complexType name="Tenants">
+ <sequence>
+ <element name="tenant" type="idm:Tenant" maxOccurs="1000"/>
+ </sequence>
+ </complexType>
+
+ <complexType name="Tenant">
+ <sequence>
+ <element name="description" type="xsd:string"/>
+ </sequence>
+ <attribute name="enabled" type="xsd:boolean" use="optional" default="true"/>
+ <attribute name="id" type="xsd:string" use="required"/>
+ </complexType>
+</schema>