~ubuntu-branches/ubuntu/precise/keystone/precise-security

« back to all changes in this revision

Viewing changes to keystone/content/admin/xsd/RAX-KSADM-credentials.xsd

  • Committer: Bazaar Package Importer
  • Author(s): Chuck Short
  • Date: 2011-08-23 10:18:22 UTC
  • Revision ID: james.westby@ubuntu.com-20110823101822-enve6zceb3lqhuvj
Tags: upstream-1.0~d4~20110823.1078
ImportĀ upstreamĀ versionĀ 1.0~d4~20110823.1078

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
<?xml version="1.0" encoding="UTF-8"?>
 
2
<?xml-stylesheet type="text/xsl" href="../xslt/schema.xslt"?>
 
3
 
 
4
<schema
 
5
    elementFormDefault="qualified"
 
6
    attributeFormDefault="unqualified"
 
7
    xmlns="http://www.w3.org/2001/XMLSchema"
 
8
    xmlns:identity="http://docs.openstack.org/identity/api/v2.0"
 
9
    xmlns:RAX-KSADM="http://docs.rackspace.com/identity/api/ext/RAX-KSADM/v1.0"
 
10
    xmlns:xsd="http://www.w3.org/2001/XMLSchema"
 
11
    xmlns:vc="http://www.w3.org/2007/XMLSchema-versioning"
 
12
    xmlns:xsdxt="http://docs.rackspacecloud.com/xsd-ext/v1.0"
 
13
    xmlns:atom="http://www.w3.org/2005/Atom"
 
14
    targetNamespace="http://docs.rackspace.com/identity/api/ext/RAX-KSADM/v1.0"
 
15
    >
 
16
    <!--Import schema we are extending -->
 
17
    <import namespace="http://docs.openstack.org/identity/api/v2.0"
 
18
        schemaLocation="credentials.xsd"/>
 
19
    
 
20
    <!-- Elements -->
 
21
    <element name="apikeyCredentials" type="RAX-KSADM:apiKeyCredentials"/>
 
22
    
 
23
    <!-- Complex Types -->
 
24
    <complexType name="apiKeyCredentials">
 
25
        <complexContent>
 
26
            <extension base="identity:CredentialType">
 
27
                <attribute name="APIKey" type="xsd:string" use="required" ></attribute>
 
28
            </extension>
 
29
        </complexContent>
 
30
        
 
31
    </complexType>
 
32
    
 
33
</schema>
 
34