diff options
| author | Alex Meade <alex.meade@rackspace.com> | 2011-08-25 15:12:34 -0400 |
|---|---|---|
| committer | Alex Meade <alex.meade@rackspace.com> | 2011-08-25 15:12:34 -0400 |
| commit | 8e712b30911956531e346723fbbcaaa49f166ab7 (patch) | |
| tree | 6a440e48c82212bb389f150692902e6fc0bb1f46 /nova/api | |
| parent | bed249069e2770d1248ab9ef89751c15be8a13d6 (diff) | |
| download | nova-8e712b30911956531e346723fbbcaaa49f166ab7.tar.gz nova-8e712b30911956531e346723fbbcaaa49f166ab7.tar.xz nova-8e712b30911956531e346723fbbcaaa49f166ab7.zip | |
Added addresses schema
Diffstat (limited to 'nova/api')
| -rw-r--r-- | nova/api/openstack/schemas/v1.1/addresses.rng | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/nova/api/openstack/schemas/v1.1/addresses.rng b/nova/api/openstack/schemas/v1.1/addresses.rng new file mode 100644 index 000000000..b498e8a63 --- /dev/null +++ b/nova/api/openstack/schemas/v1.1/addresses.rng @@ -0,0 +1,14 @@ +<element name="addresses" ns="http://docs.openstack.org/compute/api/v1.1" + xmlns="http://relaxng.org/ns/structure/1.0"> + <zeroOrMore> + <element name="network"> + <attribute name="id"> <text/> </attribute> + <zeroOrMore> + <element name="ip"> + <attribute name="version"> <text/> </attribute> + <attribute name="addr"> <text/> </attribute> + </element> + </zeroOrMore> + </element> + </zeroOrMore> +</element> |
