blob: 0165c4a0c9be5d250ad5a613dae56c18224fec20 [file] [log] [blame]
Ed Tanous530520e2019-01-02 13:41:37 -08001<?xml version="1.0" encoding="UTF-8"?>
2<!---->
3<!--################################################################################ -->
Asmitha Karunanithic8ccb772020-09-22 10:56:46 -05004<!--# Redfish Schema: PCIeSlots v1.4.0 -->
Ed Tanous530520e2019-01-02 13:41:37 -08005<!--# -->
6<!--# For a detailed change log, see the README file contained in the DSP8010 bundle, -->
7<!--# available at http://www.dmtf.org/standards/redfish -->
Gunnar Millsa778c022020-05-12 12:20:36 -05008<!--# Copyright 2014-2020 DMTF. -->
Ed Tanous530520e2019-01-02 13:41:37 -08009<!--# 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>
17 <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>
20 <edmx:Reference Uri="http://redfish.dmtf.org/schemas/v1/RedfishExtensions_v1.xml">
21 <edmx:Include Namespace="RedfishExtensions.v1_0_0" Alias="Redfish"/>
22 <edmx:Include Namespace="Validation.v1_0_0" Alias="Validation"/>
23 </edmx:Reference>
24 <edmx:Reference Uri="http://redfish.dmtf.org/schemas/v1/Resource_v1.xml">
25 <edmx:Include Namespace="Resource"/>
26 <edmx:Include Namespace="Resource.v1_0_0"/>
27 </edmx:Reference>
28 <edmx:Reference Uri="http://redfish.dmtf.org/schemas/v1/PCIeDevice_v1.xml">
29 <edmx:Include Namespace="PCIeDevice"/>
30 </edmx:Reference>
31
32 <edmx:DataServices>
33
34 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="PCIeSlots">
35 <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
36
37 <EntityType Name="PCIeSlots" BaseType="Resource.v1_0_0.Resource" Abstract="true">
Ed Tanouscb103132019-10-08 11:34:22 -070038 <Annotation Term="OData.Description" String="The PCIeSlots schema describes PCIe slot properties."/>
39 <Annotation Term="OData.LongDescription" String="This Resource shall represent a set of PCIe slot information for a Redfish implementation."/>
Ed Tanous530520e2019-01-02 13:41:37 -080040 <Annotation Term="Capabilities.InsertRestrictions">
41 <Record>
42 <PropertyValue Property="Insertable" Bool="false"/>
43 </Record>
44 </Annotation>
45 <Annotation Term="Capabilities.UpdateRestrictions">
46 <Record>
Asmitha Karunanithic8ccb772020-09-22 10:56:46 -050047 <PropertyValue Property="Updatable" Bool="true"/>
Ed Tanous530520e2019-01-02 13:41:37 -080048 </Record>
49 </Annotation>
50 <Annotation Term="Capabilities.DeleteRestrictions">
51 <Record>
52 <PropertyValue Property="Deletable" Bool="false"/>
53 </Record>
54 </Annotation>
55 <Annotation Term="Redfish.Uris">
56 <Collection>
57 <String>/redfish/v1/Chassis/{ChassisId}/PCIeSlots</String>
58 </Collection>
59 </Annotation>
60 </EntityType>
61
62 </Schema>
63
64 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="PCIeSlots.v1_0_0">
65 <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
Marri Devender Raod45d2d02019-01-21 10:11:34 -060066 <Annotation Term="Redfish.Release" String="2018.2"/>
Ed Tanous530520e2019-01-02 13:41:37 -080067
68 <EntityType Name="PCIeSlots" BaseType="PCIeSlots.PCIeSlots">
Ed Tanouscb103132019-10-08 11:34:22 -070069 <Property Name="Slots" Type="Collection(PCIeSlots.v1_0_0.PCIeSlot)" Nullable="false">
Ed Tanous530520e2019-01-02 13:41:37 -080070 <Annotation Term="OData.Description" String="An array of PCI Slot information."/>
71 <Annotation Term="OData.LongDescription" String="This array shall contain an entry for each PCIe slot, including empty slots (with no device or card installed)."/>
72 </Property>
73 <Property Name="Actions" Type="PCIeSlots.v1_0_0.Actions" Nullable="false">
Ed Tanouscb103132019-10-08 11:34:22 -070074 <Annotation Term="OData.Description" String="The available actions for this Resource."/>
75 <Annotation Term="OData.LongDescription" String="This property shall contain the available actions for this Resource."/>
Ed Tanous530520e2019-01-02 13:41:37 -080076 </Property>
77 </EntityType>
78
79 <ComplexType Name="PCIeSlot">
80 <Annotation Term="OData.AdditionalProperties" Bool="false"/>
Ed Tanouscb103132019-10-08 11:34:22 -070081 <Annotation Term="OData.Description" String="This type defines information for a PCIe slot."/>
82 <Annotation Term="OData.LongDescription" String="These properties shall contain the definition for a PCIe Slot for a Redfish implementation."/>
Ed Tanous530520e2019-01-02 13:41:37 -080083 <Property Name="Oem" Type="Resource.Oem" Nullable="false">
Ed Tanouscb103132019-10-08 11:34:22 -070084 <Annotation Term="OData.Description" String="The OEM extension property."/>
85 <Annotation Term="OData.LongDescription" String="This property shall contain the OEM extensions. All values for properties contained in this object shall conform to the Redfish Specification-described requirements."/>
Ed Tanous530520e2019-01-02 13:41:37 -080086 </Property>
87 <Property Name="PCIeType" Type="PCIeDevice.PCIeTypes">
88 <Annotation Term="OData.Permissions" EnumMember="OData.Permission/Read"/>
Ed Tanouscb103132019-10-08 11:34:22 -070089 <Annotation Term="OData.Description" String="The PCIe specification supported by this slot."/>
90 <Annotation Term="OData.LongDescription" String="This property shall contain the maximum PCIe specification that this slot supports."/>
Ed Tanous530520e2019-01-02 13:41:37 -080091 </Property>
92 <Property Name="SlotType" Type="PCIeSlots.v1_0_0.SlotTypes">
93 <Annotation Term="OData.Permissions" EnumMember="OData.Permission/Read"/>
Ed Tanouscb103132019-10-08 11:34:22 -070094 <Annotation Term="OData.Description" String="The PCIe slot type for this slot."/>
95 <Annotation Term="OData.LongDescription" String="This property shall contain the slot type as specified by the PCIe specification."/>
Ed Tanous530520e2019-01-02 13:41:37 -080096 </Property>
97 <Property Name="Lanes" Type="Edm.Int64">
98 <Annotation Term="OData.Permissions" EnumMember="OData.Permission/Read"/>
Ed Tanouscb103132019-10-08 11:34:22 -070099 <Annotation Term="OData.Description" String="The number of PCIe lanes supported by this slot."/>
100 <Annotation Term="OData.LongDescription" String="This property shall contain the maximum number of PCIe lanes supported by the slot."/>
Ed Tanous530520e2019-01-02 13:41:37 -0800101 <Annotation Term="Validation.Maximum" Int="32"/>
102 </Property>
103 <Property Name="Status" Type="Resource.Status" Nullable="false">
Ed Tanouscb103132019-10-08 11:34:22 -0700104 <Annotation Term="OData.Description" String="The status and health of the Resource and its subordinate or dependent Resources."/>
105 <Annotation Term="OData.LongDescription" String="This property shall contain any status or health properties of the Resource."/>
Ed Tanous530520e2019-01-02 13:41:37 -0800106 </Property>
107 <Property Name="Location" Type="Resource.Location" Nullable="false">
Ed Tanouscb103132019-10-08 11:34:22 -0700108 <Annotation Term="OData.Description" String="The location of the PCIe slot."/>
Gunnar Mills09b9d452020-02-11 13:27:39 -0600109 <Annotation Term="OData.LongDescription" String="This property shall contain part location information, including a ServiceLabel of the associated PCIe Slot."/>
Ed Tanous530520e2019-01-02 13:41:37 -0800110 </Property>
Ed Tanouscb103132019-10-08 11:34:22 -0700111 <Property Name="Links" Type="PCIeSlots.v1_0_0.PCIeLinks" Nullable="false">
112 <Annotation Term="OData.Description" String="The links to other Resources that are related to this Resource."/>
113 <Annotation Term="OData.LongDescription" String="The Redfish Specification-described type shall contain links to Resources related to but not subordinate to this Resource."/>
Ed Tanous530520e2019-01-02 13:41:37 -0800114 </Property>
115 </ComplexType>
116
117 <ComplexType Name="PCIeLinks" BaseType="Resource.Links">
Ed Tanouscb103132019-10-08 11:34:22 -0700118 <Annotation Term="OData.Description" String="The links to other Resources that are related to this Resource."/>
119 <Annotation Term="OData.LongDescription" String="The Redfish Specification-described type shall contain links to Resources related to but not subordinate to this Resource."/>
Ed Tanous530520e2019-01-02 13:41:37 -0800120 <NavigationProperty Name="PCIeDevice" Type="Collection(PCIeDevice.PCIeDevice)">
121 <Annotation Term="OData.Permissions" EnumMember="OData.Permission/Read"/>
Ed Tanouscb103132019-10-08 11:34:22 -0700122 <Annotation Term="OData.Description" String="An array of links to the PCIe devices contained in this slot."/>
123 <Annotation Term="OData.LongDescription" String="This property shall contain an array of links to the Resources of the PCIeDevice type with which this physical slot is associated. If the Status.State of this slot is `Absent`, this property shall not appear in the Resource."/>
Ed Tanous530520e2019-01-02 13:41:37 -0800124 <Annotation Term="OData.AutoExpandReferences"/>
125 </NavigationProperty>
126 </ComplexType>
127
128 <EnumType Name="SlotTypes">
129 <Member Name="FullLength">
130 <Annotation Term="OData.Description" String="Full-Length PCIe slot."/>
131 </Member>
132 <Member Name="HalfLength">
133 <Annotation Term="OData.Description" String="Half-Length PCIe slot."/>
134 </Member>
135 <Member Name="LowProfile">
136 <Annotation Term="OData.Description" String="Low-Profile or Slim PCIe slot."/>
137 </Member>
138 <Member Name="Mini">
139 <Annotation Term="OData.Description" String="Mini PCIe slot."/>
140 </Member>
141 <Member Name="M2">
142 <Annotation Term="OData.Description" String="PCIe M.2 slot."/>
143 </Member>
144 <Member Name="OEM">
Gunnar Mills09b9d452020-02-11 13:27:39 -0600145 <Annotation Term="OData.Description" String="An OEM-specific slot."/>
146 </Member>
147 <Member Name="OCP3Small">
148 <Annotation Term="OData.Description" String="Open Compute Project 3.0 small form factor slot."/>
149 <Annotation Term="Redfish.Revisions">
150 <Collection>
151 <Record>
152 <PropertyValue Property="Kind" EnumMember="Redfish.RevisionKind/Added"/>
153 <PropertyValue Property="Version" String="v1_2_0"/>
154 </Record>
155 </Collection>
156 </Annotation>
157 </Member>
158 <Member Name="OCP3Large">
159 <Annotation Term="OData.Description" String="Open Compute Project 3.0 large form factor slot."/>
160 <Annotation Term="Redfish.Revisions">
161 <Collection>
162 <Record>
163 <PropertyValue Property="Kind" EnumMember="Redfish.RevisionKind/Added"/>
164 <PropertyValue Property="Version" String="v1_2_0"/>
165 </Record>
166 </Collection>
167 </Annotation>
Ed Tanous530520e2019-01-02 13:41:37 -0800168 </Member>
Gunnar Millsa778c022020-05-12 12:20:36 -0500169 <Member Name="U2">
170 <Annotation Term="OData.Description" String="U.2 / SFF-8639 slot or bay."/>
171 <Annotation Term="Redfish.Revisions">
172 <Collection>
173 <Record>
174 <PropertyValue Property="Kind" EnumMember="Redfish.RevisionKind/Added"/>
175 <PropertyValue Property="Version" String="v1_3_0"/>
176 </Record>
177 </Collection>
178 </Annotation>
179 </Member>
Ed Tanous530520e2019-01-02 13:41:37 -0800180 </EnumType>
181
182 <ComplexType Name="Actions">
183 <Annotation Term="OData.AdditionalProperties" Bool="false"/>
Ed Tanouscb103132019-10-08 11:34:22 -0700184 <Annotation Term="OData.Description" String="The available actions for this Resource."/>
185 <Annotation Term="OData.LongDescription" String="This type shall contain the available actions for this Resource."/>
Ed Tanous530520e2019-01-02 13:41:37 -0800186 <Property Name="Oem" Type="PCIeSlots.v1_0_0.OemActions" Nullable="false">
Ed Tanouscb103132019-10-08 11:34:22 -0700187 <Annotation Term="OData.Description" String="The available OEM-specific actions for this Resource."/>
188 <Annotation Term="OData.LongDescription" String="This property shall contain the available OEM-specific actions for this Resource."/>
Ed Tanous530520e2019-01-02 13:41:37 -0800189 </Property>
190 </ComplexType>
191
192 <ComplexType Name="OemActions">
193 <Annotation Term="OData.AdditionalProperties" Bool="true"/>
Ed Tanouscb103132019-10-08 11:34:22 -0700194 <Annotation Term="OData.Description" String="The available OEM-specific actions for this Resource."/>
195 <Annotation Term="OData.LongDescription" String="This type shall contain the available OEM-specific actions for this Resource."/>
Ed Tanous530520e2019-01-02 13:41:37 -0800196 </ComplexType>
Ed Tanouscb103132019-10-08 11:34:22 -0700197 </Schema>
Ed Tanous530520e2019-01-02 13:41:37 -0800198
Ed Tanouscb103132019-10-08 11:34:22 -0700199 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="PCIeSlots.v1_0_1">
200 <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
201 <Annotation Term="OData.Description" String="This version was created to force the regeneration of JSON Schema so that URI properties use the uri-reference format, and to add a missing term to Links and Slots to disallow them from being null."/>
202 <EntityType Name="PCIeSlots" BaseType="PCIeSlots.v1_0_0.PCIeSlots"/>
203 </Schema>
204
205 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="PCIeSlots.v1_0_2">
206 <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
207 <Annotation Term="OData.Description" String="This version was created to update descriptions that this schema defines."/>
208 <EntityType Name="PCIeSlots" BaseType="PCIeSlots.v1_0_1.PCIeSlots"/>
209 </Schema>
210
Gunnar Mills09b9d452020-02-11 13:27:39 -0600211 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="PCIeSlots.v1_0_3">
212 <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
213 <Annotation Term="OData.Description" String="This version was created to correct typographic errors in the Location description."/>
214 <EntityType Name="PCIeSlots" BaseType="PCIeSlots.v1_0_2.PCIeSlots"/>
215 </Schema>
216
Ed Tanouscb103132019-10-08 11:34:22 -0700217 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="PCIeSlots.v1_1_0">
218 <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
219 <Annotation Term="Redfish.Release" String="2019.1"/>
220
221 <EntityType Name="PCIeSlots" BaseType="PCIeSlots.v1_0_1.PCIeSlots"/>
222 <ComplexType Name="PCIeSlot" BaseType="PCIeSlots.v1_0_0.PCIeSlot">
223 <Property Name="HotPluggable" Type="Edm.Boolean">
224 <Annotation Term="OData.Permissions" EnumMember="OData.Permission/Read"/>
225 <Annotation Term="OData.Description" String="An indication of whether this PCIe slot supports hotplug."/>
226 <Annotation Term="OData.LongDescription" String="This property shall contain indicating whether this PCIe slot supports hotplug."/>
227 </Property>
228 </ComplexType>
229 </Schema>
230
231 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="PCIeSlots.v1_1_1">
232 <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
233 <Annotation Term="OData.Description" String="This version was created to correct the parent namespace of HotPluggable property from PCIeSlots to PCIeSlot. It was also created to update descriptions that this schema defines."/>
234 <EntityType Name="PCIeSlots" BaseType="PCIeSlots.v1_1_0.PCIeSlots"/>
Ed Tanous530520e2019-01-02 13:41:37 -0800235 </Schema>
236
Gunnar Mills09b9d452020-02-11 13:27:39 -0600237 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="PCIeSlots.v1_1_2">
238 <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
239 <Annotation Term="OData.Description" String="This version was created to correct typographic errors in the Location description."/>
240 <EntityType Name="PCIeSlots" BaseType="PCIeSlots.v1_1_1.PCIeSlots"/>
241 </Schema>
242
243 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="PCIeSlots.v1_2_0">
244 <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
245 <Annotation Term="Redfish.Release" String="2019.4"/>
246 <Annotation Term="OData.Description" String="This version was created to add the Open Compute Project 3.0 form factors to PCIeSlotType."/>
247 <EntityType Name="PCIeSlots" BaseType="PCIeSlots.v1_1_2.PCIeSlots"/>
248 </Schema>
249
Gunnar Millsa778c022020-05-12 12:20:36 -0500250 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="PCIeSlots.v1_3_0">
251 <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
252 <Annotation Term="Redfish.Release" String="2020.1"/>
253 <Annotation Term="OData.Description" String="This version was created to add the U.2 form factor to PCIeSlotType."/>
254 <EntityType Name="PCIeSlots" BaseType="PCIeSlots.v1_2_0.PCIeSlots"/>
255 </Schema>
256
Asmitha Karunanithic8ccb772020-09-22 10:56:46 -0500257 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="PCIeSlots.v1_4_0">
258 <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
259 <Annotation Term="Redfish.Release" String="2020.3"/>
260
261 <EntityType Name="PCIeSlots" BaseType="PCIeSlots.v1_3_0.PCIeSlots">
262 <Property Name="LocationIndicatorActive" Type="Edm.Boolean">
263 <Annotation Term="OData.Permissions" EnumMember="OData.Permission/ReadWrite"/>
264 <Annotation Term="OData.Description" String="An indicator allowing an operator to physically locate this resource."/>
265 <Annotation Term="OData.LongDescription" String="This property shall contain the state of the indicator used to physically identify or locate this resource. A write to this property shall update the value of IndicatorLED in this resource, if supported, to reflect the implementation of the locating function."/>
266 </Property>
267 </EntityType>
268
269 </Schema>
Ed Tanous530520e2019-01-02 13:41:37 -0800270 </edmx:DataServices>
271</edmx:Edmx>