Ed Tanous | 118b1c7 | 2018-09-13 13:45:51 -0700 | [diff] [blame] | 1 | { |
Gunnar Mills | 2ae81db | 2024-01-31 14:25:11 -0600 | [diff] [blame^] | 2 | "$id": "http://redfish.dmtf.org/schemas/v1/ServiceRoot.v1_16_1.json", |
Ed Tanous | 118b1c7 | 2018-09-13 13:45:51 -0700 | [diff] [blame] | 3 | "$ref": "#/definitions/ServiceRoot", |
Ed Tanous | 530520e | 2019-01-02 13:41:37 -0800 | [diff] [blame] | 4 | "$schema": "http://redfish.dmtf.org/schemas/v1/redfish-schema-v1.json", |
Ed Tanous | f263e09 | 2023-05-22 09:56:29 -0700 | [diff] [blame] | 5 | "copyright": "Copyright 2014-2023 DMTF. For the full DMTF copyright policy, see http://www.dmtf.org/about/policies/copyright", |
Ed Tanous | 118b1c7 | 2018-09-13 13:45:51 -0700 | [diff] [blame] | 6 | "definitions": { |
Gunnar Mills | a778c02 | 2020-05-12 12:20:36 -0500 | [diff] [blame] | 7 | "DeepOperations": { |
| 8 | "additionalProperties": false, |
| 9 | "description": "The information about deep operations that the service supports.", |
| 10 | "longDescription": "This type shall contain information about deep operations that the service supports.", |
| 11 | "patternProperties": { |
| 12 | "^([a-zA-Z_][a-zA-Z0-9_]*)?@(odata|Redfish|Message)\\.[a-zA-Z_][a-zA-Z0-9_]*$": { |
| 13 | "description": "This property shall specify a valid odata or Redfish property.", |
| 14 | "type": [ |
| 15 | "array", |
| 16 | "boolean", |
| 17 | "integer", |
| 18 | "number", |
| 19 | "null", |
| 20 | "object", |
| 21 | "string" |
| 22 | ] |
| 23 | } |
| 24 | }, |
| 25 | "properties": { |
| 26 | "DeepPATCH": { |
| 27 | "description": "An indication of whether the service supports the deep PATCH operation.", |
| 28 | "longDescription": "This property shall indicate whether this service supports the Redfish Specification-defined deep PATCH operation.", |
| 29 | "readonly": true, |
| 30 | "type": "boolean", |
| 31 | "versionAdded": "v1_7_0" |
| 32 | }, |
| 33 | "DeepPOST": { |
| 34 | "description": "An indication of whether the service supports the deep POST operation.", |
| 35 | "longDescription": "This property shall indicate whether this service supports the Redfish Specification-defined deep POST operation.", |
| 36 | "readonly": true, |
| 37 | "type": "boolean", |
| 38 | "versionAdded": "v1_7_0" |
| 39 | }, |
| 40 | "MaxLevels": { |
| 41 | "description": "The maximum levels of resources allowed in deep operations.", |
| 42 | "longDescription": "This property shall contain the maximum levels of resources allowed in deep operations.", |
Gunnar Mills | a778c02 | 2020-05-12 12:20:36 -0500 | [diff] [blame] | 43 | "minimum": 1, |
| 44 | "readonly": true, |
| 45 | "type": "integer", |
| 46 | "versionAdded": "v1_7_0" |
| 47 | } |
| 48 | }, |
| 49 | "type": "object" |
| 50 | }, |
Ed Tanous | 118b1c7 | 2018-09-13 13:45:51 -0700 | [diff] [blame] | 51 | "Expand": { |
| 52 | "additionalProperties": false, |
Gunnar Mills | 2ae81db | 2024-01-31 14:25:11 -0600 | [diff] [blame^] | 53 | "description": "The information about the use of `$expand` in the service.", |
| 54 | "longDescription": "This type shall contain information about the support of the `$expand` query parameter by the service.", |
Ed Tanous | 118b1c7 | 2018-09-13 13:45:51 -0700 | [diff] [blame] | 55 | "patternProperties": { |
Ed Tanous | cb10313 | 2019-10-08 11:34:22 -0700 | [diff] [blame] | 56 | "^([a-zA-Z_][a-zA-Z0-9_]*)?@(odata|Redfish|Message)\\.[a-zA-Z_][a-zA-Z0-9_]*$": { |
Ed Tanous | 118b1c7 | 2018-09-13 13:45:51 -0700 | [diff] [blame] | 57 | "description": "This property shall specify a valid odata or Redfish property.", |
| 58 | "type": [ |
| 59 | "array", |
| 60 | "boolean", |
Ed Tanous | 530520e | 2019-01-02 13:41:37 -0800 | [diff] [blame] | 61 | "integer", |
Ed Tanous | 118b1c7 | 2018-09-13 13:45:51 -0700 | [diff] [blame] | 62 | "number", |
| 63 | "null", |
| 64 | "object", |
| 65 | "string" |
| 66 | ] |
| 67 | } |
| 68 | }, |
| 69 | "properties": { |
| 70 | "ExpandAll": { |
Gunnar Mills | 2ae81db | 2024-01-31 14:25:11 -0600 | [diff] [blame^] | 71 | "description": "An indication of whether the service supports the asterisk (`*`) option of the `$expand` query parameter.", |
| 72 | "longDescription": "This property shall indicate whether this service supports the asterisk (`*`) option of the `$expand` query parameter.", |
Ed Tanous | 118b1c7 | 2018-09-13 13:45:51 -0700 | [diff] [blame] | 73 | "readonly": true, |
Marri Devender Rao | d45d2d0 | 2019-01-21 10:11:34 -0600 | [diff] [blame] | 74 | "type": "boolean", |
| 75 | "versionAdded": "v1_3_0" |
Ed Tanous | 118b1c7 | 2018-09-13 13:45:51 -0700 | [diff] [blame] | 76 | }, |
| 77 | "Levels": { |
Gunnar Mills | 2ae81db | 2024-01-31 14:25:11 -0600 | [diff] [blame^] | 78 | "description": "An indication of whether the service supports the `$levels` option of the `$expand` query parameter.", |
| 79 | "longDescription": "This property shall indicate whether the service supports the `$levels` option of the `$expand` query parameter.", |
Ed Tanous | 118b1c7 | 2018-09-13 13:45:51 -0700 | [diff] [blame] | 80 | "readonly": true, |
Marri Devender Rao | d45d2d0 | 2019-01-21 10:11:34 -0600 | [diff] [blame] | 81 | "type": "boolean", |
| 82 | "versionAdded": "v1_3_0" |
Ed Tanous | 118b1c7 | 2018-09-13 13:45:51 -0700 | [diff] [blame] | 83 | }, |
| 84 | "Links": { |
Gunnar Mills | 2ae81db | 2024-01-31 14:25:11 -0600 | [diff] [blame^] | 85 | "description": "An indication of whether this service supports the tilde (`~`) option of the `$expand` query parameter.", |
| 86 | "longDescription": "This property shall indicate whether this service supports the supports the tilde (~) option of the `$expand` query parameter.", |
Ed Tanous | 118b1c7 | 2018-09-13 13:45:51 -0700 | [diff] [blame] | 87 | "readonly": true, |
Marri Devender Rao | d45d2d0 | 2019-01-21 10:11:34 -0600 | [diff] [blame] | 88 | "type": "boolean", |
| 89 | "versionAdded": "v1_3_0" |
Ed Tanous | 118b1c7 | 2018-09-13 13:45:51 -0700 | [diff] [blame] | 90 | }, |
| 91 | "MaxLevels": { |
Gunnar Mills | 2ae81db | 2024-01-31 14:25:11 -0600 | [diff] [blame^] | 92 | "description": "The maximum `$levels` option value in the `$expand` query parameter.", |
| 93 | "longDescription": "This property shall contain the maximum `$levels` option value in the `$expand` query parameter. This property shall be present if the Levels property contains `true`.", |
Ed Tanous | 118b1c7 | 2018-09-13 13:45:51 -0700 | [diff] [blame] | 94 | "minimum": 1, |
| 95 | "readonly": true, |
Marri Devender Rao | d45d2d0 | 2019-01-21 10:11:34 -0600 | [diff] [blame] | 96 | "type": "integer", |
| 97 | "versionAdded": "v1_3_0" |
Ed Tanous | 118b1c7 | 2018-09-13 13:45:51 -0700 | [diff] [blame] | 98 | }, |
| 99 | "NoLinks": { |
Gunnar Mills | 2ae81db | 2024-01-31 14:25:11 -0600 | [diff] [blame^] | 100 | "description": "An indication of whether the service supports the period (`.`) option of the `$expand` query parameter.", |
| 101 | "longDescription": "This property shall indicate whether the service supports the period (`.`) option of the `$expand` query parameter.", |
Ed Tanous | 118b1c7 | 2018-09-13 13:45:51 -0700 | [diff] [blame] | 102 | "readonly": true, |
Marri Devender Rao | d45d2d0 | 2019-01-21 10:11:34 -0600 | [diff] [blame] | 103 | "type": "boolean", |
| 104 | "versionAdded": "v1_3_0" |
Ed Tanous | 118b1c7 | 2018-09-13 13:45:51 -0700 | [diff] [blame] | 105 | } |
| 106 | }, |
| 107 | "type": "object" |
| 108 | }, |
| 109 | "Links": { |
| 110 | "additionalProperties": false, |
Ed Tanous | a8d8f9d | 2023-01-26 13:57:00 -0800 | [diff] [blame] | 111 | "description": "The links to other resources that are related to this resource.", |
| 112 | "longDescription": "This Redfish Specification-described type shall contain links to resources that are related to but are not contained by, or subordinate to, this resource.", |
Ed Tanous | 118b1c7 | 2018-09-13 13:45:51 -0700 | [diff] [blame] | 113 | "patternProperties": { |
Ed Tanous | cb10313 | 2019-10-08 11:34:22 -0700 | [diff] [blame] | 114 | "^([a-zA-Z_][a-zA-Z0-9_]*)?@(odata|Redfish|Message)\\.[a-zA-Z_][a-zA-Z0-9_]*$": { |
Ed Tanous | 118b1c7 | 2018-09-13 13:45:51 -0700 | [diff] [blame] | 115 | "description": "This property shall specify a valid odata or Redfish property.", |
| 116 | "type": [ |
| 117 | "array", |
| 118 | "boolean", |
Ed Tanous | 530520e | 2019-01-02 13:41:37 -0800 | [diff] [blame] | 119 | "integer", |
Ed Tanous | 118b1c7 | 2018-09-13 13:45:51 -0700 | [diff] [blame] | 120 | "number", |
| 121 | "null", |
| 122 | "object", |
| 123 | "string" |
| 124 | ] |
| 125 | } |
| 126 | }, |
| 127 | "properties": { |
Ed Tanous | a8d8f9d | 2023-01-26 13:57:00 -0800 | [diff] [blame] | 128 | "ManagerProvidingService": { |
| 129 | "$ref": "http://redfish.dmtf.org/schemas/v1/Manager.json#/definitions/Manager", |
| 130 | "description": "The link to the manager that is providing this Redfish service.", |
| 131 | "longDescription": "This property shall contain a link to a resource of type Manager that represents the manager providing this Redfish service.", |
| 132 | "readonly": true, |
| 133 | "versionAdded": "v1_15_0" |
| 134 | }, |
Ed Tanous | 118b1c7 | 2018-09-13 13:45:51 -0700 | [diff] [blame] | 135 | "Oem": { |
| 136 | "$ref": "http://redfish.dmtf.org/schemas/v1/Resource.json#/definitions/Oem", |
Ed Tanous | cb10313 | 2019-10-08 11:34:22 -0700 | [diff] [blame] | 137 | "description": "The OEM extension property.", |
| 138 | "longDescription": "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 | 118b1c7 | 2018-09-13 13:45:51 -0700 | [diff] [blame] | 139 | }, |
| 140 | "Sessions": { |
| 141 | "$ref": "http://redfish.dmtf.org/schemas/v1/SessionCollection.json#/definitions/SessionCollection", |
Ed Tanous | a8d8f9d | 2023-01-26 13:57:00 -0800 | [diff] [blame] | 142 | "description": "The link to a collection of sessions.", |
| 143 | "longDescription": "This property shall contain a link to a resource collection of type SessionCollection.", |
Ed Tanous | 118b1c7 | 2018-09-13 13:45:51 -0700 | [diff] [blame] | 144 | "readonly": true |
| 145 | } |
| 146 | }, |
| 147 | "required": [ |
| 148 | "Sessions" |
| 149 | ], |
| 150 | "type": "object" |
| 151 | }, |
| 152 | "ProtocolFeaturesSupported": { |
| 153 | "additionalProperties": false, |
Ed Tanous | cb10313 | 2019-10-08 11:34:22 -0700 | [diff] [blame] | 154 | "description": "The information about protocol features that the service supports.", |
| 155 | "longDescription": "This type shall contain information about protocol features that the service supports.", |
Ed Tanous | 118b1c7 | 2018-09-13 13:45:51 -0700 | [diff] [blame] | 156 | "patternProperties": { |
Ed Tanous | cb10313 | 2019-10-08 11:34:22 -0700 | [diff] [blame] | 157 | "^([a-zA-Z_][a-zA-Z0-9_]*)?@(odata|Redfish|Message)\\.[a-zA-Z_][a-zA-Z0-9_]*$": { |
Ed Tanous | 118b1c7 | 2018-09-13 13:45:51 -0700 | [diff] [blame] | 158 | "description": "This property shall specify a valid odata or Redfish property.", |
| 159 | "type": [ |
| 160 | "array", |
| 161 | "boolean", |
Ed Tanous | 530520e | 2019-01-02 13:41:37 -0800 | [diff] [blame] | 162 | "integer", |
Ed Tanous | 118b1c7 | 2018-09-13 13:45:51 -0700 | [diff] [blame] | 163 | "number", |
| 164 | "null", |
| 165 | "object", |
| 166 | "string" |
| 167 | ] |
| 168 | } |
| 169 | }, |
| 170 | "properties": { |
Gunnar Mills | a778c02 | 2020-05-12 12:20:36 -0500 | [diff] [blame] | 171 | "DeepOperations": { |
| 172 | "$ref": "#/definitions/DeepOperations", |
| 173 | "description": "The information about deep operations that the service supports.", |
| 174 | "longDescription": "This property shall contain information about deep operations that the service supports.", |
| 175 | "versionAdded": "v1_7_0" |
| 176 | }, |
Ed Tanous | 530520e | 2019-01-02 13:41:37 -0800 | [diff] [blame] | 177 | "ExcerptQuery": { |
Gunnar Mills | 2ae81db | 2024-01-31 14:25:11 -0600 | [diff] [blame^] | 178 | "description": "An indication of whether the service supports the `excerpt` query parameter.", |
| 179 | "longDescription": "This property shall indicate whether this service supports the `excerpt` query parameter.", |
Ed Tanous | 530520e | 2019-01-02 13:41:37 -0800 | [diff] [blame] | 180 | "readonly": true, |
Marri Devender Rao | d45d2d0 | 2019-01-21 10:11:34 -0600 | [diff] [blame] | 181 | "type": "boolean", |
| 182 | "versionAdded": "v1_4_0" |
Ed Tanous | 530520e | 2019-01-02 13:41:37 -0800 | [diff] [blame] | 183 | }, |
Ed Tanous | 118b1c7 | 2018-09-13 13:45:51 -0700 | [diff] [blame] | 184 | "ExpandQuery": { |
| 185 | "$ref": "#/definitions/Expand", |
Gunnar Mills | 2ae81db | 2024-01-31 14:25:11 -0600 | [diff] [blame^] | 186 | "description": "The information about the use of `$expand` in the service.", |
| 187 | "longDescription": "This property shall contain information about the support of the `$expand` query parameter by the service.", |
Marri Devender Rao | d45d2d0 | 2019-01-21 10:11:34 -0600 | [diff] [blame] | 188 | "versionAdded": "v1_3_0" |
Ed Tanous | 118b1c7 | 2018-09-13 13:45:51 -0700 | [diff] [blame] | 189 | }, |
| 190 | "FilterQuery": { |
Gunnar Mills | 2ae81db | 2024-01-31 14:25:11 -0600 | [diff] [blame^] | 191 | "description": "An indication of whether the service supports the `$filter` query parameter.", |
| 192 | "longDescription": "This property shall indicate whether this service supports the `$filter` query parameter.", |
Ed Tanous | 530520e | 2019-01-02 13:41:37 -0800 | [diff] [blame] | 193 | "readonly": true, |
Marri Devender Rao | d45d2d0 | 2019-01-21 10:11:34 -0600 | [diff] [blame] | 194 | "type": "boolean", |
| 195 | "versionAdded": "v1_3_0" |
Ed Tanous | 530520e | 2019-01-02 13:41:37 -0800 | [diff] [blame] | 196 | }, |
Ed Tanous | ed76121 | 2022-09-23 15:03:29 -0700 | [diff] [blame] | 197 | "MultipleHTTPRequests": { |
| 198 | "description": "An indication of whether the service supports multiple outstanding HTTP requests.", |
| 199 | "longDescription": "This property shall indicate whether this service supports multiple outstanding HTTP requests.", |
| 200 | "readonly": true, |
| 201 | "type": "boolean", |
| 202 | "versionAdded": "v1_14_0" |
| 203 | }, |
Ed Tanous | 530520e | 2019-01-02 13:41:37 -0800 | [diff] [blame] | 204 | "OnlyMemberQuery": { |
Gunnar Mills | 2ae81db | 2024-01-31 14:25:11 -0600 | [diff] [blame^] | 205 | "description": "An indication of whether the service supports the `only` query parameter.", |
| 206 | "longDescription": "This property shall indicate whether this service supports the `only` query parameter.", |
Ed Tanous | 118b1c7 | 2018-09-13 13:45:51 -0700 | [diff] [blame] | 207 | "readonly": true, |
Marri Devender Rao | d45d2d0 | 2019-01-21 10:11:34 -0600 | [diff] [blame] | 208 | "type": "boolean", |
| 209 | "versionAdded": "v1_4_0" |
Ed Tanous | 118b1c7 | 2018-09-13 13:45:51 -0700 | [diff] [blame] | 210 | }, |
| 211 | "SelectQuery": { |
Gunnar Mills | 2ae81db | 2024-01-31 14:25:11 -0600 | [diff] [blame^] | 212 | "description": "An indication of whether the service supports the `$select` query parameter.", |
| 213 | "longDescription": "This property shall indicate whether this service supports the `$select` query parameter.", |
Ed Tanous | 118b1c7 | 2018-09-13 13:45:51 -0700 | [diff] [blame] | 214 | "readonly": true, |
Marri Devender Rao | d45d2d0 | 2019-01-21 10:11:34 -0600 | [diff] [blame] | 215 | "type": "boolean", |
| 216 | "versionAdded": "v1_3_0" |
Ed Tanous | 118b1c7 | 2018-09-13 13:45:51 -0700 | [diff] [blame] | 217 | } |
| 218 | }, |
| 219 | "type": "object" |
| 220 | }, |
| 221 | "ServiceRoot": { |
| 222 | "additionalProperties": false, |
Ed Tanous | a8d8f9d | 2023-01-26 13:57:00 -0800 | [diff] [blame] | 223 | "description": "The ServiceRoot schema describes the root of the Redfish service, located at the '/redfish/v1' URI. All other resources accessible through the Redfish interface on this device are linked directly or indirectly from the service root.", |
| 224 | "longDescription": "This resource shall represent the root of the Redfish service.", |
Ed Tanous | 118b1c7 | 2018-09-13 13:45:51 -0700 | [diff] [blame] | 225 | "patternProperties": { |
Ed Tanous | cb10313 | 2019-10-08 11:34:22 -0700 | [diff] [blame] | 226 | "^([a-zA-Z_][a-zA-Z0-9_]*)?@(odata|Redfish|Message)\\.[a-zA-Z_][a-zA-Z0-9_]*$": { |
Ed Tanous | 118b1c7 | 2018-09-13 13:45:51 -0700 | [diff] [blame] | 227 | "description": "This property shall specify a valid odata or Redfish property.", |
| 228 | "type": [ |
| 229 | "array", |
| 230 | "boolean", |
Ed Tanous | 530520e | 2019-01-02 13:41:37 -0800 | [diff] [blame] | 231 | "integer", |
Ed Tanous | 118b1c7 | 2018-09-13 13:45:51 -0700 | [diff] [blame] | 232 | "number", |
| 233 | "null", |
| 234 | "object", |
| 235 | "string" |
| 236 | ] |
| 237 | } |
| 238 | }, |
| 239 | "properties": { |
| 240 | "@odata.context": { |
Ed Tanous | cb10313 | 2019-10-08 11:34:22 -0700 | [diff] [blame] | 241 | "$ref": "http://redfish.dmtf.org/schemas/v1/odata-v4.json#/definitions/context" |
Ed Tanous | 118b1c7 | 2018-09-13 13:45:51 -0700 | [diff] [blame] | 242 | }, |
| 243 | "@odata.etag": { |
Ed Tanous | cb10313 | 2019-10-08 11:34:22 -0700 | [diff] [blame] | 244 | "$ref": "http://redfish.dmtf.org/schemas/v1/odata-v4.json#/definitions/etag" |
Ed Tanous | 118b1c7 | 2018-09-13 13:45:51 -0700 | [diff] [blame] | 245 | }, |
| 246 | "@odata.id": { |
Ed Tanous | cb10313 | 2019-10-08 11:34:22 -0700 | [diff] [blame] | 247 | "$ref": "http://redfish.dmtf.org/schemas/v1/odata-v4.json#/definitions/id" |
Ed Tanous | 118b1c7 | 2018-09-13 13:45:51 -0700 | [diff] [blame] | 248 | }, |
| 249 | "@odata.type": { |
Ed Tanous | cb10313 | 2019-10-08 11:34:22 -0700 | [diff] [blame] | 250 | "$ref": "http://redfish.dmtf.org/schemas/v1/odata-v4.json#/definitions/type" |
Ed Tanous | 118b1c7 | 2018-09-13 13:45:51 -0700 | [diff] [blame] | 251 | }, |
| 252 | "AccountService": { |
| 253 | "$ref": "http://redfish.dmtf.org/schemas/v1/AccountService.json#/definitions/AccountService", |
Ed Tanous | a8d8f9d | 2023-01-26 13:57:00 -0800 | [diff] [blame] | 254 | "description": "The link to the account service.", |
| 255 | "longDescription": "This property shall contain a link to a resource of type AccountService.", |
Ed Tanous | 118b1c7 | 2018-09-13 13:45:51 -0700 | [diff] [blame] | 256 | "readonly": true |
| 257 | }, |
Gunnar Mills | 844b415 | 2020-06-22 12:44:09 -0500 | [diff] [blame] | 258 | "AggregationService": { |
| 259 | "$ref": "http://redfish.dmtf.org/schemas/v1/AggregationService.json#/definitions/AggregationService", |
| 260 | "description": "The link to the aggregation service.", |
| 261 | "longDescription": "This property shall contain a link to a resource of type AggregationService.", |
| 262 | "readonly": true, |
| 263 | "versionAdded": "v1_8_0" |
| 264 | }, |
Gunnar Mills | 9d42466 | 2021-09-22 21:56:16 -0500 | [diff] [blame] | 265 | "Cables": { |
| 266 | "$ref": "http://redfish.dmtf.org/schemas/v1/CableCollection.json#/definitions/CableCollection", |
| 267 | "description": "The link to a collection of cables.", |
| 268 | "longDescription": "This property shall contain a link to a resource collection of type CableCollection.", |
| 269 | "readonly": true, |
| 270 | "versionAdded": "v1_11_0" |
| 271 | }, |
Marri Devender Rao | d45d2d0 | 2019-01-21 10:11:34 -0600 | [diff] [blame] | 272 | "CertificateService": { |
| 273 | "$ref": "http://redfish.dmtf.org/schemas/v1/CertificateService.json#/definitions/CertificateService", |
Ed Tanous | a8d8f9d | 2023-01-26 13:57:00 -0800 | [diff] [blame] | 274 | "description": "The link to the certificate service.", |
| 275 | "longDescription": "This property shall contain a link to a resource of type CertificateService.", |
Marri Devender Rao | d45d2d0 | 2019-01-21 10:11:34 -0600 | [diff] [blame] | 276 | "readonly": true, |
| 277 | "versionAdded": "v1_5_0" |
| 278 | }, |
Ed Tanous | 118b1c7 | 2018-09-13 13:45:51 -0700 | [diff] [blame] | 279 | "Chassis": { |
| 280 | "$ref": "http://redfish.dmtf.org/schemas/v1/ChassisCollection.json#/definitions/ChassisCollection", |
Ed Tanous | cb10313 | 2019-10-08 11:34:22 -0700 | [diff] [blame] | 281 | "description": "The link to a collection of chassis.", |
Ed Tanous | a8d8f9d | 2023-01-26 13:57:00 -0800 | [diff] [blame] | 282 | "longDescription": "This property shall contain a link to a resource collection of type ChassisCollection.", |
Ed Tanous | 118b1c7 | 2018-09-13 13:45:51 -0700 | [diff] [blame] | 283 | "readonly": true |
| 284 | }, |
Sui Chen | 141d943 | 2022-02-03 22:01:27 -0800 | [diff] [blame] | 285 | "ComponentIntegrity": { |
| 286 | "$ref": "http://redfish.dmtf.org/schemas/v1/ComponentIntegrityCollection.json#/definitions/ComponentIntegrityCollection", |
| 287 | "description": "The link to a collection of component integrity information.", |
| 288 | "longDescription": "This property shall contain a link to a resource collection of type ComponentIntegrityCollection.", |
| 289 | "readonly": true, |
| 290 | "versionAdded": "v1_13_0" |
| 291 | }, |
Ed Tanous | 118b1c7 | 2018-09-13 13:45:51 -0700 | [diff] [blame] | 292 | "CompositionService": { |
| 293 | "$ref": "http://redfish.dmtf.org/schemas/v1/CompositionService.json#/definitions/CompositionService", |
Ed Tanous | a8d8f9d | 2023-01-26 13:57:00 -0800 | [diff] [blame] | 294 | "description": "The link to the composition service.", |
| 295 | "longDescription": "This property shall contain a link to a resource of type CompositionService.", |
Marri Devender Rao | d45d2d0 | 2019-01-21 10:11:34 -0600 | [diff] [blame] | 296 | "readonly": true, |
| 297 | "versionAdded": "v1_2_0" |
Ed Tanous | 118b1c7 | 2018-09-13 13:45:51 -0700 | [diff] [blame] | 298 | }, |
| 299 | "Description": { |
| 300 | "anyOf": [ |
| 301 | { |
| 302 | "$ref": "http://redfish.dmtf.org/schemas/v1/Resource.json#/definitions/Description" |
| 303 | }, |
| 304 | { |
| 305 | "type": "null" |
| 306 | } |
| 307 | ], |
| 308 | "readonly": true |
| 309 | }, |
| 310 | "EventService": { |
| 311 | "$ref": "http://redfish.dmtf.org/schemas/v1/EventService.json#/definitions/EventService", |
Ed Tanous | a8d8f9d | 2023-01-26 13:57:00 -0800 | [diff] [blame] | 312 | "description": "The link to the event service.", |
| 313 | "longDescription": "This property shall contain a link to a resource of type EventService.", |
Ed Tanous | 118b1c7 | 2018-09-13 13:45:51 -0700 | [diff] [blame] | 314 | "readonly": true |
| 315 | }, |
| 316 | "Fabrics": { |
| 317 | "$ref": "http://redfish.dmtf.org/schemas/v1/FabricCollection.json#/definitions/FabricCollection", |
Ed Tanous | a8d8f9d | 2023-01-26 13:57:00 -0800 | [diff] [blame] | 318 | "description": "The link to a collection of fabrics.", |
| 319 | "longDescription": "This property shall contain a link to a resource collection of type FabricCollection.", |
Marri Devender Rao | d45d2d0 | 2019-01-21 10:11:34 -0600 | [diff] [blame] | 320 | "readonly": true, |
| 321 | "versionAdded": "v1_1_0" |
Ed Tanous | 118b1c7 | 2018-09-13 13:45:51 -0700 | [diff] [blame] | 322 | }, |
Gunnar Mills | 09b9d45 | 2020-02-11 13:27:39 -0600 | [diff] [blame] | 323 | "Facilities": { |
| 324 | "$ref": "http://redfish.dmtf.org/schemas/v1/FacilityCollection.json#/definitions/FacilityCollection", |
| 325 | "description": "The link to a collection of facilities.", |
| 326 | "longDescription": "This property shall contain a link to a resource collection of type FacilityCollection.", |
| 327 | "readonly": true, |
| 328 | "versionAdded": "v1_6_0" |
| 329 | }, |
Ed Tanous | 118b1c7 | 2018-09-13 13:45:51 -0700 | [diff] [blame] | 330 | "Id": { |
| 331 | "$ref": "http://redfish.dmtf.org/schemas/v1/Resource.json#/definitions/Id", |
| 332 | "readonly": true |
| 333 | }, |
Ed Tanous | 530520e | 2019-01-02 13:41:37 -0800 | [diff] [blame] | 334 | "JobService": { |
| 335 | "$ref": "http://redfish.dmtf.org/schemas/v1/JobService.json#/definitions/JobService", |
Ed Tanous | a8d8f9d | 2023-01-26 13:57:00 -0800 | [diff] [blame] | 336 | "description": "The link to the job service.", |
| 337 | "longDescription": "This property shall contain a link to a resource of type JobService.", |
Marri Devender Rao | d45d2d0 | 2019-01-21 10:11:34 -0600 | [diff] [blame] | 338 | "readonly": true, |
| 339 | "versionAdded": "v1_4_0" |
Ed Tanous | 530520e | 2019-01-02 13:41:37 -0800 | [diff] [blame] | 340 | }, |
Ed Tanous | 118b1c7 | 2018-09-13 13:45:51 -0700 | [diff] [blame] | 341 | "JsonSchemas": { |
| 342 | "$ref": "http://redfish.dmtf.org/schemas/v1/JsonSchemaFileCollection.json#/definitions/JsonSchemaFileCollection", |
Ed Tanous | cb10313 | 2019-10-08 11:34:22 -0700 | [diff] [blame] | 343 | "description": "The link to a collection of JSON Schema files.", |
Ed Tanous | a8d8f9d | 2023-01-26 13:57:00 -0800 | [diff] [blame] | 344 | "longDescription": "This property shall contain a link to a resource collection of type JsonSchemaFileCollection.", |
Ed Tanous | 118b1c7 | 2018-09-13 13:45:51 -0700 | [diff] [blame] | 345 | "readonly": true |
| 346 | }, |
Gunnar Mills | 9d42466 | 2021-09-22 21:56:16 -0500 | [diff] [blame] | 347 | "KeyService": { |
| 348 | "$ref": "http://redfish.dmtf.org/schemas/v1/KeyService.json#/definitions/KeyService", |
| 349 | "description": "The link to the key service.", |
| 350 | "longDescription": "This property shall contain a link to a resource of type KeyService.", |
| 351 | "readonly": true, |
| 352 | "versionAdded": "v1_11_0" |
| 353 | }, |
Gunnar Mills | 60c922d | 2021-12-01 09:28:53 -0600 | [diff] [blame] | 354 | "LicenseService": { |
| 355 | "$ref": "http://redfish.dmtf.org/schemas/v1/LicenseService.json#/definitions/LicenseService", |
| 356 | "description": "The link to the license service.", |
| 357 | "longDescription": "This property shall contain a link to a resource of type LicenseService.", |
| 358 | "readonly": true, |
| 359 | "versionAdded": "v1_12_0" |
| 360 | }, |
Ed Tanous | 118b1c7 | 2018-09-13 13:45:51 -0700 | [diff] [blame] | 361 | "Links": { |
| 362 | "$ref": "#/definitions/Links", |
Ed Tanous | a8d8f9d | 2023-01-26 13:57:00 -0800 | [diff] [blame] | 363 | "description": "The links to other resources that are related to this resource.", |
| 364 | "longDescription": "This property shall contain links to resources that are related to but are not contained by, or subordinate to, this resource." |
Ed Tanous | 118b1c7 | 2018-09-13 13:45:51 -0700 | [diff] [blame] | 365 | }, |
| 366 | "Managers": { |
| 367 | "$ref": "http://redfish.dmtf.org/schemas/v1/ManagerCollection.json#/definitions/ManagerCollection", |
Ed Tanous | cb10313 | 2019-10-08 11:34:22 -0700 | [diff] [blame] | 368 | "description": "The link to a collection of managers.", |
Ed Tanous | a8d8f9d | 2023-01-26 13:57:00 -0800 | [diff] [blame] | 369 | "longDescription": "This property shall contain a link to a resource collection of type ManagerCollection.", |
Ed Tanous | 118b1c7 | 2018-09-13 13:45:51 -0700 | [diff] [blame] | 370 | "readonly": true |
| 371 | }, |
Gunnar Mills | 10f270b | 2021-05-19 15:34:06 -0500 | [diff] [blame] | 372 | "NVMeDomains": { |
| 373 | "$ref": "http://redfish.dmtf.org/schemas/swordfish/v1/NVMeDomainCollection.json#/definitions/NVMeDomainCollection", |
| 374 | "description": "The link to a collection of NVMe domains.", |
| 375 | "longDescription": "This property shall contain a link to a resource collection of type NVMeDomainCollection.", |
| 376 | "readonly": true, |
| 377 | "versionAdded": "v1_10_0" |
| 378 | }, |
Ed Tanous | 118b1c7 | 2018-09-13 13:45:51 -0700 | [diff] [blame] | 379 | "Name": { |
| 380 | "$ref": "http://redfish.dmtf.org/schemas/v1/Resource.json#/definitions/Name", |
| 381 | "readonly": true |
| 382 | }, |
| 383 | "Oem": { |
| 384 | "$ref": "http://redfish.dmtf.org/schemas/v1/Resource.json#/definitions/Oem", |
Ed Tanous | cb10313 | 2019-10-08 11:34:22 -0700 | [diff] [blame] | 385 | "description": "The OEM extension property.", |
| 386 | "longDescription": "This property shall contain the OEM extensions. All values for properties that this object contains shall conform to the Redfish Specification-described requirements." |
Ed Tanous | 118b1c7 | 2018-09-13 13:45:51 -0700 | [diff] [blame] | 387 | }, |
Gunnar Mills | 09b9d45 | 2020-02-11 13:27:39 -0600 | [diff] [blame] | 388 | "PowerEquipment": { |
| 389 | "$ref": "http://redfish.dmtf.org/schemas/v1/PowerEquipment.json#/definitions/PowerEquipment", |
| 390 | "description": "The link to a set of power equipment.", |
| 391 | "longDescription": "This property shall contain a link to a resource of type PowerEquipment.", |
| 392 | "readonly": true, |
| 393 | "versionAdded": "v1_6_0" |
| 394 | }, |
Ed Tanous | 118b1c7 | 2018-09-13 13:45:51 -0700 | [diff] [blame] | 395 | "Product": { |
Ed Tanous | a8d8f9d | 2023-01-26 13:57:00 -0800 | [diff] [blame] | 396 | "description": "The product associated with this Redfish service.", |
| 397 | "longDescription": "This property shall include the name of the product represented by this Redfish service.", |
Ed Tanous | 118b1c7 | 2018-09-13 13:45:51 -0700 | [diff] [blame] | 398 | "readonly": true, |
Marri Devender Rao | d45d2d0 | 2019-01-21 10:11:34 -0600 | [diff] [blame] | 399 | "type": [ |
| 400 | "string", |
| 401 | "null" |
| 402 | ], |
| 403 | "versionAdded": "v1_3_0" |
Ed Tanous | 118b1c7 | 2018-09-13 13:45:51 -0700 | [diff] [blame] | 404 | }, |
| 405 | "ProtocolFeaturesSupported": { |
| 406 | "$ref": "#/definitions/ProtocolFeaturesSupported", |
Ed Tanous | cb10313 | 2019-10-08 11:34:22 -0700 | [diff] [blame] | 407 | "description": "The information about protocol features that the service supports.", |
| 408 | "longDescription": "This property shall contain information about protocol features that the service supports.", |
Marri Devender Rao | d45d2d0 | 2019-01-21 10:11:34 -0600 | [diff] [blame] | 409 | "versionAdded": "v1_3_0" |
Ed Tanous | 118b1c7 | 2018-09-13 13:45:51 -0700 | [diff] [blame] | 410 | }, |
| 411 | "RedfishVersion": { |
Ed Tanous | a8d8f9d | 2023-01-26 13:57:00 -0800 | [diff] [blame] | 412 | "description": "The version of the Redfish service.", |
| 413 | "longDescription": "This property shall represent the Redfish protocol version, as specified in the 'Protocol version' clause of the Redfish Specification, to which this service conforms.", |
Ed Tanous | 118b1c7 | 2018-09-13 13:45:51 -0700 | [diff] [blame] | 414 | "pattern": "^\\d+\\.\\d+\\.\\d+$", |
| 415 | "readonly": true, |
| 416 | "type": "string" |
| 417 | }, |
Sui Chen | 141d943 | 2022-02-03 22:01:27 -0800 | [diff] [blame] | 418 | "RegisteredClients": { |
| 419 | "$ref": "http://redfish.dmtf.org/schemas/v1/RegisteredClientCollection.json#/definitions/RegisteredClientCollection", |
| 420 | "description": "The link to a collection of registered clients.", |
| 421 | "longDescription": "This property shall contain a link to a resource collection of type RegisteredClientCollection.", |
| 422 | "readonly": true, |
| 423 | "versionAdded": "v1_13_0" |
| 424 | }, |
Ed Tanous | 118b1c7 | 2018-09-13 13:45:51 -0700 | [diff] [blame] | 425 | "Registries": { |
| 426 | "$ref": "http://redfish.dmtf.org/schemas/v1/MessageRegistryFileCollection.json#/definitions/MessageRegistryFileCollection", |
Ed Tanous | a8d8f9d | 2023-01-26 13:57:00 -0800 | [diff] [blame] | 427 | "description": "The link to a collection of registries.", |
| 428 | "longDescription": "This property shall contain a link to a resource collection of type MessageRegistryFileCollection.", |
Ed Tanous | 118b1c7 | 2018-09-13 13:45:51 -0700 | [diff] [blame] | 429 | "readonly": true |
| 430 | }, |
Marri Devender Rao | d45d2d0 | 2019-01-21 10:11:34 -0600 | [diff] [blame] | 431 | "ResourceBlocks": { |
| 432 | "$ref": "http://redfish.dmtf.org/schemas/v1/ResourceBlockCollection.json#/definitions/ResourceBlockCollection", |
Ed Tanous | a8d8f9d | 2023-01-26 13:57:00 -0800 | [diff] [blame] | 433 | "description": "The link to a collection of resource blocks. This collection is intended for implementations that do not contain a composition service but that expose resources to an orchestrator that implements a composition service.", |
| 434 | "longDescription": "This property shall contain a link to a resource collection of type ResourceBlockCollection.", |
Marri Devender Rao | d45d2d0 | 2019-01-21 10:11:34 -0600 | [diff] [blame] | 435 | "readonly": true, |
| 436 | "versionAdded": "v1_5_0" |
| 437 | }, |
Sui Chen | 141d943 | 2022-02-03 22:01:27 -0800 | [diff] [blame] | 438 | "ServiceConditions": { |
| 439 | "$ref": "http://redfish.dmtf.org/schemas/v1/ServiceConditions.json#/definitions/ServiceConditions", |
| 440 | "description": "The link to the service conditions.", |
| 441 | "longDescription": "This property shall contain a link to a resource of type ServiceConditions.", |
| 442 | "readonly": true, |
| 443 | "versionAdded": "v1_13_0" |
| 444 | }, |
Ed Tanous | ed76121 | 2022-09-23 15:03:29 -0700 | [diff] [blame] | 445 | "ServiceIdentification": { |
| 446 | "description": "The vendor or user-provided product and service identifier.", |
Gunnar Mills | 2ae81db | 2024-01-31 14:25:11 -0600 | [diff] [blame^] | 447 | "longDescription": "This property shall contain a vendor-provided or user-provided value that identifies and associates a discovered Redfish service with a particular product instance. The value of the property shall contain the value of the ServiceIdentification property in the Manager resource providing the Redfish service root resource. The value of this property is used in conjunction with the Product and Vendor properties to match user credentials or other a priori product instance information necessary for initial deployment to the correct, matching Redfish service. This property shall not be present if its value is an empty string or `null`.", |
Ed Tanous | ed76121 | 2022-09-23 15:03:29 -0700 | [diff] [blame] | 448 | "readonly": true, |
| 449 | "type": "string", |
| 450 | "versionAdded": "v1_14_0" |
| 451 | }, |
Ed Tanous | 118b1c7 | 2018-09-13 13:45:51 -0700 | [diff] [blame] | 452 | "SessionService": { |
| 453 | "$ref": "http://redfish.dmtf.org/schemas/v1/SessionService.json#/definitions/SessionService", |
Ed Tanous | a8d8f9d | 2023-01-26 13:57:00 -0800 | [diff] [blame] | 454 | "description": "The link to the sessions service.", |
| 455 | "longDescription": "This property shall contain a link to a resource of type SessionService.", |
Ed Tanous | 118b1c7 | 2018-09-13 13:45:51 -0700 | [diff] [blame] | 456 | "readonly": true |
| 457 | }, |
Asmitha Karunanithi | c8ccb77 | 2020-09-22 10:56:46 -0500 | [diff] [blame] | 458 | "Storage": { |
| 459 | "$ref": "http://redfish.dmtf.org/schemas/v1/StorageCollection.json#/definitions/StorageCollection", |
| 460 | "description": "The link to a collection of storage subsystems.", |
| 461 | "longDescription": "This property shall contain a link to a resource collection of type StorageCollection.", |
| 462 | "readonly": true, |
| 463 | "versionAdded": "v1_9_0" |
| 464 | }, |
Ed Tanous | 118b1c7 | 2018-09-13 13:45:51 -0700 | [diff] [blame] | 465 | "StorageServices": { |
| 466 | "$ref": "http://redfish.dmtf.org/schemas/swordfish/v1/StorageServiceCollection.json#/definitions/StorageServiceCollection", |
Ed Tanous | a8d8f9d | 2023-01-26 13:57:00 -0800 | [diff] [blame] | 467 | "description": "The link to a collection of storage services.", |
| 468 | "longDescription": "This property shall contain a link to a resource collection of type StorageServiceCollection.", |
Marri Devender Rao | d45d2d0 | 2019-01-21 10:11:34 -0600 | [diff] [blame] | 469 | "readonly": true, |
| 470 | "versionAdded": "v1_1_0" |
Ed Tanous | 118b1c7 | 2018-09-13 13:45:51 -0700 | [diff] [blame] | 471 | }, |
| 472 | "StorageSystems": { |
| 473 | "$ref": "http://redfish.dmtf.org/schemas/swordfish/v1/StorageSystemCollection.json#/definitions/StorageSystemCollection", |
Ed Tanous | cb10313 | 2019-10-08 11:34:22 -0700 | [diff] [blame] | 474 | "description": "The link to a collection of storage systems.", |
Ed Tanous | a8d8f9d | 2023-01-26 13:57:00 -0800 | [diff] [blame] | 475 | "longDescription": "This property shall contain a link to a resource collection of type StorageSystemCollection. This collection shall contain computer systems that act as storage servers. The HostingRoles property of each such computer system shall contain a StorageServer entry.", |
Marri Devender Rao | d45d2d0 | 2019-01-21 10:11:34 -0600 | [diff] [blame] | 476 | "readonly": true, |
| 477 | "versionAdded": "v1_1_0" |
Ed Tanous | 118b1c7 | 2018-09-13 13:45:51 -0700 | [diff] [blame] | 478 | }, |
| 479 | "Systems": { |
| 480 | "$ref": "http://redfish.dmtf.org/schemas/v1/ComputerSystemCollection.json#/definitions/ComputerSystemCollection", |
Ed Tanous | cb10313 | 2019-10-08 11:34:22 -0700 | [diff] [blame] | 481 | "description": "The link to a collection of systems.", |
Ed Tanous | a8d8f9d | 2023-01-26 13:57:00 -0800 | [diff] [blame] | 482 | "longDescription": "This property shall contain a link to a resource collection of type ComputerSystemCollection.", |
Ed Tanous | 118b1c7 | 2018-09-13 13:45:51 -0700 | [diff] [blame] | 483 | "readonly": true |
| 484 | }, |
| 485 | "Tasks": { |
| 486 | "$ref": "http://redfish.dmtf.org/schemas/v1/TaskService.json#/definitions/TaskService", |
Ed Tanous | a8d8f9d | 2023-01-26 13:57:00 -0800 | [diff] [blame] | 487 | "description": "The link to the task service.", |
| 488 | "longDescription": "This property shall contain a link to a resource of type TaskService.", |
Ed Tanous | f263e09 | 2023-05-22 09:56:29 -0700 | [diff] [blame] | 489 | "readonly": true, |
| 490 | "uriSegment": "TaskService" |
Ed Tanous | 118b1c7 | 2018-09-13 13:45:51 -0700 | [diff] [blame] | 491 | }, |
Ed Tanous | 530520e | 2019-01-02 13:41:37 -0800 | [diff] [blame] | 492 | "TelemetryService": { |
| 493 | "$ref": "http://redfish.dmtf.org/schemas/v1/TelemetryService.json#/definitions/TelemetryService", |
Ed Tanous | a8d8f9d | 2023-01-26 13:57:00 -0800 | [diff] [blame] | 494 | "description": "The link to the telemetry service.", |
| 495 | "longDescription": "This property shall contain a link to a resource of type TelemetryService.", |
Marri Devender Rao | d45d2d0 | 2019-01-21 10:11:34 -0600 | [diff] [blame] | 496 | "readonly": true, |
| 497 | "versionAdded": "v1_4_0" |
Ed Tanous | 530520e | 2019-01-02 13:41:37 -0800 | [diff] [blame] | 498 | }, |
Ed Tanous | f263e09 | 2023-05-22 09:56:29 -0700 | [diff] [blame] | 499 | "ThermalEquipment": { |
| 500 | "$ref": "http://redfish.dmtf.org/schemas/v1/ThermalEquipment.json#/definitions/ThermalEquipment", |
| 501 | "description": "The link to a set of cooling equipment.", |
| 502 | "longDescription": "This property shall contain a link to a resource of type ThermalEquipment.", |
| 503 | "readonly": true, |
| 504 | "versionAdded": "v1_16_0" |
| 505 | }, |
Ed Tanous | 118b1c7 | 2018-09-13 13:45:51 -0700 | [diff] [blame] | 506 | "UUID": { |
Ed Tanous | a8d8f9d | 2023-01-26 13:57:00 -0800 | [diff] [blame] | 507 | "description": "Unique identifier for a service instance. When SSDP is used, this value contains the same UUID returned in an HTTP `200 OK` response from an SSDP `M-SEARCH` request during discovery.", |
Gunnar Mills | 2ae81db | 2024-01-31 14:25:11 -0600 | [diff] [blame^] | 508 | "longDescription": "This property shall contain the identifier of the Redfish service instance. If SSDP is used, this value shall contain the same UUID returned in an HTTP `200 OK` response from an SSDP `M-SEARCH` request during discovery. RFC4122 describes methods to use to create a UUID value. The value should be considered to be opaque. Client software should only treat the overall value as a universally unique identifier and should not interpret any subfields within the UUID.", |
Ed Tanous | f263e09 | 2023-05-22 09:56:29 -0700 | [diff] [blame] | 509 | "pattern": "^[0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{12}$", |
Ed Tanous | a8d8f9d | 2023-01-26 13:57:00 -0800 | [diff] [blame] | 510 | "readonly": true, |
| 511 | "type": [ |
| 512 | "string", |
| 513 | "null" |
| 514 | ] |
Ed Tanous | 118b1c7 | 2018-09-13 13:45:51 -0700 | [diff] [blame] | 515 | }, |
| 516 | "UpdateService": { |
| 517 | "$ref": "http://redfish.dmtf.org/schemas/v1/UpdateService.json#/definitions/UpdateService", |
Ed Tanous | a8d8f9d | 2023-01-26 13:57:00 -0800 | [diff] [blame] | 518 | "description": "The link to the update service.", |
| 519 | "longDescription": "This property shall contain a link to a resource of type UpdateService.", |
Marri Devender Rao | d45d2d0 | 2019-01-21 10:11:34 -0600 | [diff] [blame] | 520 | "readonly": true, |
| 521 | "versionAdded": "v1_1_0" |
| 522 | }, |
| 523 | "Vendor": { |
Ed Tanous | a8d8f9d | 2023-01-26 13:57:00 -0800 | [diff] [blame] | 524 | "description": "The vendor or manufacturer associated with this Redfish service.", |
| 525 | "longDescription": "This property shall include the name of the manufacturer or vendor represented by this Redfish service. If this property is supported, the vendor name shall not be included in the Product property value.", |
Marri Devender Rao | d45d2d0 | 2019-01-21 10:11:34 -0600 | [diff] [blame] | 526 | "readonly": true, |
| 527 | "type": [ |
| 528 | "string", |
| 529 | "null" |
| 530 | ], |
| 531 | "versionAdded": "v1_5_0" |
Ed Tanous | 118b1c7 | 2018-09-13 13:45:51 -0700 | [diff] [blame] | 532 | } |
| 533 | }, |
| 534 | "required": [ |
| 535 | "Links", |
Ed Tanous | 530520e | 2019-01-02 13:41:37 -0800 | [diff] [blame] | 536 | "@odata.id", |
| 537 | "@odata.type", |
Ed Tanous | 118b1c7 | 2018-09-13 13:45:51 -0700 | [diff] [blame] | 538 | "Id", |
| 539 | "Name" |
| 540 | ], |
| 541 | "type": "object" |
| 542 | } |
| 543 | }, |
| 544 | "owningEntity": "DMTF", |
Ed Tanous | f263e09 | 2023-05-22 09:56:29 -0700 | [diff] [blame] | 545 | "release": "2023.1", |
Gunnar Mills | 2ae81db | 2024-01-31 14:25:11 -0600 | [diff] [blame^] | 546 | "title": "#ServiceRoot.v1_16_1.ServiceRoot" |
Ed Tanous | 118b1c7 | 2018-09-13 13:45:51 -0700 | [diff] [blame] | 547 | } |