Jason M. Bills | ea4aa75 | 2018-06-05 13:29:11 -0700 | [diff] [blame] | 1 | <?xml version="1.0" encoding="UTF-8"?> |
| 2 | <!----> |
| 3 | <!--################################################################################ --> |
Asmitha Karunanithi | c8ccb77 | 2020-09-22 10:56:46 -0500 | [diff] [blame^] | 4 | <!--# Redfish Schema: SimpleStorage v1.3.0 --> |
Jason M. Bills | ea4aa75 | 2018-06-05 13:29:11 -0700 | [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 --> |
Gunnar Mills | a778c02 | 2020-05-12 12:20:36 -0500 | [diff] [blame] | 8 | <!--# Copyright 2014-2020 DMTF. --> |
Jason M. Bills | ea4aa75 | 2018-06-05 13:29:11 -0700 | [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://docs.oasis-open.org/odata/odata/v4.0/errata03/csd01/complete/vocabularies/Org.OData.Measures.V1.xml"> |
| 21 | <edmx:Include Namespace="Org.OData.Measures.V1" Alias="Measures"/> |
| 22 | </edmx:Reference> |
| 23 | <edmx:Reference Uri="http://redfish.dmtf.org/schemas/v1/Resource_v1.xml"> |
| 24 | <edmx:Include Namespace="Resource"/> |
| 25 | <edmx:Include Namespace="Resource.v1_0_0"/> |
| 26 | </edmx:Reference> |
| 27 | <edmx:Reference Uri="http://redfish.dmtf.org/schemas/v1/RedfishExtensions_v1.xml"> |
| 28 | <edmx:Include Namespace="RedfishExtensions.v1_0_0" Alias="Redfish"/> |
| 29 | <edmx:Include Namespace="Validation.v1_0_0" Alias="Validation"/> |
| 30 | </edmx:Reference> |
| 31 | <edmx:Reference Uri="http://redfish.dmtf.org/schemas/v1/Chassis_v1.xml"> |
| 32 | <edmx:Include Namespace="Chassis"/> |
| 33 | </edmx:Reference> |
Asmitha Karunanithi | c8ccb77 | 2020-09-22 10:56:46 -0500 | [diff] [blame^] | 34 | <edmx:Reference Uri="http://redfish.dmtf.org/schemas/v1/Storage_v1.xml"> |
| 35 | <edmx:Include Namespace="Storage"/> |
| 36 | </edmx:Reference> |
Jason M. Bills | ea4aa75 | 2018-06-05 13:29:11 -0700 | [diff] [blame] | 37 | |
| 38 | <edmx:DataServices> |
| 39 | |
| 40 | <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="SimpleStorage"> |
| 41 | <Annotation Term="Redfish.OwningEntity" String="DMTF"/> |
| 42 | |
| 43 | <EntityType Name="SimpleStorage" BaseType="Resource.v1_0_0.Resource" Abstract="true"> |
Ed Tanous | cb10313 | 2019-10-08 11:34:22 -0700 | [diff] [blame] | 44 | <Annotation Term="OData.Description" String="The SimpleStorage schema represents the properties of a storage controller and its directly-attached devices."/> |
| 45 | <Annotation Term="OData.LongDescription" String="This Resource contains a storage controller and its directly-attached devices."/> |
Jason M. Bills | ea4aa75 | 2018-06-05 13:29:11 -0700 | [diff] [blame] | 46 | <Annotation Term="Capabilities.InsertRestrictions"> |
| 47 | <Record> |
| 48 | <PropertyValue Property="Insertable" Bool="false"/> |
| 49 | </Record> |
| 50 | </Annotation> |
| 51 | <Annotation Term="Capabilities.UpdateRestrictions"> |
| 52 | <Record> |
| 53 | <PropertyValue Property="Updatable" Bool="false"/> |
| 54 | </Record> |
| 55 | </Annotation> |
| 56 | <Annotation Term="Capabilities.DeleteRestrictions"> |
| 57 | <Record> |
| 58 | <PropertyValue Property="Deletable" Bool="false"/> |
| 59 | </Record> |
| 60 | </Annotation> |
Ed Tanous | 530520e | 2019-01-02 13:41:37 -0800 | [diff] [blame] | 61 | <Annotation Term="Redfish.Uris"> |
| 62 | <Collection> |
| 63 | <String>/redfish/v1/Systems/{ComputerSystemId}/SimpleStorage/{SimpleStorageId}</String> |
| 64 | <String>/redfish/v1/CompositionService/ResourceBlocks/{ResourceBlockId}/SimpleStorage/{SimpleStorageId}</String> |
| 65 | <String>/redfish/v1/CompositionService/ResourceBlocks/{ResourceBlockId}/Systems/{ComputerSystemId}/SimpleStorage/{SimpleStorageId}</String> |
Marri Devender Rao | d45d2d0 | 2019-01-21 10:11:34 -0600 | [diff] [blame] | 66 | <String>/redfish/v1/ResourceBlocks/{ResourceBlockId}/SimpleStorage/{SimpleStorageId}</String> |
| 67 | <String>/redfish/v1/ResourceBlocks/{ResourceBlockId}/Systems/{ComputerSystemId}/SimpleStorage/{SimpleStorageId}</String> |
Ed Tanous | 530520e | 2019-01-02 13:41:37 -0800 | [diff] [blame] | 68 | </Collection> |
| 69 | </Annotation> |
Jason M. Bills | ea4aa75 | 2018-06-05 13:29:11 -0700 | [diff] [blame] | 70 | </EntityType> |
| 71 | |
| 72 | </Schema> |
| 73 | |
| 74 | <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="SimpleStorage.v1_0_0"> |
| 75 | <Annotation Term="Redfish.OwningEntity" String="DMTF"/> |
Marri Devender Rao | d45d2d0 | 2019-01-21 10:11:34 -0600 | [diff] [blame] | 76 | <Annotation Term="Redfish.Release" String="1.0"/> |
Jason M. Bills | ea4aa75 | 2018-06-05 13:29:11 -0700 | [diff] [blame] | 77 | |
| 78 | <EntityType Name="SimpleStorage" BaseType="SimpleStorage.SimpleStorage"> |
Jason M. Bills | ea4aa75 | 2018-06-05 13:29:11 -0700 | [diff] [blame] | 79 | <Property Name="UefiDevicePath" Type="Edm.String"> |
| 80 | <Annotation Term="OData.Permissions" EnumMember="OData.Permission/Read"/> |
Ed Tanous | cb10313 | 2019-10-08 11:34:22 -0700 | [diff] [blame] | 81 | <Annotation Term="OData.Description" String="The UEFI device path to access this storage controller."/> |
| 82 | <Annotation Term="OData.LongDescription" String="This property shall contain the UEFI device path that identifies and locates the specific storage controller."/> |
Jason M. Bills | ea4aa75 | 2018-06-05 13:29:11 -0700 | [diff] [blame] | 83 | </Property> |
| 84 | <Property Name="Devices" Type="Collection(SimpleStorage.v1_0_0.Device)" Nullable="false"> |
Ed Tanous | cb10313 | 2019-10-08 11:34:22 -0700 | [diff] [blame] | 85 | <Annotation Term="OData.Description" String="The storage devices."/> |
| 86 | <Annotation Term="OData.LongDescription" String="This property shall contain a list of storage devices related to this Resource."/> |
Jason M. Bills | ea4aa75 | 2018-06-05 13:29:11 -0700 | [diff] [blame] | 87 | </Property> |
Ed Tanous | 530520e | 2019-01-02 13:41:37 -0800 | [diff] [blame] | 88 | <Property Name="Status" Type="Resource.Status" Nullable="false"> |
Ed Tanous | cb10313 | 2019-10-08 11:34:22 -0700 | [diff] [blame] | 89 | <Annotation Term="OData.Description" String="The status and health of the Resource and its subordinate or dependent Resources."/> |
| 90 | <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] | 91 | </Property> |
Jason M. Bills | ea4aa75 | 2018-06-05 13:29:11 -0700 | [diff] [blame] | 92 | </EntityType> |
| 93 | |
| 94 | <ComplexType Name="Device"> |
| 95 | <Annotation Term="OData.AdditionalProperties" Bool="false"/> |
Ed Tanous | cb10313 | 2019-10-08 11:34:22 -0700 | [diff] [blame] | 96 | <Annotation Term="OData.Description" String="A storage device, such as a disk drive or optical media device."/> |
| 97 | <Annotation Term="OData.LongDescription" String="This type shall describe a storage device visible to simple storage."/> |
Ed Tanous | 530520e | 2019-01-02 13:41:37 -0800 | [diff] [blame] | 98 | <Property Name="Oem" Type="Resource.Oem" Nullable="false"> |
Ed Tanous | cb10313 | 2019-10-08 11:34:22 -0700 | [diff] [blame] | 99 | <Annotation Term="OData.Description" String="The OEM extension property."/> |
| 100 | <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] | 101 | </Property> |
Jason M. Bills | ea4aa75 | 2018-06-05 13:29:11 -0700 | [diff] [blame] | 102 | <Property Name="Name" Type="Edm.String" Nullable="false"> |
| 103 | <Annotation Term="OData.Permissions" EnumMember="OData.Permission/Read"/> |
Ed Tanous | cb10313 | 2019-10-08 11:34:22 -0700 | [diff] [blame] | 104 | <Annotation Term="OData.Description" String="The name of the Resource or array member."/> |
| 105 | <Annotation Term="OData.LongDescription" String="This object represents the name of this Resource or array member. The Resource values shall comply with the Redfish Specification-described requirements. This string value shall be of the 'Name' reserved word format."/> |
Jason M. Bills | ea4aa75 | 2018-06-05 13:29:11 -0700 | [diff] [blame] | 106 | <Annotation Term="Redfish.Required"/> |
| 107 | </Property> |
Ed Tanous | 530520e | 2019-01-02 13:41:37 -0800 | [diff] [blame] | 108 | <Property Name="Status" Type="Resource.Status" Nullable="false"> |
Ed Tanous | cb10313 | 2019-10-08 11:34:22 -0700 | [diff] [blame] | 109 | <Annotation Term="OData.Description" String="The status and health of the Resource and its subordinate or dependent Resources."/> |
| 110 | <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] | 111 | </Property> |
Jason M. Bills | ea4aa75 | 2018-06-05 13:29:11 -0700 | [diff] [blame] | 112 | <Property Name="Manufacturer" Type="Edm.String"> |
| 113 | <Annotation Term="OData.Permissions" EnumMember="OData.Permission/Read"/> |
| 114 | <Annotation Term="OData.Description" String="The name of the manufacturer of this device."/> |
| 115 | <Annotation Term="OData.LongDescription" String="This property shall indicate the name of the manufacturer of this storage device."/> |
| 116 | </Property> |
| 117 | <Property Name="Model" Type="Edm.String"> |
| 118 | <Annotation Term="OData.Permissions" EnumMember="OData.Permission/Read"/> |
| 119 | <Annotation Term="OData.Description" String="The product model number of this device."/> |
| 120 | <Annotation Term="OData.LongDescription" String="This property shall indicate the model information as provided by the manufacturer of this storage device."/> |
| 121 | </Property> |
| 122 | </ComplexType> |
| 123 | |
| 124 | </Schema> |
| 125 | |
| 126 | <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="SimpleStorage.v1_0_2"> |
| 127 | <Annotation Term="Redfish.OwningEntity" String="DMTF"/> |
Ed Tanous | cb10313 | 2019-10-08 11:34:22 -0700 | [diff] [blame] | 128 | <Annotation Term="OData.Description" String="This version was created to show that annotations in previous namespaces were updated."/> |
Jason M. Bills | ea4aa75 | 2018-06-05 13:29:11 -0700 | [diff] [blame] | 129 | <EntityType Name="SimpleStorage" BaseType="SimpleStorage.v1_0_0.SimpleStorage"/> |
| 130 | </Schema> |
| 131 | |
| 132 | <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="SimpleStorage.v1_0_3"> |
| 133 | <Annotation Term="Redfish.OwningEntity" String="DMTF"/> |
Ed Tanous | cb10313 | 2019-10-08 11:34:22 -0700 | [diff] [blame] | 134 | <Annotation Term="OData.Description" String="This version was created to show that annotations in previous namespaces were updated."/> |
Jason M. Bills | ea4aa75 | 2018-06-05 13:29:11 -0700 | [diff] [blame] | 135 | <EntityType Name="SimpleStorage" BaseType="SimpleStorage.v1_0_2.SimpleStorage"/> |
| 136 | </Schema> |
| 137 | |
| 138 | <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="SimpleStorage.v1_0_4"> |
| 139 | <Annotation Term="Redfish.OwningEntity" String="DMTF"/> |
Ed Tanous | cb10313 | 2019-10-08 11:34:22 -0700 | [diff] [blame] | 140 | <Annotation Term="OData.Description" String="This version was created to show that annotations in previous namespaces were updated."/> |
Jason M. Bills | ea4aa75 | 2018-06-05 13:29:11 -0700 | [diff] [blame] | 141 | <EntityType Name="SimpleStorage" BaseType="SimpleStorage.v1_0_3.SimpleStorage"/> |
| 142 | </Schema> |
| 143 | |
Ed Tanous | 530520e | 2019-01-02 13:41:37 -0800 | [diff] [blame] | 144 | <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="SimpleStorage.v1_0_5"> |
| 145 | <Annotation Term="Redfish.OwningEntity" String="DMTF"/> |
| 146 | <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."/> |
| 147 | <EntityType Name="SimpleStorage" BaseType="SimpleStorage.v1_0_4.SimpleStorage"/> |
| 148 | </Schema> |
| 149 | |
Ed Tanous | cb10313 | 2019-10-08 11:34:22 -0700 | [diff] [blame] | 150 | <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="SimpleStorage.v1_0_6"> |
| 151 | <Annotation Term="Redfish.OwningEntity" String="DMTF"/> |
| 152 | <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."/> |
| 153 | <EntityType Name="SimpleStorage" BaseType="SimpleStorage.v1_0_5.SimpleStorage"/> |
| 154 | </Schema> |
| 155 | |
| 156 | <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="SimpleStorage.v1_0_7"> |
| 157 | <Annotation Term="Redfish.OwningEntity" String="DMTF"/> |
| 158 | <Annotation Term="OData.Description" String="This version was created to update descriptions that this schema defines."/> |
| 159 | <EntityType Name="SimpleStorage" BaseType="SimpleStorage.v1_0_6.SimpleStorage"/> |
| 160 | </Schema> |
| 161 | |
Jason M. Bills | ea4aa75 | 2018-06-05 13:29:11 -0700 | [diff] [blame] | 162 | <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="SimpleStorage.v1_1_0"> |
| 163 | <Annotation Term="Redfish.OwningEntity" String="DMTF"/> |
Marri Devender Rao | d45d2d0 | 2019-01-21 10:11:34 -0600 | [diff] [blame] | 164 | <Annotation Term="Redfish.Release" String="2016.1"/> |
Jason M. Bills | ea4aa75 | 2018-06-05 13:29:11 -0700 | [diff] [blame] | 165 | <EntityType Name="SimpleStorage" BaseType="SimpleStorage.v1_0_2.SimpleStorage"/> |
| 166 | |
| 167 | <ComplexType Name="Device" BaseType="SimpleStorage.v1_0_0.Device"> |
| 168 | <Property Name="CapacityBytes" Type="Edm.Int64"> |
| 169 | <Annotation Term="OData.Permissions" EnumMember="OData.Permission/Read"/> |
Ed Tanous | cb10313 | 2019-10-08 11:34:22 -0700 | [diff] [blame] | 170 | <Annotation Term="OData.Description" String="The size, in bytes, of the storage device."/> |
| 171 | <Annotation Term="OData.LongDescription" String="This property shall represent the size, in bytes, of the storage device."/> |
Jason M. Bills | ea4aa75 | 2018-06-05 13:29:11 -0700 | [diff] [blame] | 172 | <Annotation Term="Validation.Minimum" Int="0"/> |
| 173 | <Annotation Term="Measures.Unit" String="By"/> |
| 174 | </Property> |
| 175 | </ComplexType> |
| 176 | |
| 177 | </Schema> |
| 178 | |
| 179 | <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="SimpleStorage.v1_1_1"> |
| 180 | <Annotation Term="Redfish.OwningEntity" String="DMTF"/> |
Ed Tanous | cb10313 | 2019-10-08 11:34:22 -0700 | [diff] [blame] | 181 | <Annotation Term="OData.Description" String="This version was created to show that annotations in previous namespaces were updated."/> |
Jason M. Bills | ea4aa75 | 2018-06-05 13:29:11 -0700 | [diff] [blame] | 182 | <EntityType Name="SimpleStorage" BaseType="SimpleStorage.v1_1_0.SimpleStorage"/> |
| 183 | </Schema> |
| 184 | |
| 185 | <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="SimpleStorage.v1_1_2"> |
| 186 | <Annotation Term="Redfish.OwningEntity" String="DMTF"/> |
Ed Tanous | cb10313 | 2019-10-08 11:34:22 -0700 | [diff] [blame] | 187 | <Annotation Term="OData.Description" String="This version was created to show that annotations in previous namespaces were updated."/> |
Jason M. Bills | ea4aa75 | 2018-06-05 13:29:11 -0700 | [diff] [blame] | 188 | <EntityType Name="SimpleStorage" BaseType="SimpleStorage.v1_1_1.SimpleStorage"/> |
| 189 | </Schema> |
| 190 | |
Ed Tanous | 530520e | 2019-01-02 13:41:37 -0800 | [diff] [blame] | 191 | <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="SimpleStorage.v1_1_3"> |
| 192 | <Annotation Term="Redfish.OwningEntity" String="DMTF"/> |
| 193 | <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."/> |
| 194 | <EntityType Name="SimpleStorage" BaseType="SimpleStorage.v1_1_2.SimpleStorage"/> |
| 195 | </Schema> |
| 196 | |
Ed Tanous | cb10313 | 2019-10-08 11:34:22 -0700 | [diff] [blame] | 197 | <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="SimpleStorage.v1_1_4"> |
| 198 | <Annotation Term="Redfish.OwningEntity" String="DMTF"/> |
| 199 | <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."/> |
| 200 | <EntityType Name="SimpleStorage" BaseType="SimpleStorage.v1_1_3.SimpleStorage"/> |
| 201 | </Schema> |
| 202 | |
| 203 | <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="SimpleStorage.v1_1_5"> |
| 204 | <Annotation Term="Redfish.OwningEntity" String="DMTF"/> |
| 205 | <Annotation Term="OData.Description" String="This version was created to update descriptions that this schema defines."/> |
| 206 | <EntityType Name="SimpleStorage" BaseType="SimpleStorage.v1_1_4.SimpleStorage"/> |
| 207 | </Schema> |
| 208 | |
Jason M. Bills | ea4aa75 | 2018-06-05 13:29:11 -0700 | [diff] [blame] | 209 | <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="SimpleStorage.v1_2_0"> |
| 210 | <Annotation Term="Redfish.OwningEntity" String="DMTF"/> |
Marri Devender Rao | d45d2d0 | 2019-01-21 10:11:34 -0600 | [diff] [blame] | 211 | <Annotation Term="Redfish.Release" String="2017.1"/> |
Jason M. Bills | ea4aa75 | 2018-06-05 13:29:11 -0700 | [diff] [blame] | 212 | <EntityType Name="SimpleStorage" BaseType="SimpleStorage.v1_1_2.SimpleStorage"> |
| 213 | <Property Name="Links" Type="SimpleStorage.v1_2_0.Links" Nullable="false"> |
Ed Tanous | cb10313 | 2019-10-08 11:34:22 -0700 | [diff] [blame] | 214 | <Annotation Term="OData.Description" String="The links to other Resources that are related to this Resource."/> |
| 215 | <Annotation Term="OData.LongDescription" String="The Redfish Specification-described Links Property shall contain links to Resources related to but not subordinate to this Resource."/> |
Jason M. Bills | ea4aa75 | 2018-06-05 13:29:11 -0700 | [diff] [blame] | 216 | </Property> |
| 217 | <Property Name="Actions" Type="SimpleStorage.v1_2_0.Actions" Nullable="false"> |
Ed Tanous | cb10313 | 2019-10-08 11:34:22 -0700 | [diff] [blame] | 218 | <Annotation Term="OData.Description" String="The available actions for this Resource."/> |
| 219 | <Annotation Term="OData.LongDescription" String="This property shall contain the available actions for this Resource."/> |
Jason M. Bills | ea4aa75 | 2018-06-05 13:29:11 -0700 | [diff] [blame] | 220 | </Property> |
| 221 | </EntityType> |
| 222 | |
| 223 | <ComplexType Name="Links" BaseType="Resource.Links"> |
Ed Tanous | cb10313 | 2019-10-08 11:34:22 -0700 | [diff] [blame] | 224 | <Annotation Term="OData.Description" String="The links to other Resources that are related to this Resource."/> |
| 225 | <Annotation Term="OData.LongDescription" String="The Redfish Specification-described type shall contain links to Resources related to but not subordinate to this Resource."/> |
Jason M. Bills | ea4aa75 | 2018-06-05 13:29:11 -0700 | [diff] [blame] | 226 | <NavigationProperty Name="Chassis" Type="Chassis.Chassis" Nullable="false"> |
| 227 | <Annotation Term="OData.Permissions" EnumMember="OData.Permission/Read"/> |
Ed Tanous | cb10313 | 2019-10-08 11:34:22 -0700 | [diff] [blame] | 228 | <Annotation Term="OData.Description" String="The link to the chassis that contains this simple storage."/> |
| 229 | <Annotation Term="OData.LongDescription" String="This property shall contain a link to a Resource of type Chassis that represents the physical container associated with this Resource."/> |
Jason M. Bills | ea4aa75 | 2018-06-05 13:29:11 -0700 | [diff] [blame] | 230 | <Annotation Term="OData.AutoExpandReferences"/> |
| 231 | </NavigationProperty> |
| 232 | </ComplexType> |
| 233 | |
| 234 | <ComplexType Name="Actions"> |
| 235 | <Annotation Term="OData.AdditionalProperties" Bool="false"/> |
Ed Tanous | cb10313 | 2019-10-08 11:34:22 -0700 | [diff] [blame] | 236 | <Annotation Term="OData.Description" String="The available actions for this Resource."/> |
| 237 | <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] | 238 | <Property Name="Oem" Type="SimpleStorage.v1_2_0.OemActions" Nullable="false"> |
Ed Tanous | cb10313 | 2019-10-08 11:34:22 -0700 | [diff] [blame] | 239 | <Annotation Term="OData.Description" String="The available OEM-specific actions for this Resource."/> |
| 240 | <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] | 241 | </Property> |
Jason M. Bills | ea4aa75 | 2018-06-05 13:29:11 -0700 | [diff] [blame] | 242 | </ComplexType> |
| 243 | |
| 244 | <ComplexType Name="OemActions"> |
| 245 | <Annotation Term="OData.AdditionalProperties" Bool="true"/> |
Ed Tanous | cb10313 | 2019-10-08 11:34:22 -0700 | [diff] [blame] | 246 | <Annotation Term="OData.Description" String="The available OEM-specific actions for this Resource."/> |
| 247 | <Annotation Term="OData.LongDescription" String="This type shall contain the available OEM-specific actions for this Resource."/> |
Jason M. Bills | ea4aa75 | 2018-06-05 13:29:11 -0700 | [diff] [blame] | 248 | </ComplexType> |
| 249 | </Schema> |
| 250 | |
Ed Tanous | 530520e | 2019-01-02 13:41:37 -0800 | [diff] [blame] | 251 | <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="SimpleStorage.v1_2_1"> |
| 252 | <Annotation Term="Redfish.OwningEntity" String="DMTF"/> |
| 253 | <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."/> |
| 254 | <EntityType Name="SimpleStorage" BaseType="SimpleStorage.v1_2_0.SimpleStorage"/> |
| 255 | </Schema> |
| 256 | |
Ed Tanous | cb10313 | 2019-10-08 11:34:22 -0700 | [diff] [blame] | 257 | <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="SimpleStorage.v1_2_2"> |
| 258 | <Annotation Term="Redfish.OwningEntity" String="DMTF"/> |
| 259 | <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."/> |
| 260 | <EntityType Name="SimpleStorage" BaseType="SimpleStorage.v1_2_1.SimpleStorage"/> |
| 261 | </Schema> |
| 262 | |
| 263 | <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="SimpleStorage.v1_2_3"> |
| 264 | <Annotation Term="Redfish.OwningEntity" String="DMTF"/> |
| 265 | <Annotation Term="OData.Description" String="This version was created to update descriptions that this schema defines."/> |
| 266 | <EntityType Name="SimpleStorage" BaseType="SimpleStorage.v1_2_2.SimpleStorage"/> |
| 267 | </Schema> |
| 268 | |
Asmitha Karunanithi | c8ccb77 | 2020-09-22 10:56:46 -0500 | [diff] [blame^] | 269 | <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="SimpleStorage.v1_3_0"> |
| 270 | <Annotation Term="Redfish.OwningEntity" String="DMTF"/> |
| 271 | <Annotation Term="Redfish.Release" String="2020.3"/> |
| 272 | <EntityType Name="SimpleStorage" BaseType="SimpleStorage.v1_2_3.SimpleStorage"/> |
| 273 | <ComplexType Name="Links" BaseType="SimpleStorage.v1_2_0.Links"> |
| 274 | <NavigationProperty Name="Storage" Type="Storage.Storage" Nullable="false"> |
| 275 | <Annotation Term="OData.Permissions" EnumMember="OData.Permission/Read"/> |
| 276 | <Annotation Term="OData.Description" String="The link to the storage instance that corresponds to this simple storage."/> |
| 277 | <Annotation Term="OData.LongDescription" String="This property shall contain a link to a Resource of type Storage that represents the same storage subsystem as this Resource."/> |
| 278 | <Annotation Term="OData.AutoExpandReferences"/> |
| 279 | </NavigationProperty> |
| 280 | </ComplexType> |
| 281 | </Schema> |
| 282 | |
Jason M. Bills | ea4aa75 | 2018-06-05 13:29:11 -0700 | [diff] [blame] | 283 | </edmx:DataServices> |
| 284 | </edmx:Edmx> |