1{
2    "$id": "http://redfish.dmtf.org/schemas/v1/Drive.v1_19_0.json",
3    "$ref": "#/definitions/Drive",
4    "$schema": "http://redfish.dmtf.org/schemas/v1/redfish-schema-v1.json",
5    "copyright": "Copyright 2014-2024 DMTF. For the full DMTF copyright policy, see http://www.dmtf.org/about/policies/copyright",
6    "definitions": {
7        "Actions": {
8            "additionalProperties": false,
9            "description": "The available actions for this resource.",
10            "longDescription": "This type shall contain the available actions for this resource.",
11            "patternProperties": {
12                "^([a-zA-Z_][a-zA-Z0-9_]*)?@(odata|Redfish|Message)\\.[a-zA-Z_][a-zA-Z0-9_]*$": {
13                    "description": "This property shall specify a valid odata or Redfish property.",
14                    "type": [
15                        "array",
16                        "boolean",
17                        "integer",
18                        "number",
19                        "null",
20                        "object",
21                        "string"
22                    ]
23                }
24            },
25            "properties": {
26                "#Drive.Reset": {
27                    "$ref": "#/definitions/Reset"
28                },
29                "#Drive.RevertToOriginalFactoryState": {
30                    "$ref": "#/definitions/RevertToOriginalFactoryState"
31                },
32                "#Drive.SecureErase": {
33                    "$ref": "#/definitions/SecureErase"
34                },
35                "Oem": {
36                    "$ref": "#/definitions/OemActions",
37                    "description": "The available OEM-specific actions for this resource.",
38                    "longDescription": "This property shall contain the available OEM-specific actions for this resource."
39                }
40            },
41            "type": "object"
42        },
43        "ConfigurationLock": {
44            "enum": [
45                "Enabled",
46                "Disabled",
47                "Partial"
48            ],
49            "enumDescriptions": {
50                "Disabled": "In-band configuration requests are not locked.",
51                "Enabled": "In-band configuration requests are locked.  Configuration requests include applying firmware, updating security keys, and other hardware settings.  It does not include managing the volumes or data on the drive.",
52                "Partial": "Some in-band configuration requests are not locked while others are locked.  This value is used for status reporting to indicate that the drive is partially locked and client action is recommended."
53            },
54            "enumLongDescriptions": {
55                "Disabled": "This value shall indicate in-band configuration requests are not locked.",
56                "Enabled": "This value shall indicate in-band configuration requests are locked.",
57                "Partial": "This value shall indicate some in-band configuration requests are not locked while others are locked."
58            },
59            "type": "string"
60        },
61        "DataSanitizationType": {
62            "enum": [
63                "BlockErase",
64                "CryptographicErase",
65                "Overwrite"
66            ],
67            "enumDescriptions": {
68                "BlockErase": "Delete all logical block addresses, including those that are not currently mapping to active addresses, but leaving the data on the drive.",
69                "CryptographicErase": "Erase the target data's encryption key leaving only the ciphertext on the drive.  For more information, see NIST800-88 and ISO/IEC 27040.",
70                "Overwrite": "Overwrite data by writing an implementation-specific pattern onto all sectors of the drive."
71            },
72            "enumLongDescriptions": {
73                "BlockErase": "This value shall indicate sanitization is performed by deleting all logical block addresses, including those that are not currently mapping to active addresses, but leaving the data on the drive.",
74                "CryptographicErase": "This value shall indicate sanitization is performed by erasing the target data's encryption key leaving only the ciphertext on the drive.  For more information, see NIST800-88 and ISO/IEC 27040.",
75                "Overwrite": "This value shall indicate sanitization is performed by overwriting data by writing an implementation-specific pattern onto all sectors of the drive."
76            },
77            "type": "string"
78        },
79        "Drive": {
80            "additionalProperties": false,
81            "description": "The `Drive` schema represents a single physical drive for a system, including links to associated volumes.  It also describes the location, such as a slot, socket, or bay, where a unit can be installed, by populating a resource instance with an absent state if a unit is not present.",
82            "longDescription": "This resource shall represent a drive or other physical storage medium for a Redfish implementation.  It may also represent a location, such as a slot, socket, or bay, where a unit may be installed, but the `State` property within the `Status` property contains `Absent`.",
83            "patternProperties": {
84                "^([a-zA-Z_][a-zA-Z0-9_]*)?@(odata|Redfish|Message)\\.[a-zA-Z_][a-zA-Z0-9_]*$": {
85                    "description": "This property shall specify a valid odata or Redfish property.",
86                    "type": [
87                        "array",
88                        "boolean",
89                        "integer",
90                        "number",
91                        "null",
92                        "object",
93                        "string"
94                    ]
95                }
96            },
97            "properties": {
98                "@odata.context": {
99                    "$ref": "http://redfish.dmtf.org/schemas/v1/odata-v4.json#/definitions/context"
100                },
101                "@odata.etag": {
102                    "$ref": "http://redfish.dmtf.org/schemas/v1/odata-v4.json#/definitions/etag"
103                },
104                "@odata.id": {
105                    "$ref": "http://redfish.dmtf.org/schemas/v1/odata-v4.json#/definitions/id"
106                },
107                "@odata.type": {
108                    "$ref": "http://redfish.dmtf.org/schemas/v1/odata-v4.json#/definitions/type"
109                },
110                "Actions": {
111                    "$ref": "#/definitions/Actions",
112                    "description": "The available actions for this resource.",
113                    "longDescription": "This property shall contain the available actions for this resource."
114                },
115                "Assembly": {
116                    "$ref": "http://redfish.dmtf.org/schemas/v1/Assembly.json#/definitions/Assembly",
117                    "description": "The link to the assembly associated with this drive.",
118                    "longDescription": "This property shall contain a link to a resource of type `Assembly`.",
119                    "readonly": true,
120                    "versionAdded": "v1_3_0"
121                },
122                "AssetTag": {
123                    "description": "The user-assigned asset tag for this drive.",
124                    "longDescription": "This property shall track the drive for inventory purposes.",
125                    "readonly": false,
126                    "type": [
127                        "string",
128                        "null"
129                    ]
130                },
131                "BlockSizeBytes": {
132                    "description": "The size, in bytes, of the smallest addressable unit, or block.",
133                    "longDescription": "This property shall contain the size of the smallest addressable unit of the associated drive.",
134                    "readonly": true,
135                    "type": [
136                        "integer",
137                        "null"
138                    ],
139                    "units": "By"
140                },
141                "CapableSpeedGbs": {
142                    "description": "The speed, in gigabits per second (Gbit/s) units, at which this drive can communicate to a storage controller in ideal conditions.",
143                    "longDescription": "This property shall contain fastest capable bus speed, in gigabits per second (Gbit/s) units, of the associated drive.",
144                    "readonly": true,
145                    "type": [
146                        "number",
147                        "null"
148                    ],
149                    "units": "Gbit/s"
150                },
151                "CapacityBytes": {
152                    "description": "The size, in bytes, of this drive.",
153                    "longDescription": "This property shall contain the raw size, in bytes, of the associated drive.",
154                    "readonly": true,
155                    "type": [
156                        "integer",
157                        "null"
158                    ],
159                    "units": "By"
160                },
161                "Certificates": {
162                    "$ref": "http://redfish.dmtf.org/schemas/v1/CertificateCollection.json#/definitions/CertificateCollection",
163                    "description": "The link to a collection of certificates for device identity and attestation.",
164                    "longDescription": "This property shall contain a link to a resource collection of type `CertificateCollection` that contains certificates for device identity and attestation.",
165                    "readonly": true,
166                    "versionAdded": "v1_12_0"
167                },
168                "ConfigurationLock": {
169                    "anyOf": [
170                        {
171                            "$ref": "#/definitions/ConfigurationLock"
172                        },
173                        {
174                            "type": "null"
175                        }
176                    ],
177                    "description": "Indicates whether in-band configuration requests to the drive are locked.",
178                    "longDescription": "This property shall indicate whether configuration requests to the drive are locked.  Services shall reject modification requests that contain the value `Partial`.",
179                    "readonly": false,
180                    "versionAdded": "v1_19_0"
181                },
182                "Description": {
183                    "anyOf": [
184                        {
185                            "$ref": "http://redfish.dmtf.org/schemas/v1/Resource.json#/definitions/Description"
186                        },
187                        {
188                            "type": "null"
189                        }
190                    ],
191                    "readonly": true
192                },
193                "DriveFormFactor": {
194                    "anyOf": [
195                        {
196                            "$ref": "#/definitions/FormFactor"
197                        },
198                        {
199                            "type": "null"
200                        }
201                    ],
202                    "description": "The form factor of the drive inserted in this slot.",
203                    "longDescription": "This property shall contain the form factor of the drive inserted in this slot.",
204                    "readonly": true,
205                    "versionAdded": "v1_16_0"
206                },
207                "EncryptionAbility": {
208                    "anyOf": [
209                        {
210                            "$ref": "#/definitions/EncryptionAbility"
211                        },
212                        {
213                            "type": "null"
214                        }
215                    ],
216                    "description": "The encryption ability of this drive.",
217                    "longDescription": "This property shall contain the encryption ability for the associated drive.",
218                    "readonly": true
219                },
220                "EncryptionStatus": {
221                    "anyOf": [
222                        {
223                            "$ref": "#/definitions/EncryptionStatus"
224                        },
225                        {
226                            "type": "null"
227                        }
228                    ],
229                    "description": "The status of the encryption of this drive.",
230                    "longDescription": "This property shall contain the encryption status for the associated drive.",
231                    "readonly": true
232                },
233                "EnvironmentMetrics": {
234                    "$ref": "http://redfish.dmtf.org/schemas/v1/EnvironmentMetrics.json#/definitions/EnvironmentMetrics",
235                    "description": "The link to the environment metrics for this drive.",
236                    "longDescription": "This property shall contain a link to a resource of type `EnvironmentMetrics` that specifies the environment metrics for this drive.",
237                    "readonly": true,
238                    "versionAdded": "v1_12_0"
239                },
240                "FailurePredicted": {
241                    "description": "An indication of whether this drive currently predicts a failure in the near future.",
242                    "longDescription": "This property shall indicate whether this drive currently predicts a manufacturer-defined failure.",
243                    "readonly": true,
244                    "type": [
245                        "boolean",
246                        "null"
247                    ]
248                },
249                "FirmwareVersion": {
250                    "description": "The firmware version for this drive.",
251                    "longDescription": "This property shall contain the firmware version as defined by the manufacturer for this drive.",
252                    "readonly": true,
253                    "type": [
254                        "string",
255                        "null"
256                    ],
257                    "versionAdded": "v1_17_0"
258                },
259                "HotspareReplacementMode": {
260                    "anyOf": [
261                        {
262                            "$ref": "#/definitions/HotspareReplacementModeType"
263                        },
264                        {
265                            "type": "null"
266                        }
267                    ],
268                    "description": "The replacement mode for the hot spare drive.",
269                    "longDescription": "This property shall indicate whether a commissioned hot spare continues to serve as a hot spare after the failed drive is replaced.",
270                    "readonly": false,
271                    "versionAdded": "v1_5_0"
272                },
273                "HotspareType": {
274                    "anyOf": [
275                        {
276                            "$ref": "#/definitions/HotspareType"
277                        },
278                        {
279                            "type": "null"
280                        }
281                    ],
282                    "description": "The type of hot spare that this drive serves as.",
283                    "longDescription": "This property shall contain the hot spare type for the associated drive.  If the drive currently serves as a hot spare, the `State` property in `Status` shall contain `StandbySpare` and `Enabled` when it is part of a volume.",
284                    "readonly": false
285                },
286                "Id": {
287                    "$ref": "http://redfish.dmtf.org/schemas/v1/Resource.json#/definitions/Id",
288                    "readonly": true
289                },
290                "Identifiers": {
291                    "description": "The durable names for the drive.",
292                    "items": {
293                        "$ref": "http://redfish.dmtf.org/schemas/v1/Resource.json#/definitions/Identifier"
294                    },
295                    "longDescription": "This property shall contain a list of all known durable names for the associated drive.",
296                    "type": "array"
297                },
298                "IndicatorLED": {
299                    "anyOf": [
300                        {
301                            "$ref": "http://redfish.dmtf.org/schemas/v1/Resource.json#/definitions/IndicatorLED"
302                        },
303                        {
304                            "type": "null"
305                        }
306                    ],
307                    "deprecated": "This property has been deprecated in favor of the `LocationIndicatorActive` property.",
308                    "description": "The state of the indicator LED, that identifies the drive.",
309                    "longDescription": "This property shall contain the state for the indicator light associated with this drive.",
310                    "readonly": false,
311                    "versionDeprecated": "v1_11_0"
312                },
313                "Links": {
314                    "$ref": "#/definitions/Links",
315                    "description": "The links to other resources that are related to this resource.",
316                    "longDescription": "This property shall contain links to resources that are related to but are not contained by, or subordinate to, this resource."
317                },
318                "Location": {
319                    "deprecated": "This property has been deprecated in favor of the singular `PhysicalLocation` property.",
320                    "description": "The location of the drive.",
321                    "items": {
322                        "$ref": "http://redfish.dmtf.org/schemas/v1/Resource.json#/definitions/Location"
323                    },
324                    "longDescription": "This property shall contain the location information of the associated drive.",
325                    "type": "array",
326                    "versionDeprecated": "v1_4_0"
327                },
328                "LocationIndicatorActive": {
329                    "description": "An indicator allowing an operator to physically locate this resource.",
330                    "longDescription": "This property shall contain the state of the indicator used to physically identify or locate this resource.  A write to this property shall update the value of `IndicatorLED` in this resource, if supported, to reflect the implementation of the locating function.",
331                    "readonly": false,
332                    "type": [
333                        "boolean",
334                        "null"
335                    ],
336                    "versionAdded": "v1_11_0"
337                },
338                "Manufacturer": {
339                    "description": "The manufacturer of this drive.",
340                    "longDescription": "This property shall contain the name of the organization responsible for producing the drive.  This organization may be the entity from whom the drive is purchased, but this is not necessarily true.",
341                    "readonly": true,
342                    "type": [
343                        "string",
344                        "null"
345                    ]
346                },
347                "Measurements": {
348                    "deprecated": "This property has been deprecated in favor of the `ComponentIntegrity` resource.",
349                    "description": "An array of DSP0274-defined measurement blocks.",
350                    "items": {
351                        "$ref": "http://redfish.dmtf.org/schemas/v1/SoftwareInventory.json#/definitions/MeasurementBlock"
352                    },
353                    "longDescription": "This property shall contain an array of DSP0274-defined measurement blocks.",
354                    "type": "array",
355                    "versionAdded": "v1_12_0",
356                    "versionDeprecated": "v1_14_0"
357                },
358                "MediaType": {
359                    "anyOf": [
360                        {
361                            "$ref": "#/definitions/MediaType"
362                        },
363                        {
364                            "type": "null"
365                        }
366                    ],
367                    "description": "The type of media contained in this drive.",
368                    "longDescription": "This property shall contain the type of media contained in the associated drive.",
369                    "readonly": true
370                },
371                "Metrics": {
372                    "anyOf": [
373                        {
374                            "$ref": "http://redfish.dmtf.org/schemas/v1/DriveMetrics.json#/definitions/DriveMetrics"
375                        },
376                        {
377                            "type": "null"
378                        }
379                    ],
380                    "description": "The link to the metrics associated with this drive.",
381                    "longDescription": "This property shall contain a link to the metrics associated with this drive.",
382                    "readonly": true,
383                    "versionAdded": "v1_17_0"
384                },
385                "Model": {
386                    "description": "The model number for the drive.",
387                    "longDescription": "This property shall contain the name by which the manufacturer generally refers to the drive.",
388                    "readonly": true,
389                    "type": [
390                        "string",
391                        "null"
392                    ]
393                },
394                "Multipath": {
395                    "description": "An indication of whether the drive is accessible from multiple paths.",
396                    "longDescription": "This property shall indicate whether the drive is accessible by an initiator from multiple paths allowing for failover capabilities upon a path failure.",
397                    "readonly": true,
398                    "type": [
399                        "boolean",
400                        "null"
401                    ],
402                    "versionAdded": "v1_9_0"
403                },
404                "Name": {
405                    "$ref": "http://redfish.dmtf.org/schemas/v1/Resource.json#/definitions/Name",
406                    "readonly": true
407                },
408                "NegotiatedSpeedGbs": {
409                    "description": "The speed, in gigabits per second (Gbit/s) units, at which this drive currently communicates to the storage controller.",
410                    "longDescription": "This property shall contain current bus speed, in gigabits per second (Gbit/s) units, of the associated drive.",
411                    "readonly": true,
412                    "type": [
413                        "number",
414                        "null"
415                    ],
416                    "units": "Gbit/s"
417                },
418                "Oem": {
419                    "$ref": "http://redfish.dmtf.org/schemas/v1/Resource.json#/definitions/Oem",
420                    "description": "The OEM extension property.",
421                    "longDescription": "This property shall contain the OEM extensions.  All values for properties that this object contains shall conform to the Redfish Specification-described requirements."
422                },
423                "Operations": {
424                    "description": "The operations currently running on the drive.",
425                    "items": {
426                        "$ref": "#/definitions/Operations"
427                    },
428                    "longDescription": "This property shall contain a list of all operations currently running on the drive.",
429                    "type": "array",
430                    "versionAdded": "v1_1_0"
431                },
432                "PartNumber": {
433                    "description": "The part number for this drive.",
434                    "longDescription": "This property shall contain the part number assigned by the organization that is responsible for producing or manufacturing the drive.",
435                    "readonly": true,
436                    "type": [
437                        "string",
438                        "null"
439                    ]
440                },
441                "PhysicalLocation": {
442                    "$ref": "http://redfish.dmtf.org/schemas/v1/Resource.json#/definitions/Location",
443                    "description": "The location of the drive.  This property is equivalent to the `Location` property common to other standard Redfish resources.",
444                    "longDescription": "This property shall contain the location information of the associated drive.",
445                    "versionAdded": "v1_4_0"
446                },
447                "PredictedMediaLifeLeftPercent": {
448                    "description": "The percentage of reads and writes that are predicted to be available for the media.",
449                    "longDescription": "This property shall contain an indicator of the percentage, typically `0` to `100`, of life remaining in the drive's media.",
450                    "minimum": 0,
451                    "readonly": true,
452                    "type": [
453                        "number",
454                        "null"
455                    ],
456                    "units": "%"
457                },
458                "Protocol": {
459                    "anyOf": [
460                        {
461                            "$ref": "http://redfish.dmtf.org/schemas/v1/Protocol.json#/definitions/Protocol"
462                        },
463                        {
464                            "type": "null"
465                        }
466                    ],
467                    "description": "The protocol that this drive currently uses to communicate to the storage controller.",
468                    "longDescription": "This property shall contain the protocol that the associated drive currently uses to communicate to the storage controller for this system.",
469                    "readonly": true
470                },
471                "ReadyToRemove": {
472                    "description": "An indication of whether the drive is prepared by the system for removal.",
473                    "longDescription": "This property shall indicate whether the system is prepared for the removal of this drive.",
474                    "readonly": false,
475                    "type": [
476                        "boolean",
477                        "null"
478                    ],
479                    "versionAdded": "v1_10_0"
480                },
481                "Revision": {
482                    "description": "The revision of this drive.  For SCSI-based drives, this is the version of the drive from the 'Inquiry' command, which can be the firmware or hardware version.  For other types of drives, this is the hardware version.",
483                    "longDescription": "This property shall contain the manufacturer-defined revision for the associated drive.  For SCSI-based drives, this is the version of the drive from the 'Inquiry' command, which can be the firmware or hardware version.  For other types of drives, this is the hardware version.",
484                    "readonly": true,
485                    "type": [
486                        "string",
487                        "null"
488                    ]
489                },
490                "RotationSpeedRPM": {
491                    "description": "The rotation speed of this drive, in revolutions per minute (RPM) units.",
492                    "longDescription": "This property shall contain the rotation speed, in revolutions per minute (RPM) units, of the associated drive.",
493                    "readonly": true,
494                    "type": [
495                        "number",
496                        "null"
497                    ],
498                    "units": "{rev}/min"
499                },
500                "SKU": {
501                    "description": "The SKU for this drive.",
502                    "longDescription": "This property shall contain the stock-keeping unit (SKU) number for this drive.",
503                    "readonly": true,
504                    "type": [
505                        "string",
506                        "null"
507                    ]
508                },
509                "SerialNumber": {
510                    "description": "The serial number for this drive.",
511                    "longDescription": "This property shall contain the manufacturer-allocated number that identifies the drive.",
512                    "readonly": true,
513                    "type": [
514                        "string",
515                        "null"
516                    ]
517                },
518                "SlotCapableProtocols": {
519                    "description": "The drive protocols capable in this slot.",
520                    "items": {
521                        "anyOf": [
522                            {
523                                "$ref": "http://redfish.dmtf.org/schemas/v1/Protocol.json#/definitions/Protocol"
524                            },
525                            {
526                                "type": "null"
527                            }
528                        ]
529                    },
530                    "longDescription": "This property shall contain the drive protocols capable in this slot.  The value of this property depends upon the connector in this slot, the storage controllers connected to this slot, the configuration of the system, and other constraints that determine if a particular protocol is capable at a given time.",
531                    "readonly": true,
532                    "type": "array",
533                    "versionAdded": "v1_16_0"
534                },
535                "SlotFormFactor": {
536                    "anyOf": [
537                        {
538                            "$ref": "#/definitions/FormFactor"
539                        },
540                        {
541                            "type": "null"
542                        }
543                    ],
544                    "description": "The form factor of the slot.",
545                    "longDescription": "This property shall contain the form factor of the slot.",
546                    "readonly": true,
547                    "versionAdded": "v1_16_0"
548                },
549                "SparePartNumber": {
550                    "description": "The spare part number of the drive.",
551                    "longDescription": "This property shall contain the spare part number of the drive.",
552                    "readonly": true,
553                    "type": [
554                        "string",
555                        "null"
556                    ],
557                    "versionAdded": "v1_19_0"
558                },
559                "Status": {
560                    "$ref": "http://redfish.dmtf.org/schemas/v1/Resource.json#/definitions/Status",
561                    "description": "The status and health of the resource and its subordinate or dependent resources.",
562                    "longDescription": "This property shall contain any status or health properties of the resource."
563                },
564                "StatusIndicator": {
565                    "anyOf": [
566                        {
567                            "$ref": "#/definitions/StatusIndicator"
568                        },
569                        {
570                            "type": "null"
571                        }
572                    ],
573                    "description": "The state of the status indicator, which communicates status information about this drive.",
574                    "longDescription": "This property shall contain the status indicator state for the status indicator associated with this drive.  The `@Redfish.AllowableValues` annotation specifies the valid values for this property.",
575                    "readonly": false
576                },
577                "WriteCacheEnabled": {
578                    "description": "An indication of whether the drive write cache is enabled.",
579                    "longDescription": "This property shall indicate whether the drive write cache is enabled.",
580                    "readonly": false,
581                    "type": [
582                        "boolean",
583                        "null"
584                    ],
585                    "versionAdded": "v1_7_0"
586                }
587            },
588            "required": [
589                "@odata.id",
590                "@odata.type",
591                "Id",
592                "Name"
593            ],
594            "type": "object"
595        },
596        "EncryptionAbility": {
597            "enum": [
598                "None",
599                "SelfEncryptingDrive",
600                "Other"
601            ],
602            "enumDescriptions": {
603                "None": "The drive is not capable of self-encryption.",
604                "Other": "The drive is capable of self-encryption through some other means.",
605                "SelfEncryptingDrive": "The drive is capable of self-encryption per the Trusted Computing Group's Self Encrypting Drive Standard."
606            },
607            "type": "string"
608        },
609        "EncryptionStatus": {
610            "enum": [
611                "Unecrypted",
612                "Unlocked",
613                "Locked",
614                "Foreign",
615                "Unencrypted"
616            ],
617            "enumDeprecated": {
618                "Unecrypted": "This value has been deprecated in favor of Unencrypted."
619            },
620            "enumDescriptions": {
621                "Foreign": "The drive is currently encrypted, the data is not accessible to the user, and the system requires user intervention to expose the data.",
622                "Locked": "The drive is currently encrypted and the data is not accessible to the user.  However, the system can unlock the drive automatically.",
623                "Unecrypted": "The drive is not currently encrypted.",
624                "Unencrypted": "The drive is not currently encrypted.",
625                "Unlocked": "The drive is currently encrypted but the data is accessible to the user in unencrypted form."
626            },
627            "enumVersionAdded": {
628                "Unencrypted": "v1_1_0"
629            },
630            "enumVersionDeprecated": {
631                "Unecrypted": "v1_1_0"
632            },
633            "type": "string"
634        },
635        "FormFactor": {
636            "enum": [
637                "Drive3_5",
638                "Drive2_5",
639                "EDSFF",
640                "EDSFF_1U_Long",
641                "EDSFF_1U_Short",
642                "EDSFF_E3_Short",
643                "EDSFF_E3_Long",
644                "M2",
645                "M2_2230",
646                "M2_2242",
647                "M2_2260",
648                "M2_2280",
649                "M2_22110",
650                "U2",
651                "PCIeSlotFullLength",
652                "PCIeSlotLowProfile",
653                "PCIeHalfLength",
654                "OEM"
655            ],
656            "enumDescriptions": {
657                "Drive2_5": "A 2.5 inch drive.",
658                "Drive3_5": "A 3.5 inch drive.",
659                "EDSFF": "An EDSFF drive.",
660                "EDSFF_1U_Long": "An EDSFF 1U Long (E1.L) drive.",
661                "EDSFF_1U_Short": "An EDSFF 1U Short (E1.S) drive.",
662                "EDSFF_E3_Long": "An EDSFF E3 Long (E3.L) drive.",
663                "EDSFF_E3_Short": "An EDSFF E3 Short (E3.S) drive.",
664                "M2": "An M.2 drive.",
665                "M2_22110": "An M.2 22110 drive.",
666                "M2_2230": "An M.2 2230 drive.",
667                "M2_2242": "An M.2 2242 drive.",
668                "M2_2260": "An M.2 2260 drive.",
669                "M2_2280": "An M.2 2280 drive.",
670                "OEM": "An OEM-defined form factor.",
671                "PCIeHalfLength": "A half-length PCIe add-in card.",
672                "PCIeSlotFullLength": "A full-length PCIe add-in card.",
673                "PCIeSlotLowProfile": "A low-profile PCIe add-in card.",
674                "U2": "A U.2 drive."
675            },
676            "enumLongDescriptions": {
677                "Drive2_5": "This value shall indicate the drive is approximately 2.5 inches in width and no more than 0.8 inches in height and is not a U.2 drive.",
678                "Drive3_5": "This value shall indicate the drive is approximately 3.5 inches in width and no more than 1.1 inches in height.",
679                "EDSFF": "This value shall indicate the drive corresponds to one of SNIA's SFF specifications with an unspecified form factor.  The `SlotFormFactor` property should not contain this value.",
680                "EDSFF_1U_Long": "This value shall indicate the drive corresponds to the SFF-TA-1007 Specification.",
681                "EDSFF_1U_Short": "This value shall indicate the drive corresponds to the SFF-TA-1006 Specification.",
682                "EDSFF_E3_Long": "This value shall indicate the drive corresponds to the SFF-TA-1008 Specification and is approximately 142.2 mm in length.",
683                "EDSFF_E3_Short": "This value shall indicate the drive corresponds to the SFF-TA-1008 Specification and is approximately 112.75 mm in length.",
684                "M2": "This value shall indicate the drive corresponds to the PCI Express M.2 Specification with an unspecified form factor.  The `SlotFormFactor` property should not contain this value.",
685                "M2_22110": "This value shall indicate the drive corresponds to the PCI Express M.2 Specification and is approximately 22 mm in width and 110 mm in length.",
686                "M2_2230": "This value shall indicate the drive corresponds to the PCI Express M.2 Specification and is approximately 22 mm in width and 30 mm in length.",
687                "M2_2242": "This value shall indicate the drive corresponds to the PCI Express M.2 Specification and is approximately 22 mm in width and 42 mm in length.",
688                "M2_2260": "This value shall indicate the drive corresponds to the PCI Express M.2 Specification and is approximately 22 mm in width and 60 mm in length.",
689                "M2_2280": "This value shall indicate the drive corresponds to the PCI Express M.2 Specification and is approximately 22 mm in width and 80 mm in length.",
690                "OEM": "This value shall indicate the drive is an OEM-defined form factor.",
691                "PCIeHalfLength": "This value shall indicate the drive is an add-in card less than 7 inches in length.",
692                "PCIeSlotFullLength": "This value shall indicate the drive is an add-in card greater than 7 inches in length.",
693                "PCIeSlotLowProfile": "This value shall indicate the drive is an add-in card less than 2.5 inches in height.",
694                "U2": "This value shall indicate the drive corresponds to the PCI Express SFF-8639 Module Specification."
695            },
696            "enumVersionAdded": {
697                "EDSFF": "v1_18_0",
698                "M2": "v1_18_0"
699            },
700            "type": "string"
701        },
702        "HotspareReplacementModeType": {
703            "enum": [
704                "Revertible",
705                "NonRevertible"
706            ],
707            "enumDescriptions": {
708                "NonRevertible": "The hot spare drive that is commissioned due to a drive failure remains as a data drive and does not revert to a hot spare if the failed drive is replaced.",
709                "Revertible": "The hot spare drive that is commissioned due to a drive failure reverts to a hot spare after the failed drive is replaced and rebuilt."
710            },
711            "type": "string"
712        },
713        "HotspareType": {
714            "enum": [
715                "None",
716                "Global",
717                "Chassis",
718                "Dedicated"
719            ],
720            "enumDescriptions": {
721                "Chassis": "The drive is serving as a hot spare for all other drives in this storage domain that are contained in the same chassis.",
722                "Dedicated": "The drive is serving as a hot spare for a user-defined set of drives or volumes.  Clients cannot specify this value when modifying the `HotspareType` property.  This value is reported as a result of configuring the spare drives within a volume.",
723                "Global": "The drive is serving as a hot spare for all other drives in this storage domain.",
724                "None": "The drive is not a hot spare."
725            },
726            "type": "string"
727        },
728        "Links": {
729            "additionalProperties": false,
730            "description": "The links to other resources that are related to this resource.",
731            "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.",
732            "patternProperties": {
733                "^([a-zA-Z_][a-zA-Z0-9_]*)?@(odata|Redfish|Message)\\.[a-zA-Z_][a-zA-Z0-9_]*$": {
734                    "description": "This property shall specify a valid odata or Redfish property.",
735                    "type": [
736                        "array",
737                        "boolean",
738                        "integer",
739                        "number",
740                        "null",
741                        "object",
742                        "string"
743                    ]
744                }
745            },
746            "properties": {
747                "ActiveSoftwareImage": {
748                    "$ref": "http://redfish.dmtf.org/schemas/v1/SoftwareInventory.json#/definitions/SoftwareInventory",
749                    "description": "The link to the software inventory that represents the active drive firmware image.",
750                    "longDescription": "This property shall contain a link a resource of type `SoftwareInventory` that represents the active drive firmware image.",
751                    "readonly": false,
752                    "versionAdded": "v1_16_0"
753                },
754                "Chassis": {
755                    "$ref": "http://redfish.dmtf.org/schemas/v1/Chassis.json#/definitions/Chassis",
756                    "description": "The link to the chassis that contains this drive.",
757                    "longDescription": "This property shall contain a link to a resource of type `Chassis` that represents the physical container associated with this drive.",
758                    "readonly": true,
759                    "versionAdded": "v1_2_0"
760                },
761                "Endpoints": {
762                    "description": "An array of links to the endpoints that connect to this drive.",
763                    "items": {
764                        "$ref": "http://redfish.dmtf.org/schemas/v1/Endpoint.json#/definitions/Endpoint"
765                    },
766                    "longDescription": "This property shall contain an array of links to resources of type `Endpoint` with which this drive is associated.",
767                    "readonly": true,
768                    "type": "array",
769                    "versionAdded": "v1_1_0"
770                },
771                "Endpoints@odata.count": {
772                    "$ref": "http://redfish.dmtf.org/schemas/v1/odata-v4.json#/definitions/count"
773                },
774                "NetworkDeviceFunctions": {
775                    "description": "An array of links to the network device functions that provide network connectivity for this drive.",
776                    "items": {
777                        "$ref": "http://redfish.dmtf.org/schemas/v1/NetworkDeviceFunction.json#/definitions/NetworkDeviceFunction"
778                    },
779                    "longDescription": "This property shall contain the array of links to resources of type `NetworkDeviceFunction`.  This property should only be present for drives with network connectivity, such as Ethernet attached drives.",
780                    "readonly": true,
781                    "type": "array",
782                    "versionAdded": "v1_14_0"
783                },
784                "NetworkDeviceFunctions@odata.count": {
785                    "$ref": "http://redfish.dmtf.org/schemas/v1/odata-v4.json#/definitions/count"
786                },
787                "Oem": {
788                    "$ref": "http://redfish.dmtf.org/schemas/v1/Resource.json#/definitions/Oem",
789                    "description": "The OEM extension property.",
790                    "longDescription": "This property shall contain the OEM extensions.  All values for properties contained in this object shall conform to the Redfish Specification-described requirements."
791                },
792                "PCIeFunctions": {
793                    "description": "An array of links to the PCIe functions that the drive produces.",
794                    "items": {
795                        "$ref": "http://redfish.dmtf.org/schemas/v1/PCIeFunction.json#/definitions/PCIeFunction"
796                    },
797                    "longDescription": "This property shall link to a resource of type `PCIeFunction` that represents the PCIe functions associated with this resource.",
798                    "type": "array",
799                    "versionAdded": "v1_6_0"
800                },
801                "PCIeFunctions@odata.count": {
802                    "$ref": "http://redfish.dmtf.org/schemas/v1/odata-v4.json#/definitions/count"
803                },
804                "SoftwareImages": {
805                    "description": "The images that are associated with this drive.",
806                    "items": {
807                        "$ref": "http://redfish.dmtf.org/schemas/v1/SoftwareInventory.json#/definitions/SoftwareInventory"
808                    },
809                    "longDescription": "This property shall contain an array of links to resources of type `SoftwareInventory` that represent the firmware images that apply to this drive.",
810                    "readonly": true,
811                    "type": "array",
812                    "versionAdded": "v1_16_0"
813                },
814                "SoftwareImages@odata.count": {
815                    "$ref": "http://redfish.dmtf.org/schemas/v1/odata-v4.json#/definitions/count"
816                },
817                "Storage": {
818                    "$ref": "http://redfish.dmtf.org/schemas/v1/Storage.json#/definitions/Storage",
819                    "description": "A link to the storage subsystem to which this drive belongs.",
820                    "longDescription": "This property shall contain a link to a resource of type `Storage` that represents the storage subsystem to which this drive belongs.",
821                    "readonly": true,
822                    "versionAdded": "v1_13_0"
823                },
824                "StoragePools": {
825                    "description": "An array of links to the storage pools to which this drive belongs.",
826                    "items": {
827                        "$ref": "http://redfish.dmtf.org/schemas/swordfish/v1/StoragePool.json#/definitions/StoragePool"
828                    },
829                    "longDescription": "This property shall contain an array of links of type `StoragePool` to which this drive belongs.",
830                    "readonly": true,
831                    "type": "array",
832                    "versionAdded": "v1_8_0"
833                },
834                "StoragePools@odata.count": {
835                    "$ref": "http://redfish.dmtf.org/schemas/v1/odata-v4.json#/definitions/count"
836                },
837                "Volumes": {
838                    "description": "An array of links to the volumes that this drive either wholly or only partially contains.",
839                    "items": {
840                        "$ref": "http://redfish.dmtf.org/schemas/swordfish/v1/Volume.json#/definitions/Volume"
841                    },
842                    "longDescription": "This property shall contain an array of links to resources of type `Volume` with which this drive is associated.  This property shall include all volume resources of which this drive is a member and all volumes for which this drive acts as a spare if the hot spare type is `Dedicated`.",
843                    "readonly": true,
844                    "type": "array"
845                },
846                "Volumes@odata.count": {
847                    "$ref": "http://redfish.dmtf.org/schemas/v1/odata-v4.json#/definitions/count"
848                }
849            },
850            "type": "object"
851        },
852        "MediaType": {
853            "enum": [
854                "HDD",
855                "SSD",
856                "SMR"
857            ],
858            "enumDescriptions": {
859                "HDD": "The drive media type is traditional magnetic platters.",
860                "SMR": "The drive media type is shingled magnetic recording.",
861                "SSD": "The drive media type is solid state or flash memory."
862            },
863            "type": "string"
864        },
865        "OemActions": {
866            "additionalProperties": true,
867            "description": "The available OEM-specific actions for this resource.",
868            "longDescription": "This type shall contain the available OEM-specific actions for this resource.",
869            "patternProperties": {
870                "^([a-zA-Z_][a-zA-Z0-9_]*)?@(odata|Redfish|Message)\\.[a-zA-Z_][a-zA-Z0-9_]*$": {
871                    "description": "This property shall specify a valid odata or Redfish property.",
872                    "type": [
873                        "array",
874                        "boolean",
875                        "integer",
876                        "number",
877                        "null",
878                        "object",
879                        "string"
880                    ]
881                }
882            },
883            "properties": {},
884            "type": "object"
885        },
886        "Operations": {
887            "additionalProperties": false,
888            "description": "An operation currently running on this resource.",
889            "longDescription": "This type shall describe a currently running operation on the resource.",
890            "patternProperties": {
891                "^([a-zA-Z_][a-zA-Z0-9_]*)?@(odata|Redfish|Message)\\.[a-zA-Z_][a-zA-Z0-9_]*$": {
892                    "description": "This property shall specify a valid odata or Redfish property.",
893                    "type": [
894                        "array",
895                        "boolean",
896                        "integer",
897                        "number",
898                        "null",
899                        "object",
900                        "string"
901                    ]
902                }
903            },
904            "properties": {
905                "AssociatedTask": {
906                    "$ref": "http://redfish.dmtf.org/schemas/v1/Task.json#/definitions/Task",
907                    "description": "The link to the task associated with the operation, if any.",
908                    "longDescription": "This property shall contain a link to a resource of type `Task` that represents the task associated with the operation.",
909                    "readonly": true,
910                    "versionAdded": "v1_1_0"
911                },
912                "Operation": {
913                    "anyOf": [
914                        {
915                            "$ref": "http://redfish.dmtf.org/schemas/swordfish/v1/Volume.json#/definitions/OperationType"
916                        },
917                        {
918                            "type": "null"
919                        }
920                    ],
921                    "description": "The type of the operation.",
922                    "longDescription": "This property shall contain the type of the operation.",
923                    "readonly": true,
924                    "versionAdded": "v1_17_0"
925                },
926                "OperationName": {
927                    "deprecated": "This property is deprecated in favor of the `Operation` property using the `OperationType` enumeration defined in the `Volume` schema.",
928                    "description": "The name of the operation.",
929                    "longDescription": "This property shall contain a string of the name of the operation.",
930                    "readonly": true,
931                    "type": [
932                        "string",
933                        "null"
934                    ],
935                    "versionAdded": "v1_1_0",
936                    "versionDeprecated": "v1_17_0"
937                },
938                "PercentageComplete": {
939                    "description": "The percentage of the operation that has been completed.",
940                    "longDescription": "This property shall contain an integer of the percentage, `0` to `100`, of the operation that has been completed.",
941                    "maximum": 100,
942                    "minimum": 0,
943                    "readonly": true,
944                    "type": [
945                        "integer",
946                        "null"
947                    ],
948                    "units": "%",
949                    "versionAdded": "v1_1_0"
950                }
951            },
952            "type": "object"
953        },
954        "Reset": {
955            "additionalProperties": false,
956            "description": "This action resets this drive.",
957            "longDescription": "This action shall reset this drive.",
958            "parameters": {
959                "ResetType": {
960                    "$ref": "http://redfish.dmtf.org/schemas/v1/Resource.json#/definitions/ResetType",
961                    "description": "The type of reset.",
962                    "longDescription": "This parameter shall contain the type of reset.  The service can accept a request without the parameter and perform an implementation-specific default reset."
963                }
964            },
965            "patternProperties": {
966                "^([a-zA-Z_][a-zA-Z0-9_]*)?@(odata|Redfish|Message)\\.[a-zA-Z_][a-zA-Z0-9_]*$": {
967                    "description": "This property shall specify a valid odata or Redfish property.",
968                    "type": [
969                        "array",
970                        "boolean",
971                        "integer",
972                        "number",
973                        "null",
974                        "object",
975                        "string"
976                    ]
977                }
978            },
979            "properties": {
980                "target": {
981                    "description": "Link to invoke action",
982                    "format": "uri-reference",
983                    "type": "string"
984                },
985                "title": {
986                    "description": "Friendly action name",
987                    "type": "string"
988                }
989            },
990            "type": "object",
991            "versionAdded": "v1_7_0"
992        },
993        "RevertToOriginalFactoryState": {
994            "additionalProperties": false,
995            "description": "This action reverts a self-encrypting drive (SED) to the original factory state.",
996            "longDescription": "This action shall revert a self-encrypting drive (SED) to the original factory state.  Upon successful completion of this action, the drive data shall be securely erased and the `EncryptionStatus` property shall contain `Unencrypted`.",
997            "parameters": {
998                "PhysicalSecureID": {
999                    "description": "The physical secure ID (PSID).  The PSID is generally printed on the drive label and used to revert an encrypted SED.",
1000                    "longDescription": "This parameter shall contain the physical secure ID (PSID).  The PSID is generally printed on the drive label and used to revert an encrypted SED.",
1001                    "type": "string"
1002                }
1003            },
1004            "patternProperties": {
1005                "^([a-zA-Z_][a-zA-Z0-9_]*)?@(odata|Redfish|Message)\\.[a-zA-Z_][a-zA-Z0-9_]*$": {
1006                    "description": "This property shall specify a valid odata or Redfish property.",
1007                    "type": [
1008                        "array",
1009                        "boolean",
1010                        "integer",
1011                        "number",
1012                        "null",
1013                        "object",
1014                        "string"
1015                    ]
1016                }
1017            },
1018            "properties": {
1019                "target": {
1020                    "description": "Link to invoke action",
1021                    "format": "uri-reference",
1022                    "type": "string"
1023                },
1024                "title": {
1025                    "description": "Friendly action name",
1026                    "type": "string"
1027                }
1028            },
1029            "type": "object",
1030            "versionAdded": "v1_18_0"
1031        },
1032        "SecureErase": {
1033            "additionalProperties": false,
1034            "description": "This action securely erases the contents of the drive.",
1035            "longDescription": "This action shall securely erase the drive.",
1036            "parameters": {
1037                "OverwritePasses": {
1038                    "description": "The number of times to overwrite the drive if performing an overwrite type of sanitization.",
1039                    "longDescription": "This parameter shall contain the number of times to overwrite the drive if the `SanitizationType` parameter contains the value `Overwrite`.  This parameter shall be ignored if the `SanitizationType` parameter does not contain the value `Overwrite`.  If the client does not provide this parameter, the service shall perform an implementation-specific number of passes.",
1040                    "type": "integer",
1041                    "versionAdded": "v1_15_0"
1042                },
1043                "SanitizationType": {
1044                    "$ref": "#/definitions/DataSanitizationType",
1045                    "description": "The type of data sanitization to perform.",
1046                    "longDescription": "This parameter shall contain the type of data sanitization to perform for the secure erase request.  The service can accept a request without the parameter and perform an implementation-specific default secure erase.",
1047                    "versionAdded": "v1_15_0"
1048                }
1049            },
1050            "patternProperties": {
1051                "^([a-zA-Z_][a-zA-Z0-9_]*)?@(odata|Redfish|Message)\\.[a-zA-Z_][a-zA-Z0-9_]*$": {
1052                    "description": "This property shall specify a valid odata or Redfish property.",
1053                    "type": [
1054                        "array",
1055                        "boolean",
1056                        "integer",
1057                        "number",
1058                        "null",
1059                        "object",
1060                        "string"
1061                    ]
1062                }
1063            },
1064            "properties": {
1065                "target": {
1066                    "description": "Link to invoke action",
1067                    "format": "uri-reference",
1068                    "type": "string"
1069                },
1070                "title": {
1071                    "description": "Friendly action name",
1072                    "type": "string"
1073                }
1074            },
1075            "type": "object"
1076        },
1077        "StatusIndicator": {
1078            "enum": [
1079                "OK",
1080                "Fail",
1081                "Rebuild",
1082                "PredictiveFailureAnalysis",
1083                "Hotspare",
1084                "InACriticalArray",
1085                "InAFailedArray"
1086            ],
1087            "enumDescriptions": {
1088                "Fail": "The drive has failed.",
1089                "Hotspare": "The drive has been marked to automatically rebuild and replace a failed drive.",
1090                "InACriticalArray": "The array to which this drive belongs has been degraded.",
1091                "InAFailedArray": "The array to which this drive belongs has failed.",
1092                "OK": "The drive is OK.",
1093                "PredictiveFailureAnalysis": "The drive still works but is predicted to fail soon.",
1094                "Rebuild": "The drive is being rebuilt."
1095            },
1096            "type": "string"
1097        }
1098    },
1099    "language": "en",
1100    "owningEntity": "DMTF",
1101    "release": "2024.1",
1102    "title": "#Drive.v1_19_0.Drive"
1103}