Ed Tanous | 530520e | 2019-01-02 13:41:37 -0800 | [diff] [blame] | 1 | <?xml version="1.0" encoding="UTF-8"?> |
| 2 | <!----> |
| 3 | <!--################################################################################ --> |
Ed Tanous | cb10313 | 2019-10-08 11:34:22 -0700 | [diff] [blame] | 4 | <!--# Redfish Schema: PCIeSlots v1.1.1 --> |
Ed Tanous | 530520e | 2019-01-02 13:41:37 -0800 | [diff] [blame] | 5 | <!--# --> |
| 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 Tanous | cb10313 | 2019-10-08 11:34:22 -0700 | [diff] [blame] | 8 | <!--# Copyright 2014-2019 DMTF. --> |
Ed Tanous | 530520e | 2019-01-02 13:41:37 -0800 | [diff] [blame] | 9 | <!--# 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 Tanous | cb10313 | 2019-10-08 11:34:22 -0700 | [diff] [blame] | 38 | <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 Tanous | 530520e | 2019-01-02 13:41:37 -0800 | [diff] [blame] | 40 | <Annotation Term="Capabilities.InsertRestrictions"> |
| 41 | <Record> |
| 42 | <PropertyValue Property="Insertable" Bool="false"/> |
| 43 | </Record> |
| 44 | </Annotation> |
| 45 | <Annotation Term="Capabilities.UpdateRestrictions"> |
| 46 | <Record> |
| 47 | <PropertyValue Property="Updatable" Bool="false"/> |
| 48 | </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 Rao | d45d2d0 | 2019-01-21 10:11:34 -0600 | [diff] [blame] | 66 | <Annotation Term="Redfish.Release" String="2018.2"/> |
Ed Tanous | 530520e | 2019-01-02 13:41:37 -0800 | [diff] [blame] | 67 | |
| 68 | <EntityType Name="PCIeSlots" BaseType="PCIeSlots.PCIeSlots"> |
Ed Tanous | cb10313 | 2019-10-08 11:34:22 -0700 | [diff] [blame] | 69 | <Property Name="Slots" Type="Collection(PCIeSlots.v1_0_0.PCIeSlot)" Nullable="false"> |
Ed Tanous | 530520e | 2019-01-02 13:41:37 -0800 | [diff] [blame] | 70 | <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 Tanous | cb10313 | 2019-10-08 11:34:22 -0700 | [diff] [blame] | 74 | <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 Tanous | 530520e | 2019-01-02 13:41:37 -0800 | [diff] [blame] | 76 | </Property> |
| 77 | </EntityType> |
| 78 | |
| 79 | <ComplexType Name="PCIeSlot"> |
| 80 | <Annotation Term="OData.AdditionalProperties" Bool="false"/> |
Ed Tanous | cb10313 | 2019-10-08 11:34:22 -0700 | [diff] [blame] | 81 | <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 Tanous | 530520e | 2019-01-02 13:41:37 -0800 | [diff] [blame] | 83 | <Property Name="Oem" Type="Resource.Oem" Nullable="false"> |
Ed Tanous | cb10313 | 2019-10-08 11:34:22 -0700 | [diff] [blame] | 84 | <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 Tanous | 530520e | 2019-01-02 13:41:37 -0800 | [diff] [blame] | 86 | </Property> |
| 87 | <Property Name="PCIeType" Type="PCIeDevice.PCIeTypes"> |
| 88 | <Annotation Term="OData.Permissions" EnumMember="OData.Permission/Read"/> |
Ed Tanous | cb10313 | 2019-10-08 11:34:22 -0700 | [diff] [blame] | 89 | <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 Tanous | 530520e | 2019-01-02 13:41:37 -0800 | [diff] [blame] | 91 | </Property> |
| 92 | <Property Name="SlotType" Type="PCIeSlots.v1_0_0.SlotTypes"> |
| 93 | <Annotation Term="OData.Permissions" EnumMember="OData.Permission/Read"/> |
Ed Tanous | cb10313 | 2019-10-08 11:34:22 -0700 | [diff] [blame] | 94 | <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 Tanous | 530520e | 2019-01-02 13:41:37 -0800 | [diff] [blame] | 96 | </Property> |
| 97 | <Property Name="Lanes" Type="Edm.Int64"> |
| 98 | <Annotation Term="OData.Permissions" EnumMember="OData.Permission/Read"/> |
Ed Tanous | cb10313 | 2019-10-08 11:34:22 -0700 | [diff] [blame] | 99 | <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 Tanous | 530520e | 2019-01-02 13:41:37 -0800 | [diff] [blame] | 101 | <Annotation Term="Validation.Maximum" Int="32"/> |
| 102 | </Property> |
| 103 | <Property Name="Status" Type="Resource.Status" Nullable="false"> |
Ed Tanous | cb10313 | 2019-10-08 11:34:22 -0700 | [diff] [blame] | 104 | <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 Tanous | 530520e | 2019-01-02 13:41:37 -0800 | [diff] [blame] | 106 | </Property> |
| 107 | <Property Name="Location" Type="Resource.Location" Nullable="false"> |
Ed Tanous | cb10313 | 2019-10-08 11:34:22 -0700 | [diff] [blame] | 108 | <Annotation Term="OData.Description" String="The location of the PCIe slot."/> |
Ed Tanous | 530520e | 2019-01-02 13:41:37 -0800 | [diff] [blame] | 109 | <Annotation Term="OData.LongDescription" String="This property shall contain part location information, including a ServiceLable of the associated PCIe Slot."/> |
| 110 | </Property> |
Ed Tanous | cb10313 | 2019-10-08 11:34:22 -0700 | [diff] [blame] | 111 | <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 Tanous | 530520e | 2019-01-02 13:41:37 -0800 | [diff] [blame] | 114 | </Property> |
| 115 | </ComplexType> |
| 116 | |
| 117 | <ComplexType Name="PCIeLinks" BaseType="Resource.Links"> |
Ed Tanous | cb10313 | 2019-10-08 11:34:22 -0700 | [diff] [blame] | 118 | <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 Tanous | 530520e | 2019-01-02 13:41:37 -0800 | [diff] [blame] | 120 | <NavigationProperty Name="PCIeDevice" Type="Collection(PCIeDevice.PCIeDevice)"> |
| 121 | <Annotation Term="OData.Permissions" EnumMember="OData.Permission/Read"/> |
Ed Tanous | cb10313 | 2019-10-08 11:34:22 -0700 | [diff] [blame] | 122 | <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 Tanous | 530520e | 2019-01-02 13:41:37 -0800 | [diff] [blame] | 124 | <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"> |
| 145 | <Annotation Term="OData.Description" String="And OEM-specific slot."/> |
| 146 | </Member> |
| 147 | </EnumType> |
| 148 | |
| 149 | <ComplexType Name="Actions"> |
| 150 | <Annotation Term="OData.AdditionalProperties" Bool="false"/> |
Ed Tanous | cb10313 | 2019-10-08 11:34:22 -0700 | [diff] [blame] | 151 | <Annotation Term="OData.Description" String="The available actions for this Resource."/> |
| 152 | <Annotation Term="OData.LongDescription" String="This type shall contain the available actions for this Resource."/> |
Ed Tanous | 530520e | 2019-01-02 13:41:37 -0800 | [diff] [blame] | 153 | <Property Name="Oem" Type="PCIeSlots.v1_0_0.OemActions" Nullable="false"> |
Ed Tanous | cb10313 | 2019-10-08 11:34:22 -0700 | [diff] [blame] | 154 | <Annotation Term="OData.Description" String="The available OEM-specific actions for this Resource."/> |
| 155 | <Annotation Term="OData.LongDescription" String="This property shall contain the available OEM-specific actions for this Resource."/> |
Ed Tanous | 530520e | 2019-01-02 13:41:37 -0800 | [diff] [blame] | 156 | </Property> |
| 157 | </ComplexType> |
| 158 | |
| 159 | <ComplexType Name="OemActions"> |
| 160 | <Annotation Term="OData.AdditionalProperties" Bool="true"/> |
Ed Tanous | cb10313 | 2019-10-08 11:34:22 -0700 | [diff] [blame] | 161 | <Annotation Term="OData.Description" String="The available OEM-specific actions for this Resource."/> |
| 162 | <Annotation Term="OData.LongDescription" String="This type shall contain the available OEM-specific actions for this Resource."/> |
Ed Tanous | 530520e | 2019-01-02 13:41:37 -0800 | [diff] [blame] | 163 | </ComplexType> |
Ed Tanous | cb10313 | 2019-10-08 11:34:22 -0700 | [diff] [blame] | 164 | </Schema> |
Ed Tanous | 530520e | 2019-01-02 13:41:37 -0800 | [diff] [blame] | 165 | |
Ed Tanous | cb10313 | 2019-10-08 11:34:22 -0700 | [diff] [blame] | 166 | <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="PCIeSlots.v1_0_1"> |
| 167 | <Annotation Term="Redfish.OwningEntity" String="DMTF"/> |
| 168 | <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."/> |
| 169 | <EntityType Name="PCIeSlots" BaseType="PCIeSlots.v1_0_0.PCIeSlots"/> |
| 170 | </Schema> |
| 171 | |
| 172 | <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="PCIeSlots.v1_0_2"> |
| 173 | <Annotation Term="Redfish.OwningEntity" String="DMTF"/> |
| 174 | <Annotation Term="OData.Description" String="This version was created to update descriptions that this schema defines."/> |
| 175 | <EntityType Name="PCIeSlots" BaseType="PCIeSlots.v1_0_1.PCIeSlots"/> |
| 176 | </Schema> |
| 177 | |
| 178 | <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="PCIeSlots.v1_1_0"> |
| 179 | <Annotation Term="Redfish.OwningEntity" String="DMTF"/> |
| 180 | <Annotation Term="Redfish.Release" String="2019.1"/> |
| 181 | |
| 182 | <EntityType Name="PCIeSlots" BaseType="PCIeSlots.v1_0_1.PCIeSlots"/> |
| 183 | <ComplexType Name="PCIeSlot" BaseType="PCIeSlots.v1_0_0.PCIeSlot"> |
| 184 | <Property Name="HotPluggable" Type="Edm.Boolean"> |
| 185 | <Annotation Term="OData.Permissions" EnumMember="OData.Permission/Read"/> |
| 186 | <Annotation Term="OData.Description" String="An indication of whether this PCIe slot supports hotplug."/> |
| 187 | <Annotation Term="OData.LongDescription" String="This property shall contain indicating whether this PCIe slot supports hotplug."/> |
| 188 | </Property> |
| 189 | </ComplexType> |
| 190 | </Schema> |
| 191 | |
| 192 | <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="PCIeSlots.v1_1_1"> |
| 193 | <Annotation Term="Redfish.OwningEntity" String="DMTF"/> |
| 194 | <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."/> |
| 195 | <EntityType Name="PCIeSlots" BaseType="PCIeSlots.v1_1_0.PCIeSlots"/> |
Ed Tanous | 530520e | 2019-01-02 13:41:37 -0800 | [diff] [blame] | 196 | </Schema> |
| 197 | |
| 198 | </edmx:DataServices> |
| 199 | </edmx:Edmx> |