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