1*28cfceb2SGunnar Mills{
2*28cfceb2SGunnar Mills    "$id": "http://redfish.dmtf.org/schemas/v1/Storage.v1_17_0.json",
3*28cfceb2SGunnar Mills    "$ref": "#/definitions/Storage",
4*28cfceb2SGunnar Mills    "$schema": "http://redfish.dmtf.org/schemas/v1/redfish-schema-v1.json",
5*28cfceb2SGunnar Mills    "copyright": "Copyright 2014-2024 DMTF. For the full DMTF copyright policy, see http://www.dmtf.org/about/policies/copyright",
6*28cfceb2SGunnar Mills    "definitions": {
7*28cfceb2SGunnar Mills        "Actions": {
8*28cfceb2SGunnar Mills            "additionalProperties": false,
9*28cfceb2SGunnar Mills            "description": "The available actions for this resource.",
10*28cfceb2SGunnar Mills            "longDescription": "This type shall contain the available actions for this resource.",
11*28cfceb2SGunnar Mills            "patternProperties": {
12*28cfceb2SGunnar Mills                "^([a-zA-Z_][a-zA-Z0-9_]*)?@(odata|Redfish|Message)\\.[a-zA-Z_][a-zA-Z0-9_]*$": {
13*28cfceb2SGunnar Mills                    "description": "This property shall specify a valid odata or Redfish property.",
14*28cfceb2SGunnar Mills                    "type": [
15*28cfceb2SGunnar Mills                        "array",
16*28cfceb2SGunnar Mills                        "boolean",
17*28cfceb2SGunnar Mills                        "integer",
18*28cfceb2SGunnar Mills                        "number",
19*28cfceb2SGunnar Mills                        "null",
20*28cfceb2SGunnar Mills                        "object",
21*28cfceb2SGunnar Mills                        "string"
22*28cfceb2SGunnar Mills                    ]
23*28cfceb2SGunnar Mills                }
24*28cfceb2SGunnar Mills            },
25*28cfceb2SGunnar Mills            "properties": {
26*28cfceb2SGunnar Mills                "#Storage.RekeyExternalKey": {
27*28cfceb2SGunnar Mills                    "$ref": "#/definitions/RekeyExternalKey"
28*28cfceb2SGunnar Mills                },
29*28cfceb2SGunnar Mills                "#Storage.ResetToDefaults": {
30*28cfceb2SGunnar Mills                    "$ref": "#/definitions/ResetToDefaults"
31*28cfceb2SGunnar Mills                },
32*28cfceb2SGunnar Mills                "#Storage.SetControllerPassword": {
33*28cfceb2SGunnar Mills                    "$ref": "#/definitions/SetControllerPassword"
34*28cfceb2SGunnar Mills                },
35*28cfceb2SGunnar Mills                "#Storage.SetEncryptionKey": {
36*28cfceb2SGunnar Mills                    "$ref": "#/definitions/SetEncryptionKey"
37*28cfceb2SGunnar Mills                },
38*28cfceb2SGunnar Mills                "Oem": {
39*28cfceb2SGunnar Mills                    "$ref": "#/definitions/OemActions",
40*28cfceb2SGunnar Mills                    "description": "The available OEM-specific actions for this resource.",
41*28cfceb2SGunnar Mills                    "longDescription": "This property shall contain the available OEM-specific actions for this resource."
42*28cfceb2SGunnar Mills                }
43*28cfceb2SGunnar Mills            },
44*28cfceb2SGunnar Mills            "type": "object"
45*28cfceb2SGunnar Mills        },
46*28cfceb2SGunnar Mills        "AutoVolumeCreate": {
47*28cfceb2SGunnar Mills            "enum": [
48*28cfceb2SGunnar Mills                "Disabled",
49*28cfceb2SGunnar Mills                "NonRAID",
50*28cfceb2SGunnar Mills                "RAID0",
51*28cfceb2SGunnar Mills                "RAID1"
52*28cfceb2SGunnar Mills            ],
53*28cfceb2SGunnar Mills            "enumDescriptions": {
54*28cfceb2SGunnar Mills                "Disabled": "Do not automatically create volumes.",
55*28cfceb2SGunnar Mills                "NonRAID": "Automatically create non-RAID volumes.",
56*28cfceb2SGunnar Mills                "RAID0": "Automatically create RAID0 volumes.",
57*28cfceb2SGunnar Mills                "RAID1": "Automatically create RAID1 volumes."
58*28cfceb2SGunnar Mills            },
59*28cfceb2SGunnar Mills            "type": "string"
60*28cfceb2SGunnar Mills        },
61*28cfceb2SGunnar Mills        "CacheSummary": {
62*28cfceb2SGunnar Mills            "additionalProperties": false,
63*28cfceb2SGunnar Mills            "description": "This type describes the cache memory of the storage controller in general detail.",
64*28cfceb2SGunnar Mills            "longDescription": "This type shall contain properties that describe the cache memory for a storage controller.",
65*28cfceb2SGunnar Mills            "patternProperties": {
66*28cfceb2SGunnar Mills                "^([a-zA-Z_][a-zA-Z0-9_]*)?@(odata|Redfish|Message)\\.[a-zA-Z_][a-zA-Z0-9_]*$": {
67*28cfceb2SGunnar Mills                    "description": "This property shall specify a valid odata or Redfish property.",
68*28cfceb2SGunnar Mills                    "type": [
69*28cfceb2SGunnar Mills                        "array",
70*28cfceb2SGunnar Mills                        "boolean",
71*28cfceb2SGunnar Mills                        "integer",
72*28cfceb2SGunnar Mills                        "number",
73*28cfceb2SGunnar Mills                        "null",
74*28cfceb2SGunnar Mills                        "object",
75*28cfceb2SGunnar Mills                        "string"
76*28cfceb2SGunnar Mills                    ]
77*28cfceb2SGunnar Mills                }
78*28cfceb2SGunnar Mills            },
79*28cfceb2SGunnar Mills            "properties": {
80*28cfceb2SGunnar Mills                "PersistentCacheSizeMiB": {
81*28cfceb2SGunnar Mills                    "description": "The portion of the cache memory that is persistent, measured in MiB.",
82*28cfceb2SGunnar Mills                    "longDescription": "This property shall contain the amount of cache memory that is persistent as measured in mebibytes.  This size shall be less than or equal to the `TotalCacheSizeMiB`.",
83*28cfceb2SGunnar Mills                    "minimum": 0,
84*28cfceb2SGunnar Mills                    "readonly": true,
85*28cfceb2SGunnar Mills                    "type": [
86*28cfceb2SGunnar Mills                        "integer",
87*28cfceb2SGunnar Mills                        "null"
88*28cfceb2SGunnar Mills                    ],
89*28cfceb2SGunnar Mills                    "units": "MiBy",
90*28cfceb2SGunnar Mills                    "versionAdded": "v1_5_0"
91*28cfceb2SGunnar Mills                },
92*28cfceb2SGunnar Mills                "Status": {
93*28cfceb2SGunnar Mills                    "$ref": "http://redfish.dmtf.org/schemas/v1/Resource.json#/definitions/Status",
94*28cfceb2SGunnar Mills                    "description": "The status and health of the resource and its subordinate or dependent resources.",
95*28cfceb2SGunnar Mills                    "longDescription": "This property shall contain any status or health properties of the resource.",
96*28cfceb2SGunnar Mills                    "versionAdded": "v1_5_0"
97*28cfceb2SGunnar Mills                },
98*28cfceb2SGunnar Mills                "TotalCacheSizeMiB": {
99*28cfceb2SGunnar Mills                    "description": "The total configured cache memory, measured in MiB.",
100*28cfceb2SGunnar Mills                    "longDescription": "This property shall contain the amount of configured cache memory as measured in mebibytes.",
101*28cfceb2SGunnar Mills                    "minimum": 0,
102*28cfceb2SGunnar Mills                    "readonly": true,
103*28cfceb2SGunnar Mills                    "type": [
104*28cfceb2SGunnar Mills                        "integer",
105*28cfceb2SGunnar Mills                        "null"
106*28cfceb2SGunnar Mills                    ],
107*28cfceb2SGunnar Mills                    "units": "MiBy",
108*28cfceb2SGunnar Mills                    "versionAdded": "v1_5_0"
109*28cfceb2SGunnar Mills                }
110*28cfceb2SGunnar Mills            },
111*28cfceb2SGunnar Mills            "required": [
112*28cfceb2SGunnar Mills                "TotalCacheSizeMiB"
113*28cfceb2SGunnar Mills            ],
114*28cfceb2SGunnar Mills            "type": "object"
115*28cfceb2SGunnar Mills        },
116*28cfceb2SGunnar Mills        "ConfigLockOptions": {
117*28cfceb2SGunnar Mills            "enum": [
118*28cfceb2SGunnar Mills                "Unlocked",
119*28cfceb2SGunnar Mills                "Locked",
120*28cfceb2SGunnar Mills                "LockdownUnsupported",
121*28cfceb2SGunnar Mills                "CommandUnsupported"
122*28cfceb2SGunnar Mills            ],
123*28cfceb2SGunnar Mills            "enumDescriptions": {
124*28cfceb2SGunnar Mills                "CommandUnsupported": "The command is not supported, therefore lockdown does not apply.",
125*28cfceb2SGunnar Mills                "LockdownUnsupported": "The command is supported but is not able to be locked.",
126*28cfceb2SGunnar Mills                "Locked": "The command is supported and is currently locked.",
127*28cfceb2SGunnar Mills                "Unlocked": "The command is supported, able to be locked, and is currently unlocked."
128*28cfceb2SGunnar Mills            },
129*28cfceb2SGunnar Mills            "type": "string"
130*28cfceb2SGunnar Mills        },
131*28cfceb2SGunnar Mills        "ConfigurationLock": {
132*28cfceb2SGunnar Mills            "enum": [
133*28cfceb2SGunnar Mills                "Enabled",
134*28cfceb2SGunnar Mills                "Disabled",
135*28cfceb2SGunnar Mills                "Partial"
136*28cfceb2SGunnar Mills            ],
137*28cfceb2SGunnar Mills            "enumDescriptions": {
138*28cfceb2SGunnar Mills                "Disabled": "In-band configuration requests are not locked.",
139*28cfceb2SGunnar Mills                "Enabled": "In-band configuration requests are locked as specified by `TargetConfigurationLockLevel`.",
140*28cfceb2SGunnar Mills                "Partial": "Some in-band configuration requests are not locked while others are locked.  This value is used for status reporting to indicate that the storage subsystem is partially locked and client action is recommended."
141*28cfceb2SGunnar Mills            },
142*28cfceb2SGunnar Mills            "enumLongDescriptions": {
143*28cfceb2SGunnar Mills                "Disabled": "This value shall indicate in-band configuration requests are not locked.",
144*28cfceb2SGunnar Mills                "Enabled": "This value shall indicate in-band configuration requests are locked as specified by `TargetConfigurationLockLevel`.",
145*28cfceb2SGunnar Mills                "Partial": "This value shall indicate some in-band configuration requests are not locked while others are locked."
146*28cfceb2SGunnar Mills            },
147*28cfceb2SGunnar Mills            "type": "string"
148*28cfceb2SGunnar Mills        },
149*28cfceb2SGunnar Mills        "EncryptionMode": {
150*28cfceb2SGunnar Mills            "enum": [
151*28cfceb2SGunnar Mills                "Disabled",
152*28cfceb2SGunnar Mills                "UseExternalKey",
153*28cfceb2SGunnar Mills                "UseLocalKey",
154*28cfceb2SGunnar Mills                "PasswordOnly",
155*28cfceb2SGunnar Mills                "PasswordWithExternalKey",
156*28cfceb2SGunnar Mills                "PasswordWithLocalKey"
157*28cfceb2SGunnar Mills            ],
158*28cfceb2SGunnar Mills            "enumDescriptions": {
159*28cfceb2SGunnar Mills                "Disabled": "Encryption is disabled on the storage subsystem.",
160*28cfceb2SGunnar Mills                "PasswordOnly": "The storage subsystem uses a password, but no keys for encryption.",
161*28cfceb2SGunnar Mills                "PasswordWithExternalKey": "The storage subsystem uses a password and one or more external keys for encryption.",
162*28cfceb2SGunnar Mills                "PasswordWithLocalKey": "The storage subsystem uses a password and a local key for encryption.",
163*28cfceb2SGunnar Mills                "UseExternalKey": "The storage subsystem uses one or more external keys for encryption.",
164*28cfceb2SGunnar Mills                "UseLocalKey": "The storage subsystem uses a local key for encryption."
165*28cfceb2SGunnar Mills            },
166*28cfceb2SGunnar Mills            "enumVersionAdded": {
167*28cfceb2SGunnar Mills                "PasswordOnly": "v1_17_0",
168*28cfceb2SGunnar Mills                "PasswordWithExternalKey": "v1_17_0",
169*28cfceb2SGunnar Mills                "PasswordWithLocalKey": "v1_17_0"
170*28cfceb2SGunnar Mills            },
171*28cfceb2SGunnar Mills            "type": "string"
172*28cfceb2SGunnar Mills        },
173*28cfceb2SGunnar Mills        "HotspareActivationPolicy": {
174*28cfceb2SGunnar Mills            "enum": [
175*28cfceb2SGunnar Mills                "OnDriveFailure",
176*28cfceb2SGunnar Mills                "OnDrivePredictedFailure",
177*28cfceb2SGunnar Mills                "OEM"
178*28cfceb2SGunnar Mills            ],
179*28cfceb2SGunnar Mills            "enumDescriptions": {
180*28cfceb2SGunnar Mills                "OEM": "The hot spare drive will take over for the original drive in an algorithm custom to the OEM.",
181*28cfceb2SGunnar Mills                "OnDriveFailure": "The hot spare drive will take over for the original drive when the original drive has been marked as failed by the storage domain.",
182*28cfceb2SGunnar Mills                "OnDrivePredictedFailure": "The hot spare drive will take over for the original drive when the original drive has been predicted to fail in the future by the storage domain."
183*28cfceb2SGunnar Mills            },
184*28cfceb2SGunnar Mills            "type": "string"
185*28cfceb2SGunnar Mills        },
186*28cfceb2SGunnar Mills        "Links": {
187*28cfceb2SGunnar Mills            "additionalProperties": false,
188*28cfceb2SGunnar Mills            "description": "The links to other resources that are related to this resource.",
189*28cfceb2SGunnar Mills            "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.",
190*28cfceb2SGunnar Mills            "patternProperties": {
191*28cfceb2SGunnar Mills                "^([a-zA-Z_][a-zA-Z0-9_]*)?@(odata|Redfish|Message)\\.[a-zA-Z_][a-zA-Z0-9_]*$": {
192*28cfceb2SGunnar Mills                    "description": "This property shall specify a valid odata or Redfish property.",
193*28cfceb2SGunnar Mills                    "type": [
194*28cfceb2SGunnar Mills                        "array",
195*28cfceb2SGunnar Mills                        "boolean",
196*28cfceb2SGunnar Mills                        "integer",
197*28cfceb2SGunnar Mills                        "number",
198*28cfceb2SGunnar Mills                        "null",
199*28cfceb2SGunnar Mills                        "object",
200*28cfceb2SGunnar Mills                        "string"
201*28cfceb2SGunnar Mills                    ]
202*28cfceb2SGunnar Mills                }
203*28cfceb2SGunnar Mills            },
204*28cfceb2SGunnar Mills            "properties": {
205*28cfceb2SGunnar Mills                "Enclosures": {
206*28cfceb2SGunnar Mills                    "description": "An array of links to the chassis to which this storage subsystem is attached.",
207*28cfceb2SGunnar Mills                    "items": {
208*28cfceb2SGunnar Mills                        "$ref": "http://redfish.dmtf.org/schemas/v1/Chassis.json#/definitions/Chassis"
209*28cfceb2SGunnar Mills                    },
210*28cfceb2SGunnar Mills                    "longDescription": "This property shall contain an array of links to resources of type `Chassis` that represent the physical containers attached to this resource.",
211*28cfceb2SGunnar Mills                    "readonly": true,
212*28cfceb2SGunnar Mills                    "type": "array"
213*28cfceb2SGunnar Mills                },
214*28cfceb2SGunnar Mills                "Enclosures@odata.count": {
215*28cfceb2SGunnar Mills                    "$ref": "http://redfish.dmtf.org/schemas/v1/odata-v4.json#/definitions/count"
216*28cfceb2SGunnar Mills                },
217*28cfceb2SGunnar Mills                "HostingStorageSystems": {
218*28cfceb2SGunnar Mills                    "description": "The storage systems that host this storage subsystem.",
219*28cfceb2SGunnar Mills                    "items": {
220*28cfceb2SGunnar Mills                        "$ref": "http://redfish.dmtf.org/schemas/v1/ComputerSystem.json#/definitions/ComputerSystem"
221*28cfceb2SGunnar Mills                    },
222*28cfceb2SGunnar Mills                    "longDescription": "This property shall contain an array of links to resources of type `ComputerSystem` that represent the storage systems that host this storage subsystem.  The members of this array shall be in the `StorageSystems` resource collection off the service root.",
223*28cfceb2SGunnar Mills                    "readonly": true,
224*28cfceb2SGunnar Mills                    "type": "array",
225*28cfceb2SGunnar Mills                    "versionAdded": "v1_11_0"
226*28cfceb2SGunnar Mills                },
227*28cfceb2SGunnar Mills                "HostingStorageSystems@odata.count": {
228*28cfceb2SGunnar Mills                    "$ref": "http://redfish.dmtf.org/schemas/v1/odata-v4.json#/definitions/count"
229*28cfceb2SGunnar Mills                },
230*28cfceb2SGunnar Mills                "NVMeoFDiscoverySubsystems": {
231*28cfceb2SGunnar Mills                    "description": "An array of links to the discovery subsystems that discovered this subsystem in an NVMe-oF environment.",
232*28cfceb2SGunnar Mills                    "items": {
233*28cfceb2SGunnar Mills                        "$ref": "http://redfish.dmtf.org/schemas/v1/Storage.json#/definitions/Storage"
234*28cfceb2SGunnar Mills                    },
235*28cfceb2SGunnar Mills                    "longDescription": "This property shall contain an array of links to resources of type `Storage` that represent the discovery subsystems that discovered this subsystem in an NVMe-oF environment.",
236*28cfceb2SGunnar Mills                    "readonly": true,
237*28cfceb2SGunnar Mills                    "type": "array",
238*28cfceb2SGunnar Mills                    "versionAdded": "v1_15_0"
239*28cfceb2SGunnar Mills                },
240*28cfceb2SGunnar Mills                "NVMeoFDiscoverySubsystems@odata.count": {
241*28cfceb2SGunnar Mills                    "$ref": "http://redfish.dmtf.org/schemas/v1/odata-v4.json#/definitions/count"
242*28cfceb2SGunnar Mills                },
243*28cfceb2SGunnar Mills                "Oem": {
244*28cfceb2SGunnar Mills                    "$ref": "http://redfish.dmtf.org/schemas/v1/Resource.json#/definitions/Oem",
245*28cfceb2SGunnar Mills                    "description": "The OEM extension property.",
246*28cfceb2SGunnar Mills                    "longDescription": "This property shall contain the OEM extensions.  All values for properties contained in this object shall conform to the Redfish Specification-described requirements."
247*28cfceb2SGunnar Mills                },
248*28cfceb2SGunnar Mills                "SimpleStorage": {
249*28cfceb2SGunnar Mills                    "$ref": "http://redfish.dmtf.org/schemas/v1/SimpleStorage.json#/definitions/SimpleStorage",
250*28cfceb2SGunnar Mills                    "description": "The link to the simple storage instance that corresponds to this storage.",
251*28cfceb2SGunnar Mills                    "longDescription": "This property shall contain a link to a resource of type `SimpleStorage` that represents the same storage subsystem as this resource.",
252*28cfceb2SGunnar Mills                    "readonly": true,
253*28cfceb2SGunnar Mills                    "versionAdded": "v1_9_0"
254*28cfceb2SGunnar Mills                },
255*28cfceb2SGunnar Mills                "StorageServices": {
256*28cfceb2SGunnar Mills                    "description": "An array of links to the storage services that connect to this storage subsystem.",
257*28cfceb2SGunnar Mills                    "items": {
258*28cfceb2SGunnar Mills                        "$ref": "http://redfish.dmtf.org/schemas/swordfish/v1/StorageService.json#/definitions/StorageService"
259*28cfceb2SGunnar Mills                    },
260*28cfceb2SGunnar Mills                    "longDescription": "This property shall contain an array of links to resources of type `StorageService` with which this storage subsystem is associated.",
261*28cfceb2SGunnar Mills                    "readonly": true,
262*28cfceb2SGunnar Mills                    "type": "array",
263*28cfceb2SGunnar Mills                    "versionAdded": "v1_9_0"
264*28cfceb2SGunnar Mills                },
265*28cfceb2SGunnar Mills                "StorageServices@odata.count": {
266*28cfceb2SGunnar Mills                    "$ref": "http://redfish.dmtf.org/schemas/v1/odata-v4.json#/definitions/count"
267*28cfceb2SGunnar Mills                }
268*28cfceb2SGunnar Mills            },
269*28cfceb2SGunnar Mills            "type": "object"
270*28cfceb2SGunnar Mills        },
271*28cfceb2SGunnar Mills        "NVMeConfigurationLockState": {
272*28cfceb2SGunnar Mills            "additionalProperties": false,
273*28cfceb2SGunnar Mills            "description": "The configurable features that are able to be locked on an NVMe subsystem and their current lock state.",
274*28cfceb2SGunnar Mills            "longDescription": "This type shall contain the configurable features that are able to be locked on an NVMe subsystem and their current lock state.",
275*28cfceb2SGunnar Mills            "patternProperties": {
276*28cfceb2SGunnar Mills                "^([a-zA-Z_][a-zA-Z0-9_]*)?@(odata|Redfish|Message)\\.[a-zA-Z_][a-zA-Z0-9_]*$": {
277*28cfceb2SGunnar Mills                    "description": "This property shall specify a valid odata or Redfish property.",
278*28cfceb2SGunnar Mills                    "type": [
279*28cfceb2SGunnar Mills                        "array",
280*28cfceb2SGunnar Mills                        "boolean",
281*28cfceb2SGunnar Mills                        "integer",
282*28cfceb2SGunnar Mills                        "number",
283*28cfceb2SGunnar Mills                        "null",
284*28cfceb2SGunnar Mills                        "object",
285*28cfceb2SGunnar Mills                        "string"
286*28cfceb2SGunnar Mills                    ]
287*28cfceb2SGunnar Mills                }
288*28cfceb2SGunnar Mills            },
289*28cfceb2SGunnar Mills            "properties": {
290*28cfceb2SGunnar Mills                "FirmwareCommit": {
291*28cfceb2SGunnar Mills                    "anyOf": [
292*28cfceb2SGunnar Mills                        {
293*28cfceb2SGunnar Mills                            "$ref": "#/definitions/ConfigLockOptions"
294*28cfceb2SGunnar Mills                        },
295*28cfceb2SGunnar Mills                        {
296*28cfceb2SGunnar Mills                            "type": "null"
297*28cfceb2SGunnar Mills                        }
298*28cfceb2SGunnar Mills                    ],
299*28cfceb2SGunnar Mills                    "description": "The lock state of the NVMe-defined Firmware Commit command.",
300*28cfceb2SGunnar Mills                    "longDescription": "This property shall contain the lock state of the NVMe-defined Firmware Commit command.",
301*28cfceb2SGunnar Mills                    "readonly": true,
302*28cfceb2SGunnar Mills                    "versionAdded": "v1_17_0"
303*28cfceb2SGunnar Mills                },
304*28cfceb2SGunnar Mills                "FirmwareImageDownload": {
305*28cfceb2SGunnar Mills                    "anyOf": [
306*28cfceb2SGunnar Mills                        {
307*28cfceb2SGunnar Mills                            "$ref": "#/definitions/ConfigLockOptions"
308*28cfceb2SGunnar Mills                        },
309*28cfceb2SGunnar Mills                        {
310*28cfceb2SGunnar Mills                            "type": "null"
311*28cfceb2SGunnar Mills                        }
312*28cfceb2SGunnar Mills                    ],
313*28cfceb2SGunnar Mills                    "description": "The lock state of the NVMe-defined Firmware Image Download command.",
314*28cfceb2SGunnar Mills                    "longDescription": "This property shall contain the lock state of the NVMe-defined Firmware Image Download command.",
315*28cfceb2SGunnar Mills                    "readonly": true,
316*28cfceb2SGunnar Mills                    "versionAdded": "v1_17_0"
317*28cfceb2SGunnar Mills                },
318*28cfceb2SGunnar Mills                "Lockdown": {
319*28cfceb2SGunnar Mills                    "anyOf": [
320*28cfceb2SGunnar Mills                        {
321*28cfceb2SGunnar Mills                            "$ref": "#/definitions/ConfigLockOptions"
322*28cfceb2SGunnar Mills                        },
323*28cfceb2SGunnar Mills                        {
324*28cfceb2SGunnar Mills                            "type": "null"
325*28cfceb2SGunnar Mills                        }
326*28cfceb2SGunnar Mills                    ],
327*28cfceb2SGunnar Mills                    "description": "The lock state of the NVMe-defined Lockdown command.",
328*28cfceb2SGunnar Mills                    "longDescription": "This property shall contain the lock state of the NVMe-defined Lockdown command.",
329*28cfceb2SGunnar Mills                    "readonly": true,
330*28cfceb2SGunnar Mills                    "versionAdded": "v1_17_0"
331*28cfceb2SGunnar Mills                },
332*28cfceb2SGunnar Mills                "SecuritySend": {
333*28cfceb2SGunnar Mills                    "anyOf": [
334*28cfceb2SGunnar Mills                        {
335*28cfceb2SGunnar Mills                            "$ref": "#/definitions/ConfigLockOptions"
336*28cfceb2SGunnar Mills                        },
337*28cfceb2SGunnar Mills                        {
338*28cfceb2SGunnar Mills                            "type": "null"
339*28cfceb2SGunnar Mills                        }
340*28cfceb2SGunnar Mills                    ],
341*28cfceb2SGunnar Mills                    "description": "The lock state of the NVMe-defined Security Send command.",
342*28cfceb2SGunnar Mills                    "longDescription": "This property shall contain the lock state of the NVMe-defined Security Send command.",
343*28cfceb2SGunnar Mills                    "readonly": true,
344*28cfceb2SGunnar Mills                    "versionAdded": "v1_17_0"
345*28cfceb2SGunnar Mills                },
346*28cfceb2SGunnar Mills                "VPDWrite": {
347*28cfceb2SGunnar Mills                    "anyOf": [
348*28cfceb2SGunnar Mills                        {
349*28cfceb2SGunnar Mills                            "$ref": "#/definitions/ConfigLockOptions"
350*28cfceb2SGunnar Mills                        },
351*28cfceb2SGunnar Mills                        {
352*28cfceb2SGunnar Mills                            "type": "null"
353*28cfceb2SGunnar Mills                        }
354*28cfceb2SGunnar Mills                    ],
355*28cfceb2SGunnar Mills                    "description": "The lock state of the NVMe-MI-defined VPD Write command.",
356*28cfceb2SGunnar Mills                    "longDescription": "This property shall contain the lock state of the NVMe-MI-defined VPD Write command.",
357*28cfceb2SGunnar Mills                    "readonly": true,
358*28cfceb2SGunnar Mills                    "versionAdded": "v1_17_0"
359*28cfceb2SGunnar Mills                }
360*28cfceb2SGunnar Mills            },
361*28cfceb2SGunnar Mills            "type": "object"
362*28cfceb2SGunnar Mills        },
363*28cfceb2SGunnar Mills        "NVMeSubsystemProperties": {
364*28cfceb2SGunnar Mills            "additionalProperties": false,
365*28cfceb2SGunnar Mills            "description": "Information specific to NVMe Subsystems.",
366*28cfceb2SGunnar Mills            "longDescription": "This type shall contain information specific to NVMe Subsystems.",
367*28cfceb2SGunnar Mills            "patternProperties": {
368*28cfceb2SGunnar Mills                "^([a-zA-Z_][a-zA-Z0-9_]*)?@(odata|Redfish|Message)\\.[a-zA-Z_][a-zA-Z0-9_]*$": {
369*28cfceb2SGunnar Mills                    "description": "This property shall specify a valid odata or Redfish property.",
370*28cfceb2SGunnar Mills                    "type": [
371*28cfceb2SGunnar Mills                        "array",
372*28cfceb2SGunnar Mills                        "boolean",
373*28cfceb2SGunnar Mills                        "integer",
374*28cfceb2SGunnar Mills                        "number",
375*28cfceb2SGunnar Mills                        "null",
376*28cfceb2SGunnar Mills                        "object",
377*28cfceb2SGunnar Mills                        "string"
378*28cfceb2SGunnar Mills                    ]
379*28cfceb2SGunnar Mills                }
380*28cfceb2SGunnar Mills            },
381*28cfceb2SGunnar Mills            "properties": {
382*28cfceb2SGunnar Mills                "ConfigurationLockState": {
383*28cfceb2SGunnar Mills                    "anyOf": [
384*28cfceb2SGunnar Mills                        {
385*28cfceb2SGunnar Mills                            "$ref": "#/definitions/NVMeConfigurationLockState"
386*28cfceb2SGunnar Mills                        },
387*28cfceb2SGunnar Mills                        {
388*28cfceb2SGunnar Mills                            "type": "null"
389*28cfceb2SGunnar Mills                        }
390*28cfceb2SGunnar Mills                    ],
391*28cfceb2SGunnar Mills                    "description": "The configurable features that are able to be locked from in-band usage on an NVMe subsystem and their current lock state.",
392*28cfceb2SGunnar Mills                    "longDescription": "This property shall contain the configurable features that are able to be locked from in-band usage on an NVMe subsystem and their current lock state.",
393*28cfceb2SGunnar Mills                    "versionAdded": "v1_17_0"
394*28cfceb2SGunnar Mills                },
395*28cfceb2SGunnar Mills                "MaxNamespacesSupported": {
396*28cfceb2SGunnar Mills                    "description": "The maximum number of namespace attachments supported by this NVMe Subsystem.",
397*28cfceb2SGunnar Mills                    "longDescription": "This property shall contain the maximum number of namespace attachments supported by this NVMe Subsystem.  If no maximum is specified, this property should not be implemented.",
398*28cfceb2SGunnar Mills                    "readonly": true,
399*28cfceb2SGunnar Mills                    "type": [
400*28cfceb2SGunnar Mills                        "number",
401*28cfceb2SGunnar Mills                        "null"
402*28cfceb2SGunnar Mills                    ],
403*28cfceb2SGunnar Mills                    "versionAdded": "v1_16_0"
404*28cfceb2SGunnar Mills                },
405*28cfceb2SGunnar Mills                "SharedNamespaceControllerAttachmentSupported": {
406*28cfceb2SGunnar Mills                    "description": "Indicates whether the subsystem supports shared namespace controller attachment, allowing a shared namespace to be attached concurrently to two or more controllers in an NVMe Subsystem.",
407*28cfceb2SGunnar Mills                    "longDescription": "This property shall indicate whether the subsystem supports shared namespace controller attachment, allowing a shared namespace to be attached concurrently to two or more controllers in an NVMe Subsystem.",
408*28cfceb2SGunnar Mills                    "readonly": true,
409*28cfceb2SGunnar Mills                    "type": [
410*28cfceb2SGunnar Mills                        "boolean",
411*28cfceb2SGunnar Mills                        "null"
412*28cfceb2SGunnar Mills                    ],
413*28cfceb2SGunnar Mills                    "versionAdded": "v1_16_0"
414*28cfceb2SGunnar Mills                }
415*28cfceb2SGunnar Mills            },
416*28cfceb2SGunnar Mills            "type": "object"
417*28cfceb2SGunnar Mills        },
418*28cfceb2SGunnar Mills        "OemActions": {
419*28cfceb2SGunnar Mills            "additionalProperties": true,
420*28cfceb2SGunnar Mills            "description": "The available OEM-specific actions for this resource.",
421*28cfceb2SGunnar Mills            "longDescription": "This type shall contain the available OEM-specific actions for this resource.",
422*28cfceb2SGunnar Mills            "patternProperties": {
423*28cfceb2SGunnar Mills                "^([a-zA-Z_][a-zA-Z0-9_]*)?@(odata|Redfish|Message)\\.[a-zA-Z_][a-zA-Z0-9_]*$": {
424*28cfceb2SGunnar Mills                    "description": "This property shall specify a valid odata or Redfish property.",
425*28cfceb2SGunnar Mills                    "type": [
426*28cfceb2SGunnar Mills                        "array",
427*28cfceb2SGunnar Mills                        "boolean",
428*28cfceb2SGunnar Mills                        "integer",
429*28cfceb2SGunnar Mills                        "number",
430*28cfceb2SGunnar Mills                        "null",
431*28cfceb2SGunnar Mills                        "object",
432*28cfceb2SGunnar Mills                        "string"
433*28cfceb2SGunnar Mills                    ]
434*28cfceb2SGunnar Mills                }
435*28cfceb2SGunnar Mills            },
436*28cfceb2SGunnar Mills            "properties": {},
437*28cfceb2SGunnar Mills            "type": "object"
438*28cfceb2SGunnar Mills        },
439*28cfceb2SGunnar Mills        "Rates": {
440*28cfceb2SGunnar Mills            "additionalProperties": false,
441*28cfceb2SGunnar Mills            "description": "This type describes the various controller rates used for processes such as volume rebuild or consistency checks.",
442*28cfceb2SGunnar Mills            "longDescription": "This type shall contain all the rate settings available on the controller.",
443*28cfceb2SGunnar Mills            "patternProperties": {
444*28cfceb2SGunnar Mills                "^([a-zA-Z_][a-zA-Z0-9_]*)?@(odata|Redfish|Message)\\.[a-zA-Z_][a-zA-Z0-9_]*$": {
445*28cfceb2SGunnar Mills                    "description": "This property shall specify a valid odata or Redfish property.",
446*28cfceb2SGunnar Mills                    "type": [
447*28cfceb2SGunnar Mills                        "array",
448*28cfceb2SGunnar Mills                        "boolean",
449*28cfceb2SGunnar Mills                        "integer",
450*28cfceb2SGunnar Mills                        "number",
451*28cfceb2SGunnar Mills                        "null",
452*28cfceb2SGunnar Mills                        "object",
453*28cfceb2SGunnar Mills                        "string"
454*28cfceb2SGunnar Mills                    ]
455*28cfceb2SGunnar Mills                }
456*28cfceb2SGunnar Mills            },
457*28cfceb2SGunnar Mills            "properties": {
458*28cfceb2SGunnar Mills                "ConsistencyCheckRatePercent": {
459*28cfceb2SGunnar Mills                    "description": "The percentage of controller resources used for performing a data consistency check on volumes.",
460*28cfceb2SGunnar Mills                    "longDescription": "This property shall contain the percentage of controller resources used for checking data consistency on volumes.",
461*28cfceb2SGunnar Mills                    "maximum": 100,
462*28cfceb2SGunnar Mills                    "minimum": 0,
463*28cfceb2SGunnar Mills                    "readonly": false,
464*28cfceb2SGunnar Mills                    "type": [
465*28cfceb2SGunnar Mills                        "integer",
466*28cfceb2SGunnar Mills                        "null"
467*28cfceb2SGunnar Mills                    ],
468*28cfceb2SGunnar Mills                    "versionAdded": "v1_7_0"
469*28cfceb2SGunnar Mills                },
470*28cfceb2SGunnar Mills                "RebuildRatePercent": {
471*28cfceb2SGunnar Mills                    "description": "The percentage of controller resources used for rebuilding/repairing volumes.",
472*28cfceb2SGunnar Mills                    "longDescription": "This property shall contain the percentage of controller resources used for rebuilding volumes.",
473*28cfceb2SGunnar Mills                    "maximum": 100,
474*28cfceb2SGunnar Mills                    "minimum": 0,
475*28cfceb2SGunnar Mills                    "readonly": false,
476*28cfceb2SGunnar Mills                    "type": [
477*28cfceb2SGunnar Mills                        "integer",
478*28cfceb2SGunnar Mills                        "null"
479*28cfceb2SGunnar Mills                    ],
480*28cfceb2SGunnar Mills                    "versionAdded": "v1_7_0"
481*28cfceb2SGunnar Mills                },
482*28cfceb2SGunnar Mills                "TransformationRatePercent": {
483*28cfceb2SGunnar Mills                    "description": "The percentage of controller resources used for transforming volumes from one configuration to another.",
484*28cfceb2SGunnar Mills                    "longDescription": "This property shall contain the percentage of controller resources used for transforming volumes.",
485*28cfceb2SGunnar Mills                    "maximum": 100,
486*28cfceb2SGunnar Mills                    "minimum": 0,
487*28cfceb2SGunnar Mills                    "readonly": false,
488*28cfceb2SGunnar Mills                    "type": [
489*28cfceb2SGunnar Mills                        "integer",
490*28cfceb2SGunnar Mills                        "null"
491*28cfceb2SGunnar Mills                    ],
492*28cfceb2SGunnar Mills                    "versionAdded": "v1_7_0"
493*28cfceb2SGunnar Mills                }
494*28cfceb2SGunnar Mills            },
495*28cfceb2SGunnar Mills            "type": "object"
496*28cfceb2SGunnar Mills        },
497*28cfceb2SGunnar Mills        "RekeyExternalKey": {
498*28cfceb2SGunnar Mills            "additionalProperties": false,
499*28cfceb2SGunnar Mills            "description": "This action causes the controllers of the storage subsystem to request new encryption keys managed by an external key service.",
500*28cfceb2SGunnar Mills            "longDescription": "This action shall cause the controllers of the storage subsystem to request new encryption keys managed by an external key service.",
501*28cfceb2SGunnar Mills            "parameters": {},
502*28cfceb2SGunnar Mills            "patternProperties": {
503*28cfceb2SGunnar Mills                "^([a-zA-Z_][a-zA-Z0-9_]*)?@(odata|Redfish|Message)\\.[a-zA-Z_][a-zA-Z0-9_]*$": {
504*28cfceb2SGunnar Mills                    "description": "This property shall specify a valid odata or Redfish property.",
505*28cfceb2SGunnar Mills                    "type": [
506*28cfceb2SGunnar Mills                        "array",
507*28cfceb2SGunnar Mills                        "boolean",
508*28cfceb2SGunnar Mills                        "integer",
509*28cfceb2SGunnar Mills                        "number",
510*28cfceb2SGunnar Mills                        "null",
511*28cfceb2SGunnar Mills                        "object",
512*28cfceb2SGunnar Mills                        "string"
513*28cfceb2SGunnar Mills                    ]
514*28cfceb2SGunnar Mills                }
515*28cfceb2SGunnar Mills            },
516*28cfceb2SGunnar Mills            "properties": {
517*28cfceb2SGunnar Mills                "target": {
518*28cfceb2SGunnar Mills                    "description": "Link to invoke action",
519*28cfceb2SGunnar Mills                    "format": "uri-reference",
520*28cfceb2SGunnar Mills                    "type": "string"
521*28cfceb2SGunnar Mills                },
522*28cfceb2SGunnar Mills                "title": {
523*28cfceb2SGunnar Mills                    "description": "Friendly action name",
524*28cfceb2SGunnar Mills                    "type": "string"
525*28cfceb2SGunnar Mills                }
526*28cfceb2SGunnar Mills            },
527*28cfceb2SGunnar Mills            "type": "object",
528*28cfceb2SGunnar Mills            "versionAdded": "v1_16_0"
529*28cfceb2SGunnar Mills        },
530*28cfceb2SGunnar Mills        "ResetToDefaults": {
531*28cfceb2SGunnar Mills            "additionalProperties": false,
532*28cfceb2SGunnar Mills            "description": "The reset action resets the storage device to factory defaults.  This can cause the loss of data.",
533*28cfceb2SGunnar Mills            "longDescription": "This action shall reset the storage device.  This action can impact other resources.",
534*28cfceb2SGunnar Mills            "parameters": {
535*28cfceb2SGunnar Mills                "ResetType": {
536*28cfceb2SGunnar Mills                    "$ref": "#/definitions/ResetToDefaultsType",
537*28cfceb2SGunnar Mills                    "description": "The type of reset to defaults.",
538*28cfceb2SGunnar Mills                    "longDescription": "This parameter shall contain the type of reset to defaults.",
539*28cfceb2SGunnar Mills                    "requiredParameter": true
540*28cfceb2SGunnar Mills                }
541*28cfceb2SGunnar Mills            },
542*28cfceb2SGunnar Mills            "patternProperties": {
543*28cfceb2SGunnar Mills                "^([a-zA-Z_][a-zA-Z0-9_]*)?@(odata|Redfish|Message)\\.[a-zA-Z_][a-zA-Z0-9_]*$": {
544*28cfceb2SGunnar Mills                    "description": "This property shall specify a valid odata or Redfish property.",
545*28cfceb2SGunnar Mills                    "type": [
546*28cfceb2SGunnar Mills                        "array",
547*28cfceb2SGunnar Mills                        "boolean",
548*28cfceb2SGunnar Mills                        "integer",
549*28cfceb2SGunnar Mills                        "number",
550*28cfceb2SGunnar Mills                        "null",
551*28cfceb2SGunnar Mills                        "object",
552*28cfceb2SGunnar Mills                        "string"
553*28cfceb2SGunnar Mills                    ]
554*28cfceb2SGunnar Mills                }
555*28cfceb2SGunnar Mills            },
556*28cfceb2SGunnar Mills            "properties": {
557*28cfceb2SGunnar Mills                "target": {
558*28cfceb2SGunnar Mills                    "description": "Link to invoke action",
559*28cfceb2SGunnar Mills                    "format": "uri-reference",
560*28cfceb2SGunnar Mills                    "type": "string"
561*28cfceb2SGunnar Mills                },
562*28cfceb2SGunnar Mills                "title": {
563*28cfceb2SGunnar Mills                    "description": "Friendly action name",
564*28cfceb2SGunnar Mills                    "type": "string"
565*28cfceb2SGunnar Mills                }
566*28cfceb2SGunnar Mills            },
567*28cfceb2SGunnar Mills            "type": "object",
568*28cfceb2SGunnar Mills            "versionAdded": "v1_11_0"
569*28cfceb2SGunnar Mills        },
570*28cfceb2SGunnar Mills        "ResetToDefaultsType": {
571*28cfceb2SGunnar Mills            "enum": [
572*28cfceb2SGunnar Mills                "ResetAll",
573*28cfceb2SGunnar Mills                "PreserveVolumes"
574*28cfceb2SGunnar Mills            ],
575*28cfceb2SGunnar Mills            "enumDescriptions": {
576*28cfceb2SGunnar Mills                "PreserveVolumes": "Reset all settings to factory defaults but preserve the configured volumes on the controllers.",
577*28cfceb2SGunnar Mills                "ResetAll": "Reset all settings to factory defaults and remove all volumes."
578*28cfceb2SGunnar Mills            },
579*28cfceb2SGunnar Mills            "type": "string"
580*28cfceb2SGunnar Mills        },
581*28cfceb2SGunnar Mills        "SetControllerPassword": {
582*28cfceb2SGunnar Mills            "additionalProperties": false,
583*28cfceb2SGunnar Mills            "description": "This action sets the controller boot password for a host-based storage controller.",
584*28cfceb2SGunnar Mills            "longDescription": "This action shall set the controller boot password for a host-based storage controller.",
585*28cfceb2SGunnar Mills            "parameters": {
586*28cfceb2SGunnar Mills                "CurrentPassword": {
587*28cfceb2SGunnar Mills                    "description": "The current controller password.  This parameter is not needed if the controller does not currently have a password.",
588*28cfceb2SGunnar Mills                    "longDescription": "This parameter shall contain the current controller password.  Services may reject the action request if this parameter is not provided or the value supplied does not match the current password.",
589*28cfceb2SGunnar Mills                    "type": "string"
590*28cfceb2SGunnar Mills                },
591*28cfceb2SGunnar Mills                "NewPassword": {
592*28cfceb2SGunnar Mills                    "description": "The new password to set for the controller.",
593*28cfceb2SGunnar Mills                    "longDescription": "This parameter shall contain the new password to set for the controller.",
594*28cfceb2SGunnar Mills                    "requiredParameter": true,
595*28cfceb2SGunnar Mills                    "type": "string"
596*28cfceb2SGunnar Mills                },
597*28cfceb2SGunnar Mills                "SecurityKey": {
598*28cfceb2SGunnar Mills                    "description": "The security key for the controller.  This parameter is not needed if the controller does not have a security key.",
599*28cfceb2SGunnar Mills                    "longDescription": "This parameter shall contain the controller security key.  Services may reject the action request if this parameter is not provided or the value provided does not match the security key for the controller.",
600*28cfceb2SGunnar Mills                    "type": "string"
601*28cfceb2SGunnar Mills                }
602*28cfceb2SGunnar Mills            },
603*28cfceb2SGunnar Mills            "patternProperties": {
604*28cfceb2SGunnar Mills                "^([a-zA-Z_][a-zA-Z0-9_]*)?@(odata|Redfish|Message)\\.[a-zA-Z_][a-zA-Z0-9_]*$": {
605*28cfceb2SGunnar Mills                    "description": "This property shall specify a valid odata or Redfish property.",
606*28cfceb2SGunnar Mills                    "type": [
607*28cfceb2SGunnar Mills                        "array",
608*28cfceb2SGunnar Mills                        "boolean",
609*28cfceb2SGunnar Mills                        "integer",
610*28cfceb2SGunnar Mills                        "number",
611*28cfceb2SGunnar Mills                        "null",
612*28cfceb2SGunnar Mills                        "object",
613*28cfceb2SGunnar Mills                        "string"
614*28cfceb2SGunnar Mills                    ]
615*28cfceb2SGunnar Mills                }
616*28cfceb2SGunnar Mills            },
617*28cfceb2SGunnar Mills            "properties": {
618*28cfceb2SGunnar Mills                "target": {
619*28cfceb2SGunnar Mills                    "description": "Link to invoke action",
620*28cfceb2SGunnar Mills                    "format": "uri-reference",
621*28cfceb2SGunnar Mills                    "type": "string"
622*28cfceb2SGunnar Mills                },
623*28cfceb2SGunnar Mills                "title": {
624*28cfceb2SGunnar Mills                    "description": "Friendly action name",
625*28cfceb2SGunnar Mills                    "type": "string"
626*28cfceb2SGunnar Mills                }
627*28cfceb2SGunnar Mills            },
628*28cfceb2SGunnar Mills            "type": "object",
629*28cfceb2SGunnar Mills            "versionAdded": "v1_17_0"
630*28cfceb2SGunnar Mills        },
631*28cfceb2SGunnar Mills        "SetEncryptionKey": {
632*28cfceb2SGunnar Mills            "additionalProperties": false,
633*28cfceb2SGunnar Mills            "description": "This action sets the local encryption key for the storage subsystem.",
634*28cfceb2SGunnar Mills            "longDescription": "This action shall set the local encryption key for the storage subsystem.",
635*28cfceb2SGunnar Mills            "parameters": {
636*28cfceb2SGunnar Mills                "CurrentEncryptionKey": {
637*28cfceb2SGunnar Mills                    "description": "The current local encryption key on the storage subsystem.  This parameter is not needed if the controller does not currently have an encryption key.",
638*28cfceb2SGunnar Mills                    "longDescription": "This parameter shall contain the current local encryption key on the storage subsystem.  Services may reject the action request if this parameter is not provided or the value supplied does not match the current encryption key.",
639*28cfceb2SGunnar Mills                    "type": "string",
640*28cfceb2SGunnar Mills                    "versionAdded": "v1_14_0"
641*28cfceb2SGunnar Mills                },
642*28cfceb2SGunnar Mills                "EncryptionKey": {
643*28cfceb2SGunnar Mills                    "description": "The local encryption key to set on the storage subsystem.",
644*28cfceb2SGunnar Mills                    "longDescription": "This parameter shall contain the local encryption key to set on the storage subsystem.",
645*28cfceb2SGunnar Mills                    "requiredParameter": true,
646*28cfceb2SGunnar Mills                    "type": "string"
647*28cfceb2SGunnar Mills                },
648*28cfceb2SGunnar Mills                "EncryptionKeyIdentifier": {
649*28cfceb2SGunnar Mills                    "description": "The local encryption key identifier used by the storage subsystem.",
650*28cfceb2SGunnar Mills                    "longDescription": "This property shall contain the local encryption key identifier used by the storage subsystem.",
651*28cfceb2SGunnar Mills                    "type": "string",
652*28cfceb2SGunnar Mills                    "versionAdded": "v1_14_0"
653*28cfceb2SGunnar Mills                }
654*28cfceb2SGunnar Mills            },
655*28cfceb2SGunnar Mills            "patternProperties": {
656*28cfceb2SGunnar Mills                "^([a-zA-Z_][a-zA-Z0-9_]*)?@(odata|Redfish|Message)\\.[a-zA-Z_][a-zA-Z0-9_]*$": {
657*28cfceb2SGunnar Mills                    "description": "This property shall specify a valid odata or Redfish property.",
658*28cfceb2SGunnar Mills                    "type": [
659*28cfceb2SGunnar Mills                        "array",
660*28cfceb2SGunnar Mills                        "boolean",
661*28cfceb2SGunnar Mills                        "integer",
662*28cfceb2SGunnar Mills                        "number",
663*28cfceb2SGunnar Mills                        "null",
664*28cfceb2SGunnar Mills                        "object",
665*28cfceb2SGunnar Mills                        "string"
666*28cfceb2SGunnar Mills                    ]
667*28cfceb2SGunnar Mills                }
668*28cfceb2SGunnar Mills            },
669*28cfceb2SGunnar Mills            "properties": {
670*28cfceb2SGunnar Mills                "target": {
671*28cfceb2SGunnar Mills                    "description": "Link to invoke action",
672*28cfceb2SGunnar Mills                    "format": "uri-reference",
673*28cfceb2SGunnar Mills                    "type": "string"
674*28cfceb2SGunnar Mills                },
675*28cfceb2SGunnar Mills                "title": {
676*28cfceb2SGunnar Mills                    "description": "Friendly action name",
677*28cfceb2SGunnar Mills                    "type": "string"
678*28cfceb2SGunnar Mills                }
679*28cfceb2SGunnar Mills            },
680*28cfceb2SGunnar Mills            "type": "object"
681*28cfceb2SGunnar Mills        },
682*28cfceb2SGunnar Mills        "Storage": {
683*28cfceb2SGunnar Mills            "additionalProperties": false,
684*28cfceb2SGunnar Mills            "description": "The `Storage` schema defines a storage subsystem and its respective properties.  A storage subsystem represents a set of physical or virtual storage controllers and the resources, such as volumes, that can be accessed from that subsystem.",
685*28cfceb2SGunnar Mills            "longDescription": "This resource shall represent a storage subsystem in the Redfish Specification.",
686*28cfceb2SGunnar Mills            "patternProperties": {
687*28cfceb2SGunnar Mills                "^([a-zA-Z_][a-zA-Z0-9_]*)?@(odata|Redfish|Message)\\.[a-zA-Z_][a-zA-Z0-9_]*$": {
688*28cfceb2SGunnar Mills                    "description": "This property shall specify a valid odata or Redfish property.",
689*28cfceb2SGunnar Mills                    "type": [
690*28cfceb2SGunnar Mills                        "array",
691*28cfceb2SGunnar Mills                        "boolean",
692*28cfceb2SGunnar Mills                        "integer",
693*28cfceb2SGunnar Mills                        "number",
694*28cfceb2SGunnar Mills                        "null",
695*28cfceb2SGunnar Mills                        "object",
696*28cfceb2SGunnar Mills                        "string"
697*28cfceb2SGunnar Mills                    ]
698*28cfceb2SGunnar Mills                }
699*28cfceb2SGunnar Mills            },
700*28cfceb2SGunnar Mills            "properties": {
701*28cfceb2SGunnar Mills                "@odata.context": {
702*28cfceb2SGunnar Mills                    "$ref": "http://redfish.dmtf.org/schemas/v1/odata-v4.json#/definitions/context"
703*28cfceb2SGunnar Mills                },
704*28cfceb2SGunnar Mills                "@odata.etag": {
705*28cfceb2SGunnar Mills                    "$ref": "http://redfish.dmtf.org/schemas/v1/odata-v4.json#/definitions/etag"
706*28cfceb2SGunnar Mills                },
707*28cfceb2SGunnar Mills                "@odata.id": {
708*28cfceb2SGunnar Mills                    "$ref": "http://redfish.dmtf.org/schemas/v1/odata-v4.json#/definitions/id"
709*28cfceb2SGunnar Mills                },
710*28cfceb2SGunnar Mills                "@odata.type": {
711*28cfceb2SGunnar Mills                    "$ref": "http://redfish.dmtf.org/schemas/v1/odata-v4.json#/definitions/type"
712*28cfceb2SGunnar Mills                },
713*28cfceb2SGunnar Mills                "Actions": {
714*28cfceb2SGunnar Mills                    "$ref": "#/definitions/Actions",
715*28cfceb2SGunnar Mills                    "description": "The available actions for this resource.",
716*28cfceb2SGunnar Mills                    "longDescription": "This property shall contain the available actions for this resource."
717*28cfceb2SGunnar Mills                },
718*28cfceb2SGunnar Mills                "AutoVolumeCreate": {
719*28cfceb2SGunnar Mills                    "anyOf": [
720*28cfceb2SGunnar Mills                        {
721*28cfceb2SGunnar Mills                            "$ref": "#/definitions/AutoVolumeCreate"
722*28cfceb2SGunnar Mills                        },
723*28cfceb2SGunnar Mills                        {
724*28cfceb2SGunnar Mills                            "type": "null"
725*28cfceb2SGunnar Mills                        }
726*28cfceb2SGunnar Mills                    ],
727*28cfceb2SGunnar Mills                    "description": "Indicates if this storage subsystem automatically creates new volumes for unassigned drives.",
728*28cfceb2SGunnar Mills                    "longDescription": "This property shall indicate if volumes are created automatically for each unassigned drive attached to this storage subsystem.",
729*28cfceb2SGunnar Mills                    "readonly": false,
730*28cfceb2SGunnar Mills                    "versionAdded": "v1_15_0"
731*28cfceb2SGunnar Mills                },
732*28cfceb2SGunnar Mills                "ConfigurationLock": {
733*28cfceb2SGunnar Mills                    "anyOf": [
734*28cfceb2SGunnar Mills                        {
735*28cfceb2SGunnar Mills                            "$ref": "#/definitions/ConfigurationLock"
736*28cfceb2SGunnar Mills                        },
737*28cfceb2SGunnar Mills                        {
738*28cfceb2SGunnar Mills                            "type": "null"
739*28cfceb2SGunnar Mills                        }
740*28cfceb2SGunnar Mills                    ],
741*28cfceb2SGunnar Mills                    "description": "Indicates whether in-band configuration requests to the storage subsystem are locked.  Other properties, such as `ConfigurationLockState`, contain additional information regarding the status of the configuration lock.",
742*28cfceb2SGunnar Mills                    "longDescription": "This property shall indicate whether configuration requests to the storage subsystem are locked.  Services shall reject modification requests that contain the value `Partial`.  Modifying the value of this property may affect the `ConfigurationLock` property in `Drive` resources referenced by the `Drives` property.",
743*28cfceb2SGunnar Mills                    "readonly": false,
744*28cfceb2SGunnar Mills                    "versionAdded": "v1_16_0"
745*28cfceb2SGunnar Mills                },
746*28cfceb2SGunnar Mills                "Connections": {
747*28cfceb2SGunnar Mills                    "$ref": "http://redfish.dmtf.org/schemas/v1/ConnectionCollection.json#/definitions/ConnectionCollection",
748*28cfceb2SGunnar Mills                    "description": "The collection of links to the connections that this storage subsystem contains.",
749*28cfceb2SGunnar Mills                    "longDescription": "This property shall contain a link to a resource collection of type `ConnectionCollection`.  The members of this collection shall reference Connection resources subordinate to Fabric resources.",
750*28cfceb2SGunnar Mills                    "readonly": true,
751*28cfceb2SGunnar Mills                    "versionAdded": "v1_15_0"
752*28cfceb2SGunnar Mills                },
753*28cfceb2SGunnar Mills                "ConsistencyGroups": {
754*28cfceb2SGunnar Mills                    "$ref": "http://redfish.dmtf.org/schemas/swordfish/v1/ConsistencyGroupCollection.json#/definitions/ConsistencyGroupCollection",
755*28cfceb2SGunnar Mills                    "description": "The consistency groups, each of which contains a set of volumes that are treated by an application or set of applications as a single resource, that are managed by this storage subsystem.",
756*28cfceb2SGunnar Mills                    "longDescription": "This property shall contain a link to a resource collection of type `ConsistencyGroupCollection`.  The property shall be used when groups of volumes are treated as a single resource by an application or set of applications.",
757*28cfceb2SGunnar Mills                    "readonly": true,
758*28cfceb2SGunnar Mills                    "versionAdded": "v1_8_0"
759*28cfceb2SGunnar Mills                },
760*28cfceb2SGunnar Mills                "Controllers": {
761*28cfceb2SGunnar Mills                    "$ref": "http://redfish.dmtf.org/schemas/v1/StorageControllerCollection.json#/definitions/StorageControllerCollection",
762*28cfceb2SGunnar Mills                    "description": "The set of controllers instantiated by this storage subsystem.",
763*28cfceb2SGunnar Mills                    "longDescription": "This property shall contain a link to a resource collection of type `StorageControllerCollection` that contains the set of storage controllers allocated to this storage subsystem.",
764*28cfceb2SGunnar Mills                    "readonly": true,
765*28cfceb2SGunnar Mills                    "versionAdded": "v1_9_0"
766*28cfceb2SGunnar Mills                },
767*28cfceb2SGunnar Mills                "Description": {
768*28cfceb2SGunnar Mills                    "anyOf": [
769*28cfceb2SGunnar Mills                        {
770*28cfceb2SGunnar Mills                            "$ref": "http://redfish.dmtf.org/schemas/v1/Resource.json#/definitions/Description"
771*28cfceb2SGunnar Mills                        },
772*28cfceb2SGunnar Mills                        {
773*28cfceb2SGunnar Mills                            "type": "null"
774*28cfceb2SGunnar Mills                        }
775*28cfceb2SGunnar Mills                    ],
776*28cfceb2SGunnar Mills                    "readonly": true
777*28cfceb2SGunnar Mills                },
778*28cfceb2SGunnar Mills                "Drives": {
779*28cfceb2SGunnar Mills                    "description": "The set of drives attached to the storage controllers that this resource represents.",
780*28cfceb2SGunnar Mills                    "items": {
781*28cfceb2SGunnar Mills                        "$ref": "http://redfish.dmtf.org/schemas/v1/Drive.json#/definitions/Drive"
782*28cfceb2SGunnar Mills                    },
783*28cfceb2SGunnar Mills                    "longDescription": "This property shall contain a set of the drives attached to the storage controllers that this resource represents.",
784*28cfceb2SGunnar Mills                    "readonly": true,
785*28cfceb2SGunnar Mills                    "type": "array"
786*28cfceb2SGunnar Mills                },
787*28cfceb2SGunnar Mills                "Drives@odata.count": {
788*28cfceb2SGunnar Mills                    "$ref": "http://redfish.dmtf.org/schemas/v1/odata-v4.json#/definitions/count"
789*28cfceb2SGunnar Mills                },
790*28cfceb2SGunnar Mills                "EncryptionMode": {
791*28cfceb2SGunnar Mills                    "anyOf": [
792*28cfceb2SGunnar Mills                        {
793*28cfceb2SGunnar Mills                            "$ref": "#/definitions/EncryptionMode"
794*28cfceb2SGunnar Mills                        },
795*28cfceb2SGunnar Mills                        {
796*28cfceb2SGunnar Mills                            "type": "null"
797*28cfceb2SGunnar Mills                        }
798*28cfceb2SGunnar Mills                    ],
799*28cfceb2SGunnar Mills                    "description": "The encryption mode of this storage subsystem.",
800*28cfceb2SGunnar Mills                    "longDescription": "This property shall contain the encryption mode of this storage subsystem.",
801*28cfceb2SGunnar Mills                    "readonly": false,
802*28cfceb2SGunnar Mills                    "versionAdded": "v1_14_0"
803*28cfceb2SGunnar Mills                },
804*28cfceb2SGunnar Mills                "EndpointGroups": {
805*28cfceb2SGunnar Mills                    "$ref": "http://redfish.dmtf.org/schemas/v1/EndpointGroupCollection.json#/definitions/EndpointGroupCollection",
806*28cfceb2SGunnar Mills                    "description": "All of the endpoint groups, each of which contains a set of endpoints that are used for a common purpose such as an ACL or logical identification, that belong to this storage subsystem.",
807*28cfceb2SGunnar Mills                    "longDescription": "This property shall contain a link to a resource collection of type `EndpointGroupCollection`.  This property shall be implemented when atomic control is needed to perform mapping, masking, and zoning operations.",
808*28cfceb2SGunnar Mills                    "readonly": true,
809*28cfceb2SGunnar Mills                    "versionAdded": "v1_8_0"
810*28cfceb2SGunnar Mills                },
811*28cfceb2SGunnar Mills                "FileSystems": {
812*28cfceb2SGunnar Mills                    "$ref": "http://redfish.dmtf.org/schemas/swordfish/v1/FileSystemCollection.json#/definitions/FileSystemCollection",
813*28cfceb2SGunnar Mills                    "description": "All file systems that are allocated by this storage subsystem.",
814*28cfceb2SGunnar Mills                    "longDescription": "This property shall contain a link to a resource collection of type `FileSystemCollection`.  This property shall be used when file systems are shared or exported by the storage subsystem.",
815*28cfceb2SGunnar Mills                    "readonly": true,
816*28cfceb2SGunnar Mills                    "versionAdded": "v1_8_0"
817*28cfceb2SGunnar Mills                },
818*28cfceb2SGunnar Mills                "HotspareActivationPolicy": {
819*28cfceb2SGunnar Mills                    "anyOf": [
820*28cfceb2SGunnar Mills                        {
821*28cfceb2SGunnar Mills                            "$ref": "#/definitions/HotspareActivationPolicy"
822*28cfceb2SGunnar Mills                        },
823*28cfceb2SGunnar Mills                        {
824*28cfceb2SGunnar Mills                            "type": "null"
825*28cfceb2SGunnar Mills                        }
826*28cfceb2SGunnar Mills                    ],
827*28cfceb2SGunnar Mills                    "description": "The policy under which hot spare drives in this storage domain will activate.",
828*28cfceb2SGunnar Mills                    "longDescription": "This property shall contain the policy under which all drives operating as hot spares in this storage domain will activate.",
829*28cfceb2SGunnar Mills                    "readonly": false,
830*28cfceb2SGunnar Mills                    "versionAdded": "v1_14_0"
831*28cfceb2SGunnar Mills                },
832*28cfceb2SGunnar Mills                "Id": {
833*28cfceb2SGunnar Mills                    "$ref": "http://redfish.dmtf.org/schemas/v1/Resource.json#/definitions/Id",
834*28cfceb2SGunnar Mills                    "readonly": true
835*28cfceb2SGunnar Mills                },
836*28cfceb2SGunnar Mills                "Identifiers": {
837*28cfceb2SGunnar Mills                    "description": "The durable names for the storage subsystem.",
838*28cfceb2SGunnar Mills                    "items": {
839*28cfceb2SGunnar Mills                        "$ref": "http://redfish.dmtf.org/schemas/v1/Resource.json#/definitions/Identifier"
840*28cfceb2SGunnar Mills                    },
841*28cfceb2SGunnar Mills                    "longDescription": "This property shall contain a list of all known durable names for the storage subsystem.",
842*28cfceb2SGunnar Mills                    "type": "array",
843*28cfceb2SGunnar Mills                    "versionAdded": "v1_9_0"
844*28cfceb2SGunnar Mills                },
845*28cfceb2SGunnar Mills                "Links": {
846*28cfceb2SGunnar Mills                    "$ref": "#/definitions/Links",
847*28cfceb2SGunnar Mills                    "description": "The links to other resources that are related to this resource.",
848*28cfceb2SGunnar Mills                    "longDescription": "This property shall contain links to resources that are related to but are not contained by, or subordinate to, this resource."
849*28cfceb2SGunnar Mills                },
850*28cfceb2SGunnar Mills                "LocalEncryptionKeyIdentifier": {
851*28cfceb2SGunnar Mills                    "description": "The local encryption key identifier used by the storage subsystem.",
852*28cfceb2SGunnar Mills                    "longDescription": "This property shall contain the local encryption key identifier used by the storage subsystem when `EncryptionMode` contains `UseLocalKey`.",
853*28cfceb2SGunnar Mills                    "readonly": true,
854*28cfceb2SGunnar Mills                    "type": [
855*28cfceb2SGunnar Mills                        "string",
856*28cfceb2SGunnar Mills                        "null"
857*28cfceb2SGunnar Mills                    ],
858*28cfceb2SGunnar Mills                    "versionAdded": "v1_14_0"
859*28cfceb2SGunnar Mills                },
860*28cfceb2SGunnar Mills                "NVMeSubsystemProperties": {
861*28cfceb2SGunnar Mills                    "anyOf": [
862*28cfceb2SGunnar Mills                        {
863*28cfceb2SGunnar Mills                            "$ref": "#/definitions/NVMeSubsystemProperties"
864*28cfceb2SGunnar Mills                        },
865*28cfceb2SGunnar Mills                        {
866*28cfceb2SGunnar Mills                            "type": "null"
867*28cfceb2SGunnar Mills                        }
868*28cfceb2SGunnar Mills                    ],
869*28cfceb2SGunnar Mills                    "description": "Information specific to NVMe Subsystems.",
870*28cfceb2SGunnar Mills                    "longDescription": "This property shall contain information specific to NVMe Subsystems.  This property shall only be present if this resource represents an NVMe Subsystem.",
871*28cfceb2SGunnar Mills                    "versionAdded": "v1_16_0"
872*28cfceb2SGunnar Mills                },
873*28cfceb2SGunnar Mills                "Name": {
874*28cfceb2SGunnar Mills                    "$ref": "http://redfish.dmtf.org/schemas/v1/Resource.json#/definitions/Name",
875*28cfceb2SGunnar Mills                    "readonly": true
876*28cfceb2SGunnar Mills                },
877*28cfceb2SGunnar Mills                "Oem": {
878*28cfceb2SGunnar Mills                    "$ref": "http://redfish.dmtf.org/schemas/v1/Resource.json#/definitions/Oem",
879*28cfceb2SGunnar Mills                    "description": "The OEM extension property.",
880*28cfceb2SGunnar Mills                    "longDescription": "This property shall contain the OEM extensions.  All values for properties that this object contains shall conform to the Redfish Specification-described requirements."
881*28cfceb2SGunnar Mills                },
882*28cfceb2SGunnar Mills                "Redundancy": {
883*28cfceb2SGunnar Mills                    "autoExpand": true,
884*28cfceb2SGunnar Mills                    "description": "Redundancy information for the storage subsystem.",
885*28cfceb2SGunnar Mills                    "items": {
886*28cfceb2SGunnar Mills                        "$ref": "http://redfish.dmtf.org/schemas/v1/Redundancy.json#/definitions/Redundancy"
887*28cfceb2SGunnar Mills                    },
888*28cfceb2SGunnar Mills                    "longDescription": "This property shall contain redundancy information for the storage subsystem.",
889*28cfceb2SGunnar Mills                    "type": "array"
890*28cfceb2SGunnar Mills                },
891*28cfceb2SGunnar Mills                "Redundancy@odata.count": {
892*28cfceb2SGunnar Mills                    "$ref": "http://redfish.dmtf.org/schemas/v1/odata-v4.json#/definitions/count"
893*28cfceb2SGunnar Mills                },
894*28cfceb2SGunnar Mills                "Status": {
895*28cfceb2SGunnar Mills                    "$ref": "http://redfish.dmtf.org/schemas/v1/Resource.json#/definitions/Status",
896*28cfceb2SGunnar Mills                    "description": "The status and health of the resource and its subordinate or dependent resources.",
897*28cfceb2SGunnar Mills                    "longDescription": "This property shall contain any status or health properties of the resource."
898*28cfceb2SGunnar Mills                },
899*28cfceb2SGunnar Mills                "StorageControllers": {
900*28cfceb2SGunnar Mills                    "autoExpand": true,
901*28cfceb2SGunnar Mills                    "deprecated": "This property has been deprecated in favor of `Controllers` to allow for storage controllers to be represented as their own resources.",
902*28cfceb2SGunnar Mills                    "description": "The set of storage controllers that this resource represents.",
903*28cfceb2SGunnar Mills                    "items": {
904*28cfceb2SGunnar Mills                        "$ref": "#/definitions/StorageController"
905*28cfceb2SGunnar Mills                    },
906*28cfceb2SGunnar Mills                    "longDescription": "This property shall contain a set of the storage controllers that this resource represents.",
907*28cfceb2SGunnar Mills                    "readonly": true,
908*28cfceb2SGunnar Mills                    "type": "array",
909*28cfceb2SGunnar Mills                    "versionDeprecated": "v1_13_0"
910*28cfceb2SGunnar Mills                },
911*28cfceb2SGunnar Mills                "StorageControllers@odata.count": {
912*28cfceb2SGunnar Mills                    "$ref": "http://redfish.dmtf.org/schemas/v1/odata-v4.json#/definitions/count"
913*28cfceb2SGunnar Mills                },
914*28cfceb2SGunnar Mills                "StorageGroups": {
915*28cfceb2SGunnar Mills                    "$ref": "http://redfish.dmtf.org/schemas/swordfish/v1/StorageGroupCollection.json#/definitions/StorageGroupCollection",
916*28cfceb2SGunnar Mills                    "deprecated": "This property was deprecated in favor of the `Connections` property.",
917*28cfceb2SGunnar Mills                    "description": "All of the storage groups, each of which contains a set of volumes and endpoints that are managed as a group for mapping and masking, that belong to this storage subsystem.",
918*28cfceb2SGunnar Mills                    "longDescription": "This property shall contain a link to a resource collection of type `StorageGroupsCollection`.  This property shall be used when implementing mapping and masking.",
919*28cfceb2SGunnar Mills                    "readonly": true,
920*28cfceb2SGunnar Mills                    "versionAdded": "v1_8_0",
921*28cfceb2SGunnar Mills                    "versionDeprecated": "v1_15_0"
922*28cfceb2SGunnar Mills                },
923*28cfceb2SGunnar Mills                "StoragePools": {
924*28cfceb2SGunnar Mills                    "$ref": "http://redfish.dmtf.org/schemas/swordfish/v1/StoragePoolCollection.json#/definitions/StoragePoolCollection",
925*28cfceb2SGunnar Mills                    "description": "The set of all storage pools that are allocated by this storage subsystem.  A storage pool is the set of storage capacity that can be used to produce volumes or other storage pools.",
926*28cfceb2SGunnar Mills                    "longDescription": "This property shall contain a link to a resource collection of type `StoragePoolCollection`.  This property shall be used when an abstraction of media, rather than references to individual media, are used as the storage data source.",
927*28cfceb2SGunnar Mills                    "readonly": true,
928*28cfceb2SGunnar Mills                    "versionAdded": "v1_8_0"
929*28cfceb2SGunnar Mills                },
930*28cfceb2SGunnar Mills                "TargetConfigurationLockLevel": {
931*28cfceb2SGunnar Mills                    "anyOf": [
932*28cfceb2SGunnar Mills                        {
933*28cfceb2SGunnar Mills                            "$ref": "#/definitions/TargetConfigurationLockLevel"
934*28cfceb2SGunnar Mills                        },
935*28cfceb2SGunnar Mills                        {
936*28cfceb2SGunnar Mills                            "type": "null"
937*28cfceb2SGunnar Mills                        }
938*28cfceb2SGunnar Mills                    ],
939*28cfceb2SGunnar Mills                    "description": "Indicates the target configuration lock level for the drive based upon the state of the `ConfigurationLock` property.  Other properties, such as `ConfigurationLockState`, contain additional information regarding the status of the configuration lock.",
940*28cfceb2SGunnar Mills                    "longDescription": "This property shall contain the target configuration lock level for the drive.  For NVMe subsystems, services shall implement the locking requirements specified by SNIA's Swordfish NVMe Model Overview and Mapping Guide.",
941*28cfceb2SGunnar Mills                    "readonly": false,
942*28cfceb2SGunnar Mills                    "versionAdded": "v1_17_0"
943*28cfceb2SGunnar Mills                },
944*28cfceb2SGunnar Mills                "Volumes": {
945*28cfceb2SGunnar Mills                    "$ref": "http://redfish.dmtf.org/schemas/swordfish/v1/VolumeCollection.json#/definitions/VolumeCollection",
946*28cfceb2SGunnar Mills                    "description": "The set of volumes that the storage controllers produce.",
947*28cfceb2SGunnar Mills                    "longDescription": "This property shall contain a link to a resource collection of type `VolumeCollection`.",
948*28cfceb2SGunnar Mills                    "readonly": true
949*28cfceb2SGunnar Mills                }
950*28cfceb2SGunnar Mills            },
951*28cfceb2SGunnar Mills            "required": [
952*28cfceb2SGunnar Mills                "@odata.id",
953*28cfceb2SGunnar Mills                "@odata.type",
954*28cfceb2SGunnar Mills                "Id",
955*28cfceb2SGunnar Mills                "Name"
956*28cfceb2SGunnar Mills            ],
957*28cfceb2SGunnar Mills            "type": "object"
958*28cfceb2SGunnar Mills        },
959*28cfceb2SGunnar Mills        "StorageController": {
960*28cfceb2SGunnar Mills            "additionalProperties": false,
961*28cfceb2SGunnar Mills            "description": "The StorageController schema describes a storage controller and its properties.  A storage controller represents a physical or virtual storage device that produces volumes.",
962*28cfceb2SGunnar Mills            "longDescription": "This resource shall represent a storage controller in the Redfish Specification.",
963*28cfceb2SGunnar Mills            "patternProperties": {
964*28cfceb2SGunnar Mills                "^([a-zA-Z_][a-zA-Z0-9_]*)?@(odata|Redfish|Message)\\.[a-zA-Z_][a-zA-Z0-9_]*$": {
965*28cfceb2SGunnar Mills                    "description": "This property shall specify a valid odata or Redfish property.",
966*28cfceb2SGunnar Mills                    "type": [
967*28cfceb2SGunnar Mills                        "array",
968*28cfceb2SGunnar Mills                        "boolean",
969*28cfceb2SGunnar Mills                        "integer",
970*28cfceb2SGunnar Mills                        "number",
971*28cfceb2SGunnar Mills                        "null",
972*28cfceb2SGunnar Mills                        "object",
973*28cfceb2SGunnar Mills                        "string"
974*28cfceb2SGunnar Mills                    ]
975*28cfceb2SGunnar Mills                }
976*28cfceb2SGunnar Mills            },
977*28cfceb2SGunnar Mills            "properties": {
978*28cfceb2SGunnar Mills                "@odata.id": {
979*28cfceb2SGunnar Mills                    "$ref": "http://redfish.dmtf.org/schemas/v1/odata-v4.json#/definitions/id"
980*28cfceb2SGunnar Mills                },
981*28cfceb2SGunnar Mills                "Actions": {
982*28cfceb2SGunnar Mills                    "$ref": "#/definitions/StorageControllerActions",
983*28cfceb2SGunnar Mills                    "description": "The available actions for this resource.",
984*28cfceb2SGunnar Mills                    "longDescription": "This property shall contain the available actions for this resource.",
985*28cfceb2SGunnar Mills                    "versionAdded": "v1_2_0"
986*28cfceb2SGunnar Mills                },
987*28cfceb2SGunnar Mills                "Assembly": {
988*28cfceb2SGunnar Mills                    "$ref": "http://redfish.dmtf.org/schemas/v1/Assembly.json#/definitions/Assembly",
989*28cfceb2SGunnar Mills                    "description": "The link to the assembly associated with this storage controller.",
990*28cfceb2SGunnar Mills                    "longDescription": "This property shall contain a link to a resource of type `Assembly`.",
991*28cfceb2SGunnar Mills                    "readonly": true,
992*28cfceb2SGunnar Mills                    "versionAdded": "v1_4_0"
993*28cfceb2SGunnar Mills                },
994*28cfceb2SGunnar Mills                "AssetTag": {
995*28cfceb2SGunnar Mills                    "description": "The user-assigned asset tag for this storage controller.",
996*28cfceb2SGunnar Mills                    "longDescription": "This property shall track the storage controller for inventory purposes.",
997*28cfceb2SGunnar Mills                    "readonly": false,
998*28cfceb2SGunnar Mills                    "type": [
999*28cfceb2SGunnar Mills                        "string",
1000*28cfceb2SGunnar Mills                        "null"
1001*28cfceb2SGunnar Mills                    ]
1002*28cfceb2SGunnar Mills                },
1003*28cfceb2SGunnar Mills                "CacheSummary": {
1004*28cfceb2SGunnar Mills                    "$ref": "#/definitions/CacheSummary",
1005*28cfceb2SGunnar Mills                    "description": "The cache memory of the storage controller in general detail.",
1006*28cfceb2SGunnar Mills                    "longDescription": "This property shall contain properties that describe the cache memory for this resource.",
1007*28cfceb2SGunnar Mills                    "versionAdded": "v1_5_0"
1008*28cfceb2SGunnar Mills                },
1009*28cfceb2SGunnar Mills                "Certificates": {
1010*28cfceb2SGunnar Mills                    "$ref": "http://redfish.dmtf.org/schemas/v1/CertificateCollection.json#/definitions/CertificateCollection",
1011*28cfceb2SGunnar Mills                    "description": "The link to a collection of certificates for device identity and attestation.",
1012*28cfceb2SGunnar Mills                    "longDescription": "This property shall contain a link to a resource collection of type `CertificateCollection` that contains certificates for device identity and attestation.",
1013*28cfceb2SGunnar Mills                    "readonly": true,
1014*28cfceb2SGunnar Mills                    "versionAdded": "v1_10_0"
1015*28cfceb2SGunnar Mills                },
1016*28cfceb2SGunnar Mills                "ControllerRates": {
1017*28cfceb2SGunnar Mills                    "$ref": "#/definitions/Rates",
1018*28cfceb2SGunnar Mills                    "description": "This property describes the various controller rates used for processes such as volume rebuild or consistency checks.",
1019*28cfceb2SGunnar Mills                    "longDescription": "This object shall contain all the rate settings available on the controller.",
1020*28cfceb2SGunnar Mills                    "versionAdded": "v1_7_0"
1021*28cfceb2SGunnar Mills                },
1022*28cfceb2SGunnar Mills                "FirmwareVersion": {
1023*28cfceb2SGunnar Mills                    "description": "The firmware version of this storage controller.",
1024*28cfceb2SGunnar Mills                    "longDescription": "This property shall contain the firmware version as defined by the manufacturer for the associated storage controller.",
1025*28cfceb2SGunnar Mills                    "readonly": true,
1026*28cfceb2SGunnar Mills                    "type": [
1027*28cfceb2SGunnar Mills                        "string",
1028*28cfceb2SGunnar Mills                        "null"
1029*28cfceb2SGunnar Mills                    ]
1030*28cfceb2SGunnar Mills                },
1031*28cfceb2SGunnar Mills                "Identifiers": {
1032*28cfceb2SGunnar Mills                    "description": "The durable names for the storage controller.",
1033*28cfceb2SGunnar Mills                    "items": {
1034*28cfceb2SGunnar Mills                        "$ref": "http://redfish.dmtf.org/schemas/v1/Resource.json#/definitions/Identifier"
1035*28cfceb2SGunnar Mills                    },
1036*28cfceb2SGunnar Mills                    "longDescription": "This property shall contain a list of all known durable names for the associated storage controller.",
1037*28cfceb2SGunnar Mills                    "type": "array"
1038*28cfceb2SGunnar Mills                },
1039*28cfceb2SGunnar Mills                "Links": {
1040*28cfceb2SGunnar Mills                    "$ref": "#/definitions/StorageControllerLinks",
1041*28cfceb2SGunnar Mills                    "description": "The links to other resources that are related to this resource.",
1042*28cfceb2SGunnar Mills                    "longDescription": "This property shall contain links to resources that are related to but are not contained by, or subordinate to, this resource.",
1043*28cfceb2SGunnar Mills                    "versionAdded": "v1_1_0"
1044*28cfceb2SGunnar Mills                },
1045*28cfceb2SGunnar Mills                "Location": {
1046*28cfceb2SGunnar Mills                    "$ref": "http://redfish.dmtf.org/schemas/v1/Resource.json#/definitions/Location",
1047*28cfceb2SGunnar Mills                    "description": "The location of the storage controller.",
1048*28cfceb2SGunnar Mills                    "longDescription": "This property shall contain the location information of the associated storage controller.",
1049*28cfceb2SGunnar Mills                    "versionAdded": "v1_4_0"
1050*28cfceb2SGunnar Mills                },
1051*28cfceb2SGunnar Mills                "Manufacturer": {
1052*28cfceb2SGunnar Mills                    "description": "The manufacturer of this storage controller.",
1053*28cfceb2SGunnar Mills                    "longDescription": "This property shall contain the name of the organization responsible for producing the storage controller.  This organization may be the entity from which the storage controller is purchased, but this is not necessarily true.",
1054*28cfceb2SGunnar Mills                    "readonly": true,
1055*28cfceb2SGunnar Mills                    "type": [
1056*28cfceb2SGunnar Mills                        "string",
1057*28cfceb2SGunnar Mills                        "null"
1058*28cfceb2SGunnar Mills                    ]
1059*28cfceb2SGunnar Mills                },
1060*28cfceb2SGunnar Mills                "Measurements": {
1061*28cfceb2SGunnar Mills                    "deprecated": "This property has been deprecated in favor of the `ComponentIntegrity` resource.",
1062*28cfceb2SGunnar Mills                    "description": "An array of DSP0274-defined measurement blocks.",
1063*28cfceb2SGunnar Mills                    "items": {
1064*28cfceb2SGunnar Mills                        "$ref": "http://redfish.dmtf.org/schemas/v1/SoftwareInventory.json#/definitions/MeasurementBlock"
1065*28cfceb2SGunnar Mills                    },
1066*28cfceb2SGunnar Mills                    "longDescription": "This property shall contain an array of DSP0274-defined measurement blocks.",
1067*28cfceb2SGunnar Mills                    "type": "array",
1068*28cfceb2SGunnar Mills                    "versionAdded": "v1_10_0",
1069*28cfceb2SGunnar Mills                    "versionDeprecated": "v1_12_0"
1070*28cfceb2SGunnar Mills                },
1071*28cfceb2SGunnar Mills                "MemberId": {
1072*28cfceb2SGunnar Mills                    "description": "The unique identifier for the member within an array.",
1073*28cfceb2SGunnar Mills                    "longDescription": "This property shall contain the unique identifier for this member within an array.  For services supporting Redfish v1.6 or higher, this value shall contain the zero-based array index.",
1074*28cfceb2SGunnar Mills                    "readonly": true,
1075*28cfceb2SGunnar Mills                    "type": "string"
1076*28cfceb2SGunnar Mills                },
1077*28cfceb2SGunnar Mills                "Model": {
1078*28cfceb2SGunnar Mills                    "description": "The model number for the storage controller.",
1079*28cfceb2SGunnar Mills                    "longDescription": "This property shall contain the name by which the manufacturer generally refers to the storage controller.",
1080*28cfceb2SGunnar Mills                    "readonly": true,
1081*28cfceb2SGunnar Mills                    "type": [
1082*28cfceb2SGunnar Mills                        "string",
1083*28cfceb2SGunnar Mills                        "null"
1084*28cfceb2SGunnar Mills                    ]
1085*28cfceb2SGunnar Mills                },
1086*28cfceb2SGunnar Mills                "Name": {
1087*28cfceb2SGunnar Mills                    "description": "The name of the storage controller.",
1088*28cfceb2SGunnar Mills                    "longDescription": "This property shall contain the name of the storage controller.",
1089*28cfceb2SGunnar Mills                    "readonly": true,
1090*28cfceb2SGunnar Mills                    "type": [
1091*28cfceb2SGunnar Mills                        "string",
1092*28cfceb2SGunnar Mills                        "null"
1093*28cfceb2SGunnar Mills                    ],
1094*28cfceb2SGunnar Mills                    "versionAdded": "v1_3_0"
1095*28cfceb2SGunnar Mills                },
1096*28cfceb2SGunnar Mills                "Oem": {
1097*28cfceb2SGunnar Mills                    "$ref": "http://redfish.dmtf.org/schemas/v1/Resource.json#/definitions/Oem",
1098*28cfceb2SGunnar Mills                    "description": "The OEM extension property.",
1099*28cfceb2SGunnar Mills                    "longDescription": "This property shall contain the OEM extensions.  All values for properties that this object contains shall conform to the Redfish Specification-described requirements."
1100*28cfceb2SGunnar Mills                },
1101*28cfceb2SGunnar Mills                "PCIeInterface": {
1102*28cfceb2SGunnar Mills                    "$ref": "http://redfish.dmtf.org/schemas/v1/PCIeDevice.json#/definitions/PCIeInterface",
1103*28cfceb2SGunnar Mills                    "description": "The PCIe interface details for this controller.",
1104*28cfceb2SGunnar Mills                    "longDescription": "This property shall contain details on the PCIe interface that connects this PCIe-based controller to its host.",
1105*28cfceb2SGunnar Mills                    "versionAdded": "v1_5_0"
1106*28cfceb2SGunnar Mills                },
1107*28cfceb2SGunnar Mills                "PartNumber": {
1108*28cfceb2SGunnar Mills                    "description": "The part number for this storage controller.",
1109*28cfceb2SGunnar Mills                    "longDescription": "This property shall contain a part number assigned by the organization that is responsible for producing or manufacturing the storage controller.",
1110*28cfceb2SGunnar Mills                    "readonly": true,
1111*28cfceb2SGunnar Mills                    "type": [
1112*28cfceb2SGunnar Mills                        "string",
1113*28cfceb2SGunnar Mills                        "null"
1114*28cfceb2SGunnar Mills                    ]
1115*28cfceb2SGunnar Mills                },
1116*28cfceb2SGunnar Mills                "Ports": {
1117*28cfceb2SGunnar Mills                    "$ref": "http://redfish.dmtf.org/schemas/v1/PortCollection.json#/definitions/PortCollection",
1118*28cfceb2SGunnar Mills                    "description": "The link to the collection of ports that exist on the storage controller.",
1119*28cfceb2SGunnar Mills                    "longDescription": "This property shall contain a link to a resource collection of type `PortCollection`.",
1120*28cfceb2SGunnar Mills                    "readonly": true,
1121*28cfceb2SGunnar Mills                    "versionAdded": "v1_7_0"
1122*28cfceb2SGunnar Mills                },
1123*28cfceb2SGunnar Mills                "SKU": {
1124*28cfceb2SGunnar Mills                    "description": "The SKU for this storage controller.",
1125*28cfceb2SGunnar Mills                    "longDescription": "This property shall contain the stock-keeping unit number for this storage controller.",
1126*28cfceb2SGunnar Mills                    "readonly": true,
1127*28cfceb2SGunnar Mills                    "type": [
1128*28cfceb2SGunnar Mills                        "string",
1129*28cfceb2SGunnar Mills                        "null"
1130*28cfceb2SGunnar Mills                    ]
1131*28cfceb2SGunnar Mills                },
1132*28cfceb2SGunnar Mills                "SerialNumber": {
1133*28cfceb2SGunnar Mills                    "description": "The serial number for this storage controller.",
1134*28cfceb2SGunnar Mills                    "longDescription": "This property shall contain a manufacturer-allocated number that identifies the storage controller.",
1135*28cfceb2SGunnar Mills                    "readonly": true,
1136*28cfceb2SGunnar Mills                    "type": [
1137*28cfceb2SGunnar Mills                        "string",
1138*28cfceb2SGunnar Mills                        "null"
1139*28cfceb2SGunnar Mills                    ]
1140*28cfceb2SGunnar Mills                },
1141*28cfceb2SGunnar Mills                "SpeedGbps": {
1142*28cfceb2SGunnar Mills                    "description": "The maximum speed of the storage controller's device interface.",
1143*28cfceb2SGunnar Mills                    "longDescription": "This property shall represent the maximum supported speed of the storage bus interface, in Gbit/s.  The specified interface connects the controller to the storage devices, not the controller to a host.  For example, SAS bus not PCIe host bus.",
1144*28cfceb2SGunnar Mills                    "minimum": 0,
1145*28cfceb2SGunnar Mills                    "readonly": true,
1146*28cfceb2SGunnar Mills                    "type": [
1147*28cfceb2SGunnar Mills                        "number",
1148*28cfceb2SGunnar Mills                        "null"
1149*28cfceb2SGunnar Mills                    ],
1150*28cfceb2SGunnar Mills                    "units": "Gbit/s"
1151*28cfceb2SGunnar Mills                },
1152*28cfceb2SGunnar Mills                "Status": {
1153*28cfceb2SGunnar Mills                    "$ref": "http://redfish.dmtf.org/schemas/v1/Resource.json#/definitions/Status",
1154*28cfceb2SGunnar Mills                    "description": "The status and health of the resource and its subordinate or dependent resources.",
1155*28cfceb2SGunnar Mills                    "longDescription": "This property shall contain any status or health properties of the resource."
1156*28cfceb2SGunnar Mills                },
1157*28cfceb2SGunnar Mills                "SupportedControllerProtocols": {
1158*28cfceb2SGunnar Mills                    "description": "The supported set of protocols for communicating with this storage controller.",
1159*28cfceb2SGunnar Mills                    "items": {
1160*28cfceb2SGunnar Mills                        "$ref": "http://redfish.dmtf.org/schemas/v1/Protocol.json#/definitions/Protocol"
1161*28cfceb2SGunnar Mills                    },
1162*28cfceb2SGunnar Mills                    "longDescription": "This property shall contain the supported set of protocols for communicating with this storage controller.",
1163*28cfceb2SGunnar Mills                    "readonly": true,
1164*28cfceb2SGunnar Mills                    "type": "array"
1165*28cfceb2SGunnar Mills                },
1166*28cfceb2SGunnar Mills                "SupportedDeviceProtocols": {
1167*28cfceb2SGunnar Mills                    "description": "The protocols that the storage controller can use to communicate with attached devices.",
1168*28cfceb2SGunnar Mills                    "items": {
1169*28cfceb2SGunnar Mills                        "$ref": "http://redfish.dmtf.org/schemas/v1/Protocol.json#/definitions/Protocol"
1170*28cfceb2SGunnar Mills                    },
1171*28cfceb2SGunnar Mills                    "longDescription": "This property shall contain the set of protocols this storage controller can use to communicate with attached devices.",
1172*28cfceb2SGunnar Mills                    "readonly": true,
1173*28cfceb2SGunnar Mills                    "type": "array"
1174*28cfceb2SGunnar Mills                },
1175*28cfceb2SGunnar Mills                "SupportedRAIDTypes": {
1176*28cfceb2SGunnar Mills                    "description": "The set of RAID types supported by the storage controller.",
1177*28cfceb2SGunnar Mills                    "items": {
1178*28cfceb2SGunnar Mills                        "anyOf": [
1179*28cfceb2SGunnar Mills                            {
1180*28cfceb2SGunnar Mills                                "$ref": "http://redfish.dmtf.org/schemas/swordfish/v1/Volume.json#/definitions/RAIDType"
1181*28cfceb2SGunnar Mills                            },
1182*28cfceb2SGunnar Mills                            {
1183*28cfceb2SGunnar Mills                                "type": "null"
1184*28cfceb2SGunnar Mills                            }
1185*28cfceb2SGunnar Mills                        ]
1186*28cfceb2SGunnar Mills                    },
1187*28cfceb2SGunnar Mills                    "longDescription": "This property shall contain an array of all the RAID types supported by this controller.",
1188*28cfceb2SGunnar Mills                    "readonly": true,
1189*28cfceb2SGunnar Mills                    "type": "array",
1190*28cfceb2SGunnar Mills                    "versionAdded": "v1_6_0"
1191*28cfceb2SGunnar Mills                }
1192*28cfceb2SGunnar Mills            },
1193*28cfceb2SGunnar Mills            "required": [
1194*28cfceb2SGunnar Mills                "@odata.id",
1195*28cfceb2SGunnar Mills                "MemberId"
1196*28cfceb2SGunnar Mills            ],
1197*28cfceb2SGunnar Mills            "type": "object"
1198*28cfceb2SGunnar Mills        },
1199*28cfceb2SGunnar Mills        "StorageControllerActions": {
1200*28cfceb2SGunnar Mills            "additionalProperties": false,
1201*28cfceb2SGunnar Mills            "description": "The available actions for this resource.",
1202*28cfceb2SGunnar Mills            "longDescription": "This type shall contain the available actions for this resource.",
1203*28cfceb2SGunnar Mills            "patternProperties": {
1204*28cfceb2SGunnar Mills                "^([a-zA-Z_][a-zA-Z0-9_]*)?@(odata|Redfish|Message)\\.[a-zA-Z_][a-zA-Z0-9_]*$": {
1205*28cfceb2SGunnar Mills                    "description": "This property shall specify a valid odata or Redfish property.",
1206*28cfceb2SGunnar Mills                    "type": [
1207*28cfceb2SGunnar Mills                        "array",
1208*28cfceb2SGunnar Mills                        "boolean",
1209*28cfceb2SGunnar Mills                        "integer",
1210*28cfceb2SGunnar Mills                        "number",
1211*28cfceb2SGunnar Mills                        "null",
1212*28cfceb2SGunnar Mills                        "object",
1213*28cfceb2SGunnar Mills                        "string"
1214*28cfceb2SGunnar Mills                    ]
1215*28cfceb2SGunnar Mills                }
1216*28cfceb2SGunnar Mills            },
1217*28cfceb2SGunnar Mills            "properties": {
1218*28cfceb2SGunnar Mills                "Oem": {
1219*28cfceb2SGunnar Mills                    "$ref": "#/definitions/StorageControllerOemActions",
1220*28cfceb2SGunnar Mills                    "description": "The available OEM-specific actions for this resource.",
1221*28cfceb2SGunnar Mills                    "longDescription": "This property shall contain the available OEM-specific actions for this resource.",
1222*28cfceb2SGunnar Mills                    "versionAdded": "v1_2_0"
1223*28cfceb2SGunnar Mills                }
1224*28cfceb2SGunnar Mills            },
1225*28cfceb2SGunnar Mills            "type": "object"
1226*28cfceb2SGunnar Mills        },
1227*28cfceb2SGunnar Mills        "StorageControllerLinks": {
1228*28cfceb2SGunnar Mills            "additionalProperties": false,
1229*28cfceb2SGunnar Mills            "description": "The links to other resources that are related to this resource.",
1230*28cfceb2SGunnar Mills            "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.",
1231*28cfceb2SGunnar Mills            "patternProperties": {
1232*28cfceb2SGunnar Mills                "^([a-zA-Z_][a-zA-Z0-9_]*)?@(odata|Redfish|Message)\\.[a-zA-Z_][a-zA-Z0-9_]*$": {
1233*28cfceb2SGunnar Mills                    "description": "This property shall specify a valid odata or Redfish property.",
1234*28cfceb2SGunnar Mills                    "type": [
1235*28cfceb2SGunnar Mills                        "array",
1236*28cfceb2SGunnar Mills                        "boolean",
1237*28cfceb2SGunnar Mills                        "integer",
1238*28cfceb2SGunnar Mills                        "number",
1239*28cfceb2SGunnar Mills                        "null",
1240*28cfceb2SGunnar Mills                        "object",
1241*28cfceb2SGunnar Mills                        "string"
1242*28cfceb2SGunnar Mills                    ]
1243*28cfceb2SGunnar Mills                }
1244*28cfceb2SGunnar Mills            },
1245*28cfceb2SGunnar Mills            "properties": {
1246*28cfceb2SGunnar Mills                "Endpoints": {
1247*28cfceb2SGunnar Mills                    "description": "An array of links to the endpoints that connect to this controller.",
1248*28cfceb2SGunnar Mills                    "items": {
1249*28cfceb2SGunnar Mills                        "$ref": "http://redfish.dmtf.org/schemas/v1/Endpoint.json#/definitions/Endpoint"
1250*28cfceb2SGunnar Mills                    },
1251*28cfceb2SGunnar Mills                    "longDescription": "This property shall contain an array of links to resources of type `Endpoint` with which this controller is associated.",
1252*28cfceb2SGunnar Mills                    "type": "array",
1253*28cfceb2SGunnar Mills                    "versionAdded": "v1_1_0"
1254*28cfceb2SGunnar Mills                },
1255*28cfceb2SGunnar Mills                "Endpoints@odata.count": {
1256*28cfceb2SGunnar Mills                    "$ref": "http://redfish.dmtf.org/schemas/v1/odata-v4.json#/definitions/count"
1257*28cfceb2SGunnar Mills                },
1258*28cfceb2SGunnar Mills                "Oem": {
1259*28cfceb2SGunnar Mills                    "$ref": "http://redfish.dmtf.org/schemas/v1/Resource.json#/definitions/Oem",
1260*28cfceb2SGunnar Mills                    "description": "The OEM extension property.",
1261*28cfceb2SGunnar Mills                    "longDescription": "This property shall contain the OEM extensions.  All values for properties contained in this object shall conform to the Redfish Specification-described requirements."
1262*28cfceb2SGunnar Mills                },
1263*28cfceb2SGunnar Mills                "PCIeFunctions": {
1264*28cfceb2SGunnar Mills                    "description": "An array of links to the PCIe functions that the storage controller produces.",
1265*28cfceb2SGunnar Mills                    "items": {
1266*28cfceb2SGunnar Mills                        "$ref": "http://redfish.dmtf.org/schemas/v1/PCIeFunction.json#/definitions/PCIeFunction"
1267*28cfceb2SGunnar Mills                    },
1268*28cfceb2SGunnar Mills                    "longDescription": "This property shall contain an array of links to resources of type `PCIeFunction` that represent the PCIe functions associated with this resource.",
1269*28cfceb2SGunnar Mills                    "type": "array",
1270*28cfceb2SGunnar Mills                    "versionAdded": "v1_7_0"
1271*28cfceb2SGunnar Mills                },
1272*28cfceb2SGunnar Mills                "PCIeFunctions@odata.count": {
1273*28cfceb2SGunnar Mills                    "$ref": "http://redfish.dmtf.org/schemas/v1/odata-v4.json#/definitions/count"
1274*28cfceb2SGunnar Mills                },
1275*28cfceb2SGunnar Mills                "StorageServices": {
1276*28cfceb2SGunnar Mills                    "deprecated": "This property has been deprecated in favor of `StorageServices` within the `Links` property at the root level.",
1277*28cfceb2SGunnar Mills                    "description": "An array of links to the storage services that connect to this controller.",
1278*28cfceb2SGunnar Mills                    "items": {
1279*28cfceb2SGunnar Mills                        "$ref": "http://redfish.dmtf.org/schemas/swordfish/v1/StorageService.json#/definitions/StorageService"
1280*28cfceb2SGunnar Mills                    },
1281*28cfceb2SGunnar Mills                    "longDescription": "This property shall contain an array of links to resources of type `StorageService` with which this controller is associated.",
1282*28cfceb2SGunnar Mills                    "type": "array",
1283*28cfceb2SGunnar Mills                    "versionAdded": "v1_4_0",
1284*28cfceb2SGunnar Mills                    "versionDeprecated": "v1_9_0"
1285*28cfceb2SGunnar Mills                },
1286*28cfceb2SGunnar Mills                "StorageServices@odata.count": {
1287*28cfceb2SGunnar Mills                    "$ref": "http://redfish.dmtf.org/schemas/v1/odata-v4.json#/definitions/count"
1288*28cfceb2SGunnar Mills                }
1289*28cfceb2SGunnar Mills            },
1290*28cfceb2SGunnar Mills            "type": "object"
1291*28cfceb2SGunnar Mills        },
1292*28cfceb2SGunnar Mills        "StorageControllerOemActions": {
1293*28cfceb2SGunnar Mills            "additionalProperties": true,
1294*28cfceb2SGunnar Mills            "description": "The available OEM-specific actions for this resource.",
1295*28cfceb2SGunnar Mills            "longDescription": "This type shall contain the available OEM-specific actions for this resource.",
1296*28cfceb2SGunnar Mills            "patternProperties": {
1297*28cfceb2SGunnar Mills                "^([a-zA-Z_][a-zA-Z0-9_]*)?@(odata|Redfish|Message)\\.[a-zA-Z_][a-zA-Z0-9_]*$": {
1298*28cfceb2SGunnar Mills                    "description": "This property shall specify a valid odata or Redfish property.",
1299*28cfceb2SGunnar Mills                    "type": [
1300*28cfceb2SGunnar Mills                        "array",
1301*28cfceb2SGunnar Mills                        "boolean",
1302*28cfceb2SGunnar Mills                        "integer",
1303*28cfceb2SGunnar Mills                        "number",
1304*28cfceb2SGunnar Mills                        "null",
1305*28cfceb2SGunnar Mills                        "object",
1306*28cfceb2SGunnar Mills                        "string"
1307*28cfceb2SGunnar Mills                    ]
1308*28cfceb2SGunnar Mills                }
1309*28cfceb2SGunnar Mills            },
1310*28cfceb2SGunnar Mills            "properties": {},
1311*28cfceb2SGunnar Mills            "type": "object"
1312*28cfceb2SGunnar Mills        },
1313*28cfceb2SGunnar Mills        "TargetConfigurationLockLevel": {
1314*28cfceb2SGunnar Mills            "enum": [
1315*28cfceb2SGunnar Mills                "Baseline"
1316*28cfceb2SGunnar Mills            ],
1317*28cfceb2SGunnar Mills            "enumDescriptions": {
1318*28cfceb2SGunnar Mills                "Baseline": "The standard configuration lock level, corresponding to applying firmware, updating security keys, and modifying other hardware settings.  It does not include managing the volumes or data within the storage subsystem."
1319*28cfceb2SGunnar Mills            },
1320*28cfceb2SGunnar Mills            "type": "string"
1321*28cfceb2SGunnar Mills        }
1322*28cfceb2SGunnar Mills    },
1323*28cfceb2SGunnar Mills    "language": "en",
1324*28cfceb2SGunnar Mills    "owningEntity": "DMTF",
1325*28cfceb2SGunnar Mills    "release": "2024.2",
1326*28cfceb2SGunnar Mills    "title": "#Storage.v1_17_0.Storage"
1327*28cfceb2SGunnar Mills}