diff options
| author | Yogeshwar Srikrishnan <yoga80@yahoo.com> | 2011-05-23 17:59:39 -0500 |
|---|---|---|
| committer | Yogeshwar Srikrishnan <yoga80@yahoo.com> | 2011-05-23 17:59:39 -0500 |
| commit | 80a286d80331733382f51cc9e478bf7432fcac36 (patch) | |
| tree | b6ad01fef41cdc8f33f5d978570b80beae9d8843 /docs/guide | |
| parent | 42f63b91a7387c6f884386dd7899c376898867af (diff) | |
Changes to support /Roles calls.Description included.
Diffstat (limited to 'docs/guide')
| -rw-r--r-- | docs/guide/src/docbkx/samples/roles.json | 4 | ||||
| -rw-r--r-- | docs/guide/src/docbkx/samples/roles.xml | 4 | ||||
| -rw-r--r-- | docs/guide/src/docbkx/xsd/roles.xsd | 2 |
3 files changed, 5 insertions, 5 deletions
diff --git a/docs/guide/src/docbkx/samples/roles.json b/docs/guide/src/docbkx/samples/roles.json index 091ecbe8..5d5636ea 100644 --- a/docs/guide/src/docbkx/samples/roles.json +++ b/docs/guide/src/docbkx/samples/roles.json @@ -2,11 +2,11 @@ "roles" : [ { "id" : 1, - "serviceName" : "cloudFiles" + "description" : "cloudFiles" }, { "id" : 2, - "serviceName" : "cloudFiles" + "description" : "cloudFiles" }, ] } diff --git a/docs/guide/src/docbkx/samples/roles.xml b/docs/guide/src/docbkx/samples/roles.xml index 89ba8d73..53fbdf73 100644 --- a/docs/guide/src/docbkx/samples/roles.xml +++ b/docs/guide/src/docbkx/samples/roles.xml @@ -1,6 +1,6 @@ <?xml version="1.0" encoding="UTF-8"?> <roles xmlns="http://docs.openstack.org/identity/api/v2.0"> - <role id="4" serviceName="cloudFilesCDN" /> - <role id="5" serviceName="cloudServers" /> + <role id="4" description="cloudFilesCDN" /> + <role id="5" description="cloudServers" /> </roles>
\ No newline at end of file diff --git a/docs/guide/src/docbkx/xsd/roles.xsd b/docs/guide/src/docbkx/xsd/roles.xsd index 1bcd2cda..6f8cc207 100644 --- a/docs/guide/src/docbkx/xsd/roles.xsd +++ b/docs/guide/src/docbkx/xsd/roles.xsd @@ -62,7 +62,7 @@ <!-- Complex Types --> <complexType name="Role"> <attribute name="id" type="xsd:string" use="required"/> - <attribute name="service" type="xsd:string" use="optional"/> + <attribute name="description" type="xsd:string" use="optional"/> </complexType> <complexType name="RoleList"> |
