blob: f230d30652e92d40e52a801da62f03ec4b17045b [file] [log] [blame]
Jason M. Billsea4aa752018-06-05 13:29:11 -07001<?xml version="1.0" encoding="UTF-8"?>
2<!---->
3<!--################################################################################ -->
Ed Tanous530520e2019-01-02 13:41:37 -08004<!--# Redfish Schema: Zone v1.2.1-->
Jason M. Billsea4aa752018-06-05 13:29:11 -07005<!--# -->
6<!--# For a detailed change log, see the README file contained in the DSP8010 bundle, -->
7<!--# available at http://www.dmtf.org/standards/redfish -->
Ed Tanous530520e2019-01-02 13:41:37 -08008<!--# Copyright 2014-2018 DMTF. -->
Jason M. Billsea4aa752018-06-05 13:29:11 -07009<!--# For the full DMTF copyright policy, see http://www.dmtf.org/about/policies/copyright -->
10<!--################################################################################ -->
11<!---->
12<edmx:Edmx xmlns:edmx="http://docs.oasis-open.org/odata/ns/edmx" Version="4.0">
13
14 <edmx:Reference Uri="http://docs.oasis-open.org/odata/odata/v4.0/errata03/csd01/complete/vocabularies/Org.OData.Core.V1.xml">
15 <edmx:Include Namespace="Org.OData.Core.V1" Alias="OData"/>
16 </edmx:Reference>
Ed Tanous530520e2019-01-02 13:41:37 -080017 <edmx:Reference Uri="http://docs.oasis-open.org/odata/odata/v4.0/errata03/csd01/complete/vocabularies/Org.OData.Capabilities.V1.xml">
18 <edmx:Include Namespace="Org.OData.Capabilities.V1" Alias="Capabilities"/>
19 </edmx:Reference>
Jason M. Billsea4aa752018-06-05 13:29:11 -070020 <edmx:Reference Uri="http://redfish.dmtf.org/schemas/v1/Resource_v1.xml">
21 <edmx:Include Namespace="Resource"/>
22 <edmx:Include Namespace="Resource.v1_0_0"/>
23 </edmx:Reference>
24 <edmx:Reference Uri="http://redfish.dmtf.org/schemas/v1/RedfishExtensions_v1.xml">
25 <edmx:Include Namespace="RedfishExtensions.v1_0_0" Alias="Redfish"/>
26 </edmx:Reference>
27 <edmx:Reference Uri="http://redfish.dmtf.org/schemas/v1/Switch_v1.xml">
28 <edmx:Include Namespace="Switch"/>
29 </edmx:Reference>
30 <edmx:Reference Uri="http://redfish.dmtf.org/schemas/v1/Endpoint_v1.xml">
31 <edmx:Include Namespace="Endpoint"/>
32 </edmx:Reference>
33 <edmx:Reference Uri="http://redfish.dmtf.org/schemas/v1/ResourceBlock_v1.xml">
34 <edmx:Include Namespace="ResourceBlock"/>
35 </edmx:Reference>
36
37 <edmx:DataServices>
38
39 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Zone">
40 <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
41
42 <EntityType Name="Zone" BaseType="Resource.v1_0_0.Resource" Abstract="true">
43 <Annotation Term="OData.Description" String="The Zone schema represents a fabric zone."/>
44 <Annotation Term="OData.LongDescription" String="This resource shall be used to represent a simple zone for a Redfish implementation."/>
Ed Tanous530520e2019-01-02 13:41:37 -080045 <Annotation Term="Capabilities.InsertRestrictions">
46 <Record>
47 <PropertyValue Property="Insertable" Bool="false"/>
48 </Record>
49 </Annotation>
50 <Annotation Term="Capabilities.UpdateRestrictions">
51 <Record>
52 <PropertyValue Property="Updatable" Bool="false"/>
53 </Record>
54 </Annotation>
55 <Annotation Term="Capabilities.DeleteRestrictions">
56 <Record>
57 <PropertyValue Property="Deletable" Bool="false"/>
58 </Record>
59 </Annotation>
60 <Annotation Term="Redfish.Uris">
61 <Collection>
62 <String>/redfish/v1/Fabrics/{FabricId}/Zones/{ZoneId}</String>
63 <String>/redfish/v1/CompositionService/ResourceZones/{ZoneId}</String>
64 </Collection>
65 </Annotation>
Jason M. Billsea4aa752018-06-05 13:29:11 -070066 </EntityType>
67
68 </Schema>
69
70 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Zone.v1_0_0">
71 <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
Marri Devender Raod45d2d02019-01-21 10:11:34 -060072 <Annotation Term="Redfish.Release" String="2016.2"/>
Jason M. Billsea4aa752018-06-05 13:29:11 -070073
74 <EntityType Name="Zone" BaseType="Zone.Zone">
Ed Tanous530520e2019-01-02 13:41:37 -080075 <Property Name="Status" Type="Resource.Status" Nullable="false">
76 <Annotation Term="OData.Description" String="This property describes the status and health of the resource and its children."/>
77 <Annotation Term="OData.LongDescription" String="This property shall contain any status or health properties of the resource."/>
78 </Property>
Jason M. Billsea4aa752018-06-05 13:29:11 -070079 <Property Name="Links" Type="Zone.v1_0_0.Links" Nullable="false">
80 <Annotation Term="OData.Description" String="Contains references to other resources that are related to this resource."/>
81 <Annotation Term="OData.LongDescription" String="The Links property, as described by the Redfish Specification, shall contain references to resources that are related to, but not contained by (subordinate to), this resource."/>
82 </Property>
83 </EntityType>
84
85 <ComplexType Name="Links" BaseType="Resource.Links">
86 <Annotation Term="OData.Description" String="Contains references to other resources that are related to this resource."/>
87 <Annotation Term="OData.LongDescription" String="This type, as described by the Redfish Specification, shall contain references to resources that are related to, but not contained by (subordinate to), this resource."/>
88 <NavigationProperty Name="Endpoints" Type="Collection(Endpoint.Endpoint)">
89 <Annotation Term="OData.Permissions" EnumMember="OData.Permission/Read"/>
90 <Annotation Term="OData.Description" String="Represents an array of references to the endpoints that are contained in this zone."/>
91 <Annotation Term="OData.LongDescription" String="The value of this property shall be a reference to the resources that this zone is associated with and shall reference a resource of type Endpoint."/>
92 <Annotation Term="OData.AutoExpandReferences"/>
93 </NavigationProperty>
94 <NavigationProperty Name="InvolvedSwitches" Type="Collection(Switch.Switch)">
95 <Annotation Term="OData.Permissions" EnumMember="OData.Permission/Read"/>
96 <Annotation Term="OData.Description" String="Represents an array of references to the switches in this zone."/>
97 <Annotation Term="OData.LongDescription" String="The value of this property shall be a reference to the resources that this zone is associated with and shall reference a resource of type Switch."/>
98 <Annotation Term="OData.AutoExpandReferences"/>
99 </NavigationProperty>
100 </ComplexType>
101 </Schema>
102
103 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Zone.v1_0_1">
104 <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
105 <Annotation Term="OData.Description" String="This version was created to show annotations in previous namespaces were updated."/>
106 <EntityType Name="Zone" BaseType="Zone.v1_0_0.Zone"/>
107 </Schema>
108
109 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Zone.v1_0_2">
110 <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
111 <Annotation Term="OData.Description" String="This version was created to remove the Nullable facet on NavigationProperties of type Collection."/>
112 <EntityType Name="Zone" BaseType="Zone.v1_0_1.Zone"/>
113 </Schema>
114
Ed Tanous530520e2019-01-02 13:41:37 -0800115 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Zone.v1_0_3">
116 <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
117 <Annotation Term="OData.Description" String="This version was created to force the regeneration of JSON Schema so that OData properties are marked as required, and integer properties are marked as integer rather than number."/>
118 <EntityType Name="Zone" BaseType="Zone.v1_0_2.Zone"/>
119 </Schema>
120
Jason M. Billsea4aa752018-06-05 13:29:11 -0700121 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Zone.v1_1_0">
122 <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
Marri Devender Raod45d2d02019-01-21 10:11:34 -0600123 <Annotation Term="Redfish.Release" String="2017.1"/>
Jason M. Billsea4aa752018-06-05 13:29:11 -0700124 <EntityType Name="Zone" BaseType="Zone.v1_0_2.Zone">
125 <Property Name="Actions" Type="Zone.v1_1_0.Actions" Nullable="false">
126 <Annotation Term="OData.Description" String="The available actions for this resource."/>
127 <Annotation Term="OData.LongDescription" String="The Actions property shall contain the available actions for this resource."/>
128 </Property>
129 </EntityType>
130
131 <ComplexType Name="Links" BaseType="Zone.v1_0_0.Links">
132 <NavigationProperty Name="ResourceBlocks" Type="Collection(ResourceBlock.ResourceBlock)">
133 <Annotation Term="OData.Permissions" EnumMember="OData.Permission/Read"/>
134 <Annotation Term="OData.Description" String="An array of references to the Resource Blocks that are used in this Zone."/>
135 <Annotation Term="OData.LongDescription" String="The value of this property shall be an array of references of type ResourceBlock that are associated with this Zone."/>
136 <Annotation Term="OData.AutoExpandReferences"/>
137 </NavigationProperty>
138 </ComplexType>
139
140 <ComplexType Name="Actions">
141 <Annotation Term="OData.AdditionalProperties" Bool="false"/>
142 <Annotation Term="OData.Description" String="The available actions for this resource."/>
143 <Annotation Term="OData.LongDescription" String="This type shall contain the available actions for this resource."/>
Ed Tanous530520e2019-01-02 13:41:37 -0800144 <Property Name="Oem" Type="Zone.v1_1_0.OemActions" Nullable="false">
145 <Annotation Term="OData.Description" String="This property contains the available OEM specific actions for this resource."/>
146 <Annotation Term="OData.LongDescription" String="This property shall contain any additional OEM actions for this resource."/>
147 </Property>
Jason M. Billsea4aa752018-06-05 13:29:11 -0700148 </ComplexType>
149
150 <ComplexType Name="OemActions">
151 <Annotation Term="OData.AdditionalProperties" Bool="true"/>
152 <Annotation Term="OData.Description" String="The available OEM specific actions for this resource."/>
153 <Annotation Term="OData.LongDescription" String="This type shall contain any additional OEM actions for this resource."/>
154 </ComplexType>
155 </Schema>
156
157 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Zone.v1_1_1">
158 <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
159 <Annotation Term="OData.Description" String="This version was created to perform editoral updates of descriptions defined in this schema."/>
160 <EntityType Name="Zone" BaseType="Zone.v1_1_0.Zone"/>
161 </Schema>
162
Ed Tanous530520e2019-01-02 13:41:37 -0800163 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Zone.v1_1_2">
164 <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
165 <Annotation Term="OData.Description" String="This version was created to force the regeneration of JSON Schema so that OData properties are marked as required, and integer properties are marked as integer rather than number."/>
166 <EntityType Name="Zone" BaseType="Zone.v1_1_1.Zone"/>
167 </Schema>
168
Jason M. Billsea4aa752018-06-05 13:29:11 -0700169 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Zone.v1_2_0">
170 <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
Marri Devender Raod45d2d02019-01-21 10:11:34 -0600171 <Annotation Term="Redfish.Release" String="2017.3"/>
Jason M. Billsea4aa752018-06-05 13:29:11 -0700172 <EntityType Name="Zone" BaseType="Zone.v1_1_1.Zone">
173 <Property Name="Identifiers" Type="Collection(Resource.Identifier)">
174 <Annotation Term="OData.Description" String="Identifiers for this zone."/>
175 <Annotation Term="OData.LongDescription" String="Identifiers for this zone shall be unique in the context of other zones."/>
176 </Property>
177 </EntityType>
178 </Schema>
179
Ed Tanous530520e2019-01-02 13:41:37 -0800180 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Zone.v1_2_1">
181 <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
182 <Annotation Term="OData.Description" String="This version was created to force the regeneration of JSON Schema so that OData properties are marked as required, and integer properties are marked as integer rather than number."/>
183 <EntityType Name="Zone" BaseType="Zone.v1_2_0.Zone"/>
184 </Schema>
185
Jason M. Billsea4aa752018-06-05 13:29:11 -0700186 </edmx:DataServices>
187</edmx:Edmx>