1{
2    "$id": "http://redfish.dmtf.org/schemas/v1/PCIeDevice.v1_14_0.json",
3    "$ref": "#/definitions/PCIeDevice",
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                "Oem": {
27                    "$ref": "#/definitions/OemActions",
28                    "description": "The available OEM-specific actions for this resource.",
29                    "longDescription": "This property shall contain the available OEM-specific actions for this resource.",
30                    "versionAdded": "v1_1_0"
31                }
32            },
33            "type": "object"
34        },
35        "CXLDevice": {
36            "additionalProperties": false,
37            "description": "The CXL-specific properties of a PCIe device.",
38            "longDescription": "This type shall contain CXL-specific properties of a PCIe device.",
39            "patternProperties": {
40                "^([a-zA-Z_][a-zA-Z0-9_]*)?@(odata|Redfish|Message)\\.[a-zA-Z_][a-zA-Z0-9_]*$": {
41                    "description": "This property shall specify a valid odata or Redfish property.",
42                    "type": [
43                        "array",
44                        "boolean",
45                        "integer",
46                        "number",
47                        "null",
48                        "object",
49                        "string"
50                    ]
51                }
52            },
53            "properties": {
54                "DeviceType": {
55                    "anyOf": [
56                        {
57                            "$ref": "#/definitions/CXLDeviceType"
58                        },
59                        {
60                            "type": "null"
61                        }
62                    ],
63                    "description": "The CXL device type.",
64                    "longDescription": "This property shall contain the CXL device type.",
65                    "readonly": true,
66                    "versionAdded": "v1_11_0"
67                },
68                "DynamicCapacity": {
69                    "anyOf": [
70                        {
71                            "$ref": "#/definitions/CXLDynamicCapacity"
72                        },
73                        {
74                            "type": "null"
75                        }
76                    ],
77                    "description": "The CXL dynamic capacity device (DCD) information for this CXL device.",
78                    "longDescription": "This property shall contain the CXL dynamic capacity device (DCD) information for this CXL device.",
79                    "versionAdded": "v1_12_0"
80                },
81                "EgressPortCongestionSupport": {
82                    "description": "Indicates whether the CXL device supports egress port congestion management.",
83                    "longDescription": "This property shall indicate whether the CXL device supports the CXL Specification-defined 'Egress Port Congestion' mechanism.",
84                    "readonly": true,
85                    "type": [
86                        "boolean",
87                        "null"
88                    ],
89                    "versionAdded": "v1_11_0"
90                },
91                "MaxNumberLogicalDevices": {
92                    "description": "The maximum number of logical devices supported by this CXL device.",
93                    "longDescription": "This property shall contain the maximum number of logical devices supported by this CXL device.",
94                    "readonly": true,
95                    "type": [
96                        "integer",
97                        "null"
98                    ],
99                    "versionAdded": "v1_11_0"
100                },
101                "TemporaryThroughputReductionEnabled": {
102                    "description": "Indicates whether temporary throughput reduction is enabled.",
103                    "longDescription": "This property shall indicate whether the CXL Specification-defined 'Temporary Throughput Reduction' mechanism is enabled on this device.",
104                    "readonly": false,
105                    "type": [
106                        "boolean",
107                        "null"
108                    ],
109                    "versionAdded": "v1_14_0"
110                },
111                "TemporaryThroughputReductionSupported": {
112                    "description": "Indicates whether temporary throughput reduction is supported.",
113                    "longDescription": "This property shall indicate whether the CXL Specification-defined 'Temporary Throughput Reduction' mechanism is supported on this device.",
114                    "readonly": true,
115                    "type": [
116                        "boolean",
117                        "null"
118                    ],
119                    "versionAdded": "v1_14_0"
120                },
121                "ThroughputReductionSupport": {
122                    "deprecated": "This property has been deprecated in favor of `TemporaryThroughputReductionSupported` to align with the CXL Specification-defined FMAPI command.",
123                    "description": "Indicates whether the CXL device supports throughput reduction.",
124                    "longDescription": "This property shall indicate whether the CXL device supports the CXL Specification-defined 'Throughput Reduction' mechanism.",
125                    "readonly": true,
126                    "type": [
127                        "boolean",
128                        "null"
129                    ],
130                    "versionAdded": "v1_11_0",
131                    "versionDeprecated": "v1_14_0"
132                },
133                "Timestamp": {
134                    "description": "The timestamp set on the CXL device.",
135                    "format": "date-time",
136                    "longDescription": "This property shall contain the timestamp set on the CXL device.",
137                    "readonly": false,
138                    "type": "string",
139                    "versionAdded": "v1_11_0"
140                }
141            },
142            "type": "object"
143        },
144        "CXLDeviceType": {
145            "enum": [
146                "Type1",
147                "Type2",
148                "Type3"
149            ],
150            "enumDescriptions": {
151                "Type1": "A CXL Type 1 device.",
152                "Type2": "A CXL Type 2 device.",
153                "Type3": "A CXL Type 3 device."
154            },
155            "enumLongDescriptions": {
156                "Type1": "This value shall indicate a CXL Specification-defined Type 1 device.",
157                "Type2": "This value shall indicate a CXL Specification-defined Type 2 device.",
158                "Type3": "This value shall indicate a CXL Specification-defined Type 3 device."
159            },
160            "type": "string"
161        },
162        "CXLDynamicCapacity": {
163            "additionalProperties": false,
164            "description": "The CXL dynamic capacity device (DCD) information for a CXL device.",
165            "longDescription": "This type shall contain the CXL dynamic capacity device (DCD) information for a CXL device.",
166            "patternProperties": {
167                "^([a-zA-Z_][a-zA-Z0-9_]*)?@(odata|Redfish|Message)\\.[a-zA-Z_][a-zA-Z0-9_]*$": {
168                    "description": "This property shall specify a valid odata or Redfish property.",
169                    "type": [
170                        "array",
171                        "boolean",
172                        "integer",
173                        "number",
174                        "null",
175                        "object",
176                        "string"
177                    ]
178                }
179            },
180            "properties": {
181                "AddCapacityPoliciesSupported": {
182                    "description": "The set of selection policies supported by the CXL device when dynamic capacity is added.",
183                    "items": {
184                        "anyOf": [
185                            {
186                                "$ref": "#/definitions/CXLDynamicCapacityPolicies"
187                            },
188                            {
189                                "type": "null"
190                            }
191                        ]
192                    },
193                    "longDescription": "This property shall contain the CXL Specification-defined dynamic capacity policies that are supported by this CXL device when dynamic capacity is added.",
194                    "readonly": true,
195                    "type": "array",
196                    "versionAdded": "v1_12_0"
197                },
198                "MaxDynamicCapacityRegions": {
199                    "description": "The maximum number of dynamic capacity memory regions available per host from this CXL device.",
200                    "longDescription": "This property shall contain the maximum number of dynamic capacity memory regions available per host from this CXL device.",
201                    "readonly": true,
202                    "type": [
203                        "integer",
204                        "null"
205                    ],
206                    "versionAdded": "v1_12_0"
207                },
208                "MaxHosts": {
209                    "description": "The maximum number of hosts supported by this CXL device.",
210                    "longDescription": "This property shall contain the maximum number of hosts supported by this CXL device.",
211                    "readonly": true,
212                    "type": [
213                        "integer",
214                        "null"
215                    ],
216                    "versionAdded": "v1_12_0"
217                },
218                "MemoryBlockSizesSupported": {
219                    "description": "The set of memory block sizes supported by memory regions in this CXL device.",
220                    "items": {
221                        "anyOf": [
222                            {
223                                "$ref": "#/definitions/CXLRegionBlockSizes"
224                            },
225                            {
226                                "type": "null"
227                            }
228                        ]
229                    },
230                    "longDescription": "This property shall contain the set of memory block sizes supported by memory regions in this CXL device.",
231                    "type": "array",
232                    "versionAdded": "v1_12_0"
233                },
234                "ReleaseCapacityPoliciesSupported": {
235                    "description": "The set of removal policies supported by the CXL device when dynamic capacity is released.",
236                    "items": {
237                        "anyOf": [
238                            {
239                                "$ref": "#/definitions/CXLDynamicCapacityPolicies"
240                            },
241                            {
242                                "type": "null"
243                            }
244                        ]
245                    },
246                    "longDescription": "This property shall contain the CXL Specification-defined dynamic capacity policies that are supported by this CXL device when dynamic capacity is released.",
247                    "readonly": true,
248                    "type": "array",
249                    "versionAdded": "v1_12_0"
250                },
251                "SanitizationOnReleaseSupport": {
252                    "description": "An indication of whether the sanitization on capacity release is configurable for the memory regions in this CXL device.",
253                    "items": {
254                        "anyOf": [
255                            {
256                                "$ref": "#/definitions/CXLRegionSanitization"
257                            },
258                            {
259                                "type": "null"
260                            }
261                        ]
262                    },
263                    "longDescription": "This property shall indicate whether the sanitization on capacity release is configurable for the memory regions in this CXL device.",
264                    "type": "array",
265                    "versionAdded": "v1_12_0"
266                },
267                "TotalDynamicCapacityMiB": {
268                    "description": "The total memory media capacity of the CXL device available for dynamic assignment in mebibytes (MiB).",
269                    "longDescription": "This property shall contain the total memory media capacity of the CXL device available for dynamic assignment in mebibytes (MiB).",
270                    "readonly": true,
271                    "type": [
272                        "integer",
273                        "null"
274                    ],
275                    "units": "MiBy",
276                    "versionAdded": "v1_12_0"
277                }
278            },
279            "type": "object"
280        },
281        "CXLDynamicCapacityPolicies": {
282            "enum": [
283                "Free",
284                "Contiguous",
285                "Prescriptive",
286                "TagBased"
287            ],
288            "enumDescriptions": {
289                "Contiguous": "Contiguous add capacity policy.",
290                "Free": "Free add capacity policy.",
291                "Prescriptive": "Prescriptive add or release policy.",
292                "TagBased": "Tag-based release policy."
293            },
294            "enumLongDescriptions": {
295                "Contiguous": "This value shall indicate the CXL Specification-defined contiguous add capacity policy.",
296                "Free": "This value shall indicate the CXL Specification-defined free add capacity policy.",
297                "Prescriptive": "This value shall indicate the CXL Specification-defined prescriptive add or release policy.",
298                "TagBased": "This value shall indicate the CXL Specification-defined tag-based release policy."
299            },
300            "type": "string"
301        },
302        "CXLRegionBlockSizes": {
303            "additionalProperties": false,
304            "description": "Set of memory block sizes supported by memory region in the CXL device.",
305            "longDescription": "This type shall contain the set of memory block sizes supported by memory region in the dynamic capacity device.",
306            "patternProperties": {
307                "^([a-zA-Z_][a-zA-Z0-9_]*)?@(odata|Redfish|Message)\\.[a-zA-Z_][a-zA-Z0-9_]*$": {
308                    "description": "This property shall specify a valid odata or Redfish property.",
309                    "type": [
310                        "array",
311                        "boolean",
312                        "integer",
313                        "number",
314                        "null",
315                        "object",
316                        "string"
317                    ]
318                }
319            },
320            "properties": {
321                "BlockSizeMiB": {
322                    "description": "Set of memory block sizes supported by this memory region defined in mebibytes (MiB).",
323                    "items": {
324                        "type": [
325                            "integer",
326                            "null"
327                        ]
328                    },
329                    "longDescription": "This property shall contain the set of memory block sizes supported by this memory region, with units in MiB.",
330                    "readonly": true,
331                    "type": "array",
332                    "units": "MiBy",
333                    "versionAdded": "v1_12_0"
334                },
335                "RegionNumber": {
336                    "description": "The memory region number.",
337                    "longDescription": "This property shall contain the memory region number.",
338                    "readonly": true,
339                    "type": [
340                        "integer",
341                        "null"
342                    ],
343                    "versionAdded": "v1_12_0"
344                }
345            },
346            "type": "object"
347        },
348        "CXLRegionSanitization": {
349            "additionalProperties": false,
350            "description": "An indication of whether the sanitization on capacity release is configurable for the memory region.",
351            "longDescription": "This property shall indicate whether the sanitization on capacity release is configurable for the memory region.",
352            "patternProperties": {
353                "^([a-zA-Z_][a-zA-Z0-9_]*)?@(odata|Redfish|Message)\\.[a-zA-Z_][a-zA-Z0-9_]*$": {
354                    "description": "This property shall specify a valid odata or Redfish property.",
355                    "type": [
356                        "array",
357                        "boolean",
358                        "integer",
359                        "number",
360                        "null",
361                        "object",
362                        "string"
363                    ]
364                }
365            },
366            "properties": {
367                "RegionNumber": {
368                    "description": "The memory region number.",
369                    "longDescription": "This property shall contain the memory region number.",
370                    "readonly": true,
371                    "type": [
372                        "integer",
373                        "null"
374                    ],
375                    "versionAdded": "v1_12_0"
376                },
377                "SanitizationOnReleaseSupported": {
378                    "description": "An indication of whether the sanitization on capacity release is configurable for this memory region.",
379                    "longDescription": "This property shall indicate whether the sanitization on capacity release is configurable for this memory region.",
380                    "readonly": true,
381                    "type": [
382                        "boolean",
383                        "null"
384                    ],
385                    "versionAdded": "v1_12_0"
386                }
387            },
388            "type": "object"
389        },
390        "DeviceType": {
391            "enum": [
392                "SingleFunction",
393                "MultiFunction",
394                "Simulated",
395                "Retimer"
396            ],
397            "enumDescriptions": {
398                "MultiFunction": "A multi-function PCIe device.",
399                "Retimer": "A PCIe retimer device.",
400                "Simulated": "A PCIe device that is not currently physically present, but is being simulated by the PCIe infrastructure.",
401                "SingleFunction": "A single-function PCIe device."
402            },
403            "enumVersionAdded": {
404                "Retimer": "v1_10_0"
405            },
406            "type": "string"
407        },
408        "LaneSplittingType": {
409            "enum": [
410                "None",
411                "Bridged",
412                "Bifurcated"
413            ],
414            "enumDescriptions": {
415                "Bifurcated": "The slot is bifurcated to split the lanes with associated devices.",
416                "Bridged": "The slot has a bridge to share the lanes with associated devices.",
417                "None": "The slot has no lane splitting."
418            },
419            "type": "string"
420        },
421        "Links": {
422            "additionalProperties": false,
423            "description": "The links to other resources that are related to this resource.",
424            "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.",
425            "patternProperties": {
426                "^([a-zA-Z_][a-zA-Z0-9_]*)?@(odata|Redfish|Message)\\.[a-zA-Z_][a-zA-Z0-9_]*$": {
427                    "description": "This property shall specify a valid odata or Redfish property.",
428                    "type": [
429                        "array",
430                        "boolean",
431                        "integer",
432                        "number",
433                        "null",
434                        "object",
435                        "string"
436                    ]
437                }
438            },
439            "properties": {
440                "Chassis": {
441                    "description": "An array of links to the chassis in which the PCIe device is contained.",
442                    "items": {
443                        "$ref": "http://redfish.dmtf.org/schemas/v1/Chassis.json#/definitions/Chassis"
444                    },
445                    "longDescription": "This property shall contain an array of links to resources of type `Chassis` that represent the physical containers associated with this resource.",
446                    "readonly": true,
447                    "type": "array"
448                },
449                "Chassis@odata.count": {
450                    "$ref": "http://redfish.dmtf.org/schemas/v1/odata-v4.json#/definitions/count"
451                },
452                "Oem": {
453                    "$ref": "http://redfish.dmtf.org/schemas/v1/Resource.json#/definitions/Oem",
454                    "description": "The OEM extension property.",
455                    "longDescription": "This property shall contain the OEM extensions.  All values for properties contained in this object shall conform to the Redfish Specification-described requirements."
456                },
457                "PCIeFunctions": {
458                    "deprecated": "This property has been deprecated in favor of the `PCIeFunctions` property in the root that provides a link to a resource collection.",
459                    "description": "An array of links to PCIe functions exposed by this device.",
460                    "items": {
461                        "$ref": "http://redfish.dmtf.org/schemas/v1/PCIeFunction.json#/definitions/PCIeFunction"
462                    },
463                    "longDescription": "This property shall contain an array of links to resources of type `PCIeFunction` that represent the PCIe functions this device exposes.",
464                    "readonly": true,
465                    "type": "array",
466                    "versionDeprecated": "v1_4_0"
467                },
468                "PCIeFunctions@odata.count": {
469                    "$ref": "http://redfish.dmtf.org/schemas/v1/odata-v4.json#/definitions/count"
470                },
471                "Processors": {
472                    "description": "An array of links to the processors that are directly connected or directly bridged to this PCIe device.",
473                    "items": {
474                        "$ref": "http://redfish.dmtf.org/schemas/v1/Processor.json#/definitions/Processor"
475                    },
476                    "longDescription": "This property shall contain an array of links to resources of type `Processor` that represent processors that are directly connected or directly bridged to this PCIe device.",
477                    "readonly": true,
478                    "type": "array",
479                    "versionAdded": "v1_12_0"
480                },
481                "Processors@odata.count": {
482                    "$ref": "http://redfish.dmtf.org/schemas/v1/odata-v4.json#/definitions/count"
483                },
484                "Switch": {
485                    "anyOf": [
486                        {
487                            "$ref": "http://redfish.dmtf.org/schemas/v1/Switch.json#/definitions/Switch"
488                        },
489                        {
490                            "type": "null"
491                        }
492                    ],
493                    "description": "The link to a switch that is associated with this PCIe device.",
494                    "longDescription": "This property shall contain a link to a resource of type `Switch` that is associated with this PCIe device.",
495                    "readonly": true,
496                    "versionAdded": "v1_10_0"
497                }
498            },
499            "type": "object"
500        },
501        "OemActions": {
502            "additionalProperties": true,
503            "description": "The available OEM-specific actions for this resource.",
504            "longDescription": "This type shall contain the available OEM-specific actions for this resource.",
505            "patternProperties": {
506                "^([a-zA-Z_][a-zA-Z0-9_]*)?@(odata|Redfish|Message)\\.[a-zA-Z_][a-zA-Z0-9_]*$": {
507                    "description": "This property shall specify a valid odata or Redfish property.",
508                    "type": [
509                        "array",
510                        "boolean",
511                        "integer",
512                        "number",
513                        "null",
514                        "object",
515                        "string"
516                    ]
517                }
518            },
519            "properties": {},
520            "type": "object"
521        },
522        "PCIeDevice": {
523            "additionalProperties": false,
524            "description": "The `PCIeDevice` schema describes the properties of a PCIe device that is attached to a system.  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.",
525            "longDescription": "This resource shall represent a PCIe device in 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`.",
526            "patternProperties": {
527                "^([a-zA-Z_][a-zA-Z0-9_]*)?@(odata|Redfish|Message)\\.[a-zA-Z_][a-zA-Z0-9_]*$": {
528                    "description": "This property shall specify a valid odata or Redfish property.",
529                    "type": [
530                        "array",
531                        "boolean",
532                        "integer",
533                        "number",
534                        "null",
535                        "object",
536                        "string"
537                    ]
538                }
539            },
540            "properties": {
541                "@odata.context": {
542                    "$ref": "http://redfish.dmtf.org/schemas/v1/odata-v4.json#/definitions/context"
543                },
544                "@odata.etag": {
545                    "$ref": "http://redfish.dmtf.org/schemas/v1/odata-v4.json#/definitions/etag"
546                },
547                "@odata.id": {
548                    "$ref": "http://redfish.dmtf.org/schemas/v1/odata-v4.json#/definitions/id"
549                },
550                "@odata.type": {
551                    "$ref": "http://redfish.dmtf.org/schemas/v1/odata-v4.json#/definitions/type"
552                },
553                "Actions": {
554                    "$ref": "#/definitions/Actions",
555                    "description": "The available actions for this resource.",
556                    "longDescription": "This property shall contain the available actions for this resource.",
557                    "versionAdded": "v1_1_0"
558                },
559                "Assembly": {
560                    "$ref": "http://redfish.dmtf.org/schemas/v1/Assembly.json#/definitions/Assembly",
561                    "description": "The link to the assembly associated with this PCIe device.",
562                    "longDescription": "This property shall contain a link to a resource of type `Assembly`.",
563                    "readonly": true,
564                    "versionAdded": "v1_2_0"
565                },
566                "AssetTag": {
567                    "description": "The user-assigned asset tag for this PCIe device.",
568                    "longDescription": "This property shall contain an identifying string that tracks the PCIe device for inventory purposes.",
569                    "readonly": false,
570                    "type": [
571                        "string",
572                        "null"
573                    ]
574                },
575                "CXLDevice": {
576                    "anyOf": [
577                        {
578                            "$ref": "#/definitions/CXLDevice"
579                        },
580                        {
581                            "type": "null"
582                        }
583                    ],
584                    "description": "The CXL-specific properties of this PCIe device.",
585                    "longDescription": "This property shall contain CXL-specific properties of this PCIe device.",
586                    "versionAdded": "v1_11_0"
587                },
588                "CXLLogicalDevices": {
589                    "$ref": "http://redfish.dmtf.org/schemas/v1/CXLLogicalDeviceCollection.json#/definitions/CXLLogicalDeviceCollection",
590                    "description": "The link to the collection of CXL logical devices within this PCIe device.",
591                    "longDescription": "This property shall contain a link to a resource collection of type `CXLLogicalDeviceCollection`.",
592                    "readonly": true,
593                    "versionAdded": "v1_11_0"
594                },
595                "Description": {
596                    "anyOf": [
597                        {
598                            "$ref": "http://redfish.dmtf.org/schemas/v1/Resource.json#/definitions/Description"
599                        },
600                        {
601                            "type": "null"
602                        }
603                    ],
604                    "readonly": true
605                },
606                "DeviceType": {
607                    "$ref": "#/definitions/DeviceType",
608                    "description": "The device type for this PCIe device.",
609                    "longDescription": "This property shall contain the device type of the PCIe device such as `SingleFunction` or `MultiFunction`.",
610                    "readonly": true
611                },
612                "EnvironmentMetrics": {
613                    "$ref": "http://redfish.dmtf.org/schemas/v1/EnvironmentMetrics.json#/definitions/EnvironmentMetrics",
614                    "description": "The link to the environment metrics for this PCIe device.",
615                    "longDescription": "This property shall contain a link to a resource of type `EnvironmentMetrics` that specifies the environment metrics for this PCIe device.",
616                    "readonly": true,
617                    "versionAdded": "v1_7_0"
618                },
619                "FirmwareVersion": {
620                    "description": "The version of firmware for this PCIe device.",
621                    "longDescription": "This property shall contain the firmware version of the PCIe device.",
622                    "readonly": true,
623                    "type": [
624                        "string",
625                        "null"
626                    ]
627                },
628                "Id": {
629                    "$ref": "http://redfish.dmtf.org/schemas/v1/Resource.json#/definitions/Id",
630                    "readonly": true
631                },
632                "Links": {
633                    "$ref": "#/definitions/Links",
634                    "description": "The links to other resources that are related to this resource.",
635                    "longDescription": "This property shall contain links to resources that are related to but are not contained by, or subordinate to, this resource."
636                },
637                "LocationIndicatorActive": {
638                    "description": "An indicator allowing an operator to physically locate this resource.",
639                    "longDescription": "This property shall contain the state of the indicator used to physically identify or locate this resource.",
640                    "readonly": false,
641                    "type": [
642                        "boolean",
643                        "null"
644                    ],
645                    "versionAdded": "v1_12_0"
646                },
647                "Manufacturer": {
648                    "description": "The manufacturer of this PCIe device.",
649                    "longDescription": "This property shall contain the name of the organization responsible for producing the PCIe device.  This organization may be the entity from whom the PCIe device is purchased, but this is not necessarily true.",
650                    "readonly": true,
651                    "type": [
652                        "string",
653                        "null"
654                    ]
655                },
656                "Model": {
657                    "description": "The model number for the PCIe device.",
658                    "longDescription": "This property shall contain the name by which the manufacturer generally refers to the PCIe device.",
659                    "readonly": true,
660                    "type": [
661                        "string",
662                        "null"
663                    ]
664                },
665                "Name": {
666                    "$ref": "http://redfish.dmtf.org/schemas/v1/Resource.json#/definitions/Name",
667                    "readonly": true
668                },
669                "Oem": {
670                    "$ref": "http://redfish.dmtf.org/schemas/v1/Resource.json#/definitions/Oem",
671                    "description": "The OEM extension property.",
672                    "longDescription": "This property shall contain the OEM extensions.  All values for properties that this object contains shall conform to the Redfish Specification-described requirements."
673                },
674                "PCIeFunctions": {
675                    "$ref": "http://redfish.dmtf.org/schemas/v1/PCIeFunctionCollection.json#/definitions/PCIeFunctionCollection",
676                    "description": "The link to the collection of PCIe functions associated with this PCIe device.",
677                    "longDescription": "This property shall contain a link to a resource collection of type `PCIeFunctionCollection`.  This property should not be present if `DeviceType` contains `Retimer`.",
678                    "readonly": true,
679                    "versionAdded": "v1_4_0"
680                },
681                "PCIeInterface": {
682                    "$ref": "#/definitions/PCIeInterface",
683                    "description": "The PCIe interface details for this PCIe device.",
684                    "longDescription": "This property shall contain details for the PCIe interface that connects this PCIe device to its host or upstream switch.",
685                    "versionAdded": "v1_3_0"
686                },
687                "PartNumber": {
688                    "description": "The part number for this PCIe device.",
689                    "longDescription": "This property shall contain a part number assigned by the organization that is responsible for producing or manufacturing the PCIe device.",
690                    "readonly": true,
691                    "type": [
692                        "string",
693                        "null"
694                    ]
695                },
696                "ReadyToRemove": {
697                    "description": "An indication of whether the PCIe device is prepared by the system for removal.",
698                    "longDescription": "This property shall indicate whether the PCIe device is ready for removal.  Setting the value to `true` shall cause the service to perform appropriate actions to quiesce the device.  A task may spawn while the device is quiescing.",
699                    "readonly": false,
700                    "type": [
701                        "boolean",
702                        "null"
703                    ],
704                    "versionAdded": "v1_7_0"
705                },
706                "SKU": {
707                    "description": "The SKU for this PCIe device.",
708                    "longDescription": "This property shall contain the stock-keeping unit number for this PCIe device.",
709                    "readonly": true,
710                    "type": [
711                        "string",
712                        "null"
713                    ]
714                },
715                "SerialNumber": {
716                    "description": "The serial number for this PCIe device.",
717                    "longDescription": "This property shall contain a manufacturer-allocated number that identifies the PCIe device.",
718                    "readonly": true,
719                    "type": [
720                        "string",
721                        "null"
722                    ]
723                },
724                "Slot": {
725                    "anyOf": [
726                        {
727                            "$ref": "#/definitions/Slot"
728                        },
729                        {
730                            "type": "null"
731                        }
732                    ],
733                    "description": "Information about the slot for this PCIe device.",
734                    "longDescription": "This property shall contain information about the PCIe slot for this PCIe device.",
735                    "versionAdded": "v1_9_0"
736                },
737                "SparePartNumber": {
738                    "description": "The spare part number of the PCIe device.",
739                    "longDescription": "This property shall contain the spare part number of the PCIe device.",
740                    "readonly": true,
741                    "type": [
742                        "string",
743                        "null"
744                    ],
745                    "versionAdded": "v1_6_0"
746                },
747                "StagedVersion": {
748                    "description": "The staged firmware version for this PCIe device; this firmware is not yet active.",
749                    "longDescription": "This property shall contain the staged firmware version for this PCIe device; this firmware is not yet active.",
750                    "readonly": true,
751                    "type": "string",
752                    "versionAdded": "v1_11_0"
753                },
754                "Status": {
755                    "$ref": "http://redfish.dmtf.org/schemas/v1/Resource.json#/definitions/Status",
756                    "description": "The status and health of the resource and its subordinate or dependent resources.",
757                    "longDescription": "This property shall contain any status or health properties of the resource."
758                },
759                "UUID": {
760                    "anyOf": [
761                        {
762                            "$ref": "http://redfish.dmtf.org/schemas/v1/Resource.json#/definitions/UUID"
763                        },
764                        {
765                            "type": "null"
766                        }
767                    ],
768                    "description": "The UUID for this PCIe device.",
769                    "longDescription": "This property shall contain the universally unique identifier number for this PCIe device.",
770                    "readonly": true,
771                    "versionAdded": "v1_5_0"
772                }
773            },
774            "required": [
775                "@odata.id",
776                "@odata.type",
777                "Id",
778                "Name"
779            ],
780            "type": "object"
781        },
782        "PCIeErrors": {
783            "additionalProperties": false,
784            "description": "The PCIe errors associated with this device.",
785            "longDescription": "This property shall contain properties that describe the PCIe errors associated with this device.",
786            "patternProperties": {
787                "^([a-zA-Z_][a-zA-Z0-9_]*)?@(odata|Redfish|Message)\\.[a-zA-Z_][a-zA-Z0-9_]*$": {
788                    "description": "This property shall specify a valid odata or Redfish property.",
789                    "type": [
790                        "array",
791                        "boolean",
792                        "integer",
793                        "number",
794                        "null",
795                        "object",
796                        "string"
797                    ]
798                }
799            },
800            "properties": {
801                "CorrectableErrorCount": {
802                    "description": "The total number of PCIe correctable errors for this device.",
803                    "longDescription": "This property shall contain the total number of PCIe correctable errors for this device.",
804                    "readonly": true,
805                    "type": [
806                        "integer",
807                        "null"
808                    ],
809                    "versionAdded": "v1_8_0"
810                },
811                "FatalErrorCount": {
812                    "description": "The total number of PCIe fatal errors for this device.",
813                    "longDescription": "This property shall contain the total number of PCIe fatal errors for this device.",
814                    "readonly": true,
815                    "type": [
816                        "integer",
817                        "null"
818                    ],
819                    "versionAdded": "v1_8_0"
820                },
821                "L0ToRecoveryCount": {
822                    "description": "The total number of times the PCIe link states transitioned from L0 to the recovery state for this device.",
823                    "longDescription": "This property shall contain the total number of times the PCIe link transitioned from L0 to the recovery state for this device.",
824                    "readonly": true,
825                    "type": [
826                        "integer",
827                        "null"
828                    ],
829                    "versionAdded": "v1_8_0"
830                },
831                "NAKReceivedCount": {
832                    "description": "The total number of NAKs issued on the PCIe link by the receiver.",
833                    "longDescription": "This property shall contain the total number of NAKs issued on the PCIe link by the receiver.  A NAK is issued by the receiver when it detects that a TLP from this device was missed.  This could be because this device did not transmit it, or because the receiver could not properly decode the packet.",
834                    "readonly": true,
835                    "type": [
836                        "integer",
837                        "null"
838                    ],
839                    "versionAdded": "v1_8_0"
840                },
841                "NAKSentCount": {
842                    "description": "The total number of NAKs issued on the PCIe link by this device.",
843                    "longDescription": "This property shall contain the total number of NAKs issued on the PCIe link by this device.  A NAK is issued by the device when it detects that a TLP from the receiver was missed.  This could be because the receiver did not transmit it, or because this device could not properly decode the packet.",
844                    "readonly": true,
845                    "type": [
846                        "integer",
847                        "null"
848                    ],
849                    "versionAdded": "v1_8_0"
850                },
851                "NonFatalErrorCount": {
852                    "description": "The total number of PCIe non-fatal errors for this device.",
853                    "longDescription": "This property shall contain the total number of PCIe non-fatal errors for this device.",
854                    "readonly": true,
855                    "type": [
856                        "integer",
857                        "null"
858                    ],
859                    "versionAdded": "v1_8_0"
860                },
861                "ReplayCount": {
862                    "description": "The total number of PCIe replays issued by this device.",
863                    "longDescription": "This property shall contain the total number of replays issued on the PCIe link by this device.  A replay is a retransmission of a TLP and occurs because the ACK timer is expired, which means that the receiver did not send the ACK or this device did not properly decode the ACK.",
864                    "readonly": true,
865                    "type": [
866                        "integer",
867                        "null"
868                    ],
869                    "versionAdded": "v1_8_0"
870                },
871                "ReplayRolloverCount": {
872                    "description": "The total number of PCIe replay rollovers issued by this device.",
873                    "longDescription": "This property shall contain the total number of replay rollovers issued on the PCIe link by this device.  A replay rollover occurs when consecutive replays failed to resolve the errors on the link, which means that this device forced the link into the recovery state.",
874                    "readonly": true,
875                    "type": [
876                        "integer",
877                        "null"
878                    ],
879                    "versionAdded": "v1_8_0"
880                },
881                "UnsupportedRequestCount": {
882                    "description": "The total number of PCIe unsupported requests received by this device.",
883                    "longDescription": "This property shall contain the total number of PCIe unsupported requests received by this device.",
884                    "readonly": true,
885                    "type": [
886                        "integer",
887                        "null"
888                    ],
889                    "versionAdded": "v1_13_0"
890                }
891            },
892            "type": "object"
893        },
894        "PCIeInterface": {
895            "additionalProperties": false,
896            "description": "Properties that describe a PCIe interface.",
897            "longDescription": "This type shall contain the definition for a PCIe interface for a Redfish implementation.",
898            "patternProperties": {
899                "^([a-zA-Z_][a-zA-Z0-9_]*)?@(odata|Redfish|Message)\\.[a-zA-Z_][a-zA-Z0-9_]*$": {
900                    "description": "This property shall specify a valid odata or Redfish property.",
901                    "type": [
902                        "array",
903                        "boolean",
904                        "integer",
905                        "number",
906                        "null",
907                        "object",
908                        "string"
909                    ]
910                }
911            },
912            "properties": {
913                "LanesInUse": {
914                    "description": "The number of PCIe lanes in use by this device.",
915                    "longDescription": "This property shall contain the number of PCIe lanes in use by this device, which shall be equal to or less than the `MaxLanes` property value.",
916                    "maximum": 32,
917                    "readonly": true,
918                    "type": [
919                        "integer",
920                        "null"
921                    ],
922                    "versionAdded": "v1_3_0"
923                },
924                "MaxLanes": {
925                    "description": "The number of PCIe lanes supported by this device.",
926                    "longDescription": "This property shall contain the maximum number of PCIe lanes supported by this device.",
927                    "maximum": 32,
928                    "readonly": true,
929                    "type": [
930                        "integer",
931                        "null"
932                    ],
933                    "versionAdded": "v1_3_0"
934                },
935                "MaxPCIeType": {
936                    "anyOf": [
937                        {
938                            "$ref": "http://redfish.dmtf.org/schemas/v1/PCIeDevice.json#/definitions/PCIeTypes"
939                        },
940                        {
941                            "type": "null"
942                        }
943                    ],
944                    "description": "The highest version of the PCIe specification supported by this device.",
945                    "longDescription": "This property shall contain the maximum PCIe specification that this device supports.",
946                    "readonly": true,
947                    "versionAdded": "v1_3_0"
948                },
949                "Oem": {
950                    "$ref": "http://redfish.dmtf.org/schemas/v1/Resource.json#/definitions/Oem",
951                    "description": "The OEM extension property.",
952                    "longDescription": "This property shall contain the OEM extensions.  All values for properties contained in this object shall conform to the Redfish Specification-described requirements.",
953                    "versionAdded": "v1_3_0"
954                },
955                "PCIeType": {
956                    "anyOf": [
957                        {
958                            "$ref": "http://redfish.dmtf.org/schemas/v1/PCIeDevice.json#/definitions/PCIeTypes"
959                        },
960                        {
961                            "type": "null"
962                        }
963                    ],
964                    "description": "The version of the PCIe specification in use by this device.",
965                    "longDescription": "This property shall contain the negotiated PCIe interface version in use by this device.",
966                    "readonly": true,
967                    "versionAdded": "v1_3_0"
968                }
969            },
970            "type": "object"
971        },
972        "Slot": {
973            "additionalProperties": false,
974            "description": "The PCIe slot associated with a PCIe device.",
975            "longDescription": "This object shall contain properties that describe the PCIe slot associated with a PCIe device.",
976            "patternProperties": {
977                "^([a-zA-Z_][a-zA-Z0-9_]*)?@(odata|Redfish|Message)\\.[a-zA-Z_][a-zA-Z0-9_]*$": {
978                    "description": "This property shall specify a valid odata or Redfish property.",
979                    "type": [
980                        "array",
981                        "boolean",
982                        "integer",
983                        "number",
984                        "null",
985                        "object",
986                        "string"
987                    ]
988                }
989            },
990            "properties": {
991                "HotPluggable": {
992                    "description": "An indication of whether this PCIe slot supports hotplug.",
993                    "longDescription": "This property shall indicate whether this PCIe slot supports hotplug.",
994                    "readonly": true,
995                    "type": [
996                        "boolean",
997                        "null"
998                    ],
999                    "versionAdded": "v1_12_0"
1000                },
1001                "LaneSplitting": {
1002                    "anyOf": [
1003                        {
1004                            "$ref": "#/definitions/LaneSplittingType"
1005                        },
1006                        {
1007                            "type": "null"
1008                        }
1009                    ],
1010                    "description": "The lane splitting strategy used in the PCIe slot.",
1011                    "longDescription": "This property shall contain lane splitting information of the associated PCIe slot.",
1012                    "readonly": true,
1013                    "versionAdded": "v1_9_0"
1014                },
1015                "Lanes": {
1016                    "description": "The number of PCIe lanes supported by this slot.",
1017                    "longDescription": "This property shall contain the maximum number of PCIe lanes supported by the slot.",
1018                    "maximum": 32,
1019                    "readonly": true,
1020                    "type": [
1021                        "integer",
1022                        "null"
1023                    ],
1024                    "versionAdded": "v1_9_0"
1025                },
1026                "Location": {
1027                    "$ref": "http://redfish.dmtf.org/schemas/v1/Resource.json#/definitions/Location",
1028                    "description": "The location of the PCIe slot.",
1029                    "longDescription": "This property shall contain part location information, including a `ServiceLabel` property, of the associated PCIe slot.",
1030                    "versionAdded": "v1_9_0"
1031                },
1032                "PCIeType": {
1033                    "anyOf": [
1034                        {
1035                            "$ref": "http://redfish.dmtf.org/schemas/v1/PCIeDevice.json#/definitions/PCIeTypes"
1036                        },
1037                        {
1038                            "type": "null"
1039                        }
1040                    ],
1041                    "description": "The PCIe specification this slot supports.",
1042                    "longDescription": "This property shall contain the maximum PCIe specification that this slot supports.",
1043                    "readonly": true,
1044                    "versionAdded": "v1_9_0"
1045                },
1046                "SlotType": {
1047                    "anyOf": [
1048                        {
1049                            "$ref": "#/definitions/SlotType"
1050                        },
1051                        {
1052                            "type": "null"
1053                        }
1054                    ],
1055                    "description": "The PCIe slot type.",
1056                    "longDescription": "This property shall contain the PCIe slot type.",
1057                    "readonly": true,
1058                    "versionAdded": "v1_9_0"
1059                }
1060            },
1061            "type": "object"
1062        },
1063        "SlotType": {
1064            "enum": [
1065                "FullLength",
1066                "HalfLength",
1067                "LowProfile",
1068                "Mini",
1069                "M2",
1070                "OEM",
1071                "OCP3Small",
1072                "OCP3Large",
1073                "U2"
1074            ],
1075            "enumDescriptions": {
1076                "FullLength": "Full-Length PCIe slot.",
1077                "HalfLength": "Half-Length PCIe slot.",
1078                "LowProfile": "Low-Profile or Slim PCIe slot.",
1079                "M2": "PCIe M.2 slot.",
1080                "Mini": "Mini PCIe slot.",
1081                "OCP3Large": "Open Compute Project 3.0 large form factor slot.",
1082                "OCP3Small": "Open Compute Project 3.0 small form factor slot.",
1083                "OEM": "An OEM-specific slot.",
1084                "U2": "U.2 / SFF-8639 slot or bay."
1085            },
1086            "type": "string"
1087        }
1088    },
1089    "language": "en",
1090    "owningEntity": "DMTF",
1091    "release": "2024.1",
1092    "title": "#PCIeDevice.v1_14_0.PCIeDevice"
1093}