1{
2    "$id": "http://redfish.dmtf.org/schemas/v1/AttributeRegistry.v1_3_9.json",
3    "$ref": "#/definitions/AttributeRegistry",
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        "AttributeRegistry": {
36            "additionalProperties": false,
37            "description": "The `AttributeRegistry` schema contains a set of key-value pairs that represent the structure of an attribute registry.  It includes mechanisms for building user interfaces, or menus, allowing consistent navigation of the contents.  The attribute registry is specific to an implementation or product.  The attributes and property names are not standardized.",
38            "longDescription": "This resource shall represent an attribute registry for a Redfish implementation.",
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                "@odata.type": {
55                    "$ref": "http://redfish.dmtf.org/schemas/v1/odata-v4.json#/definitions/type"
56                },
57                "Actions": {
58                    "$ref": "#/definitions/Actions",
59                    "description": "The available actions for this resource.",
60                    "longDescription": "This property shall contain the available actions for this resource.",
61                    "versionAdded": "v1_1_0"
62                },
63                "Description": {
64                    "anyOf": [
65                        {
66                            "$ref": "http://redfish.dmtf.org/schemas/v1/Resource.json#/definitions/Description"
67                        },
68                        {
69                            "type": "null"
70                        }
71                    ],
72                    "readonly": true
73                },
74                "Id": {
75                    "$ref": "http://redfish.dmtf.org/schemas/v1/Resource.json#/definitions/Id",
76                    "readonly": true
77                },
78                "Language": {
79                    "description": "The RFC5646-conformant language code for the attribute registry.",
80                    "longDescription": "This property shall contain an RFC5646-conformant language code.",
81                    "readonly": true,
82                    "type": "string"
83                },
84                "Name": {
85                    "$ref": "http://redfish.dmtf.org/schemas/v1/Resource.json#/definitions/Name",
86                    "readonly": true
87                },
88                "Oem": {
89                    "$ref": "http://redfish.dmtf.org/schemas/v1/Resource.json#/definitions/Oem",
90                    "description": "The OEM extension property.",
91                    "longDescription": "This property shall contain the OEM extensions.  All values for properties that this object contains shall conform to the Redfish Specification-described requirements."
92                },
93                "OwningEntity": {
94                    "description": "The organization or company that publishes this attribute registry.",
95                    "longDescription": "This property shall represent the publisher of this attribute registry.",
96                    "readonly": true,
97                    "type": "string"
98                },
99                "RegistryEntries": {
100                    "$ref": "#/definitions/RegistryEntries",
101                    "description": "The list of all attributes and their metadata for this component.",
102                    "longDescription": "This property shall list attributes for this component, along with their possible values, dependencies, and other metadata."
103                },
104                "RegistryVersion": {
105                    "description": "The attribute registry version.",
106                    "longDescription": "This property shall contain the version of this attribute registry.",
107                    "pattern": "^\\d+\\.\\d+\\.\\d+$",
108                    "readonly": true,
109                    "type": "string"
110                },
111                "SupportedSystems": {
112                    "description": "An array of systems that this attribute registry supports.",
113                    "items": {
114                        "$ref": "#/definitions/SupportedSystems"
115                    },
116                    "longDescription": "This property shall contain an array containing a list of systems that this attribute registry supports.",
117                    "type": "array"
118                }
119            },
120            "required": [
121                "Language",
122                "RegistryVersion",
123                "OwningEntity",
124                "@odata.type",
125                "Id",
126                "Name"
127            ],
128            "type": "object"
129        },
130        "AttributeType": {
131            "enum": [
132                "Enumeration",
133                "String",
134                "Integer",
135                "Boolean",
136                "Password"
137            ],
138            "enumDescriptions": {
139                "Boolean": "A flag with a `true` or `false` value.",
140                "Enumeration": "A list of the known possible enumerated values.",
141                "Integer": "An integer value.",
142                "Password": "Password values that do not appear as plain text.  The value is `null` in responses.",
143                "String": "Free-form text in their values."
144            },
145            "type": "string"
146        },
147        "AttributeValue": {
148            "additionalProperties": false,
149            "description": "A possible value for an enumeration attribute.",
150            "longDescription": "This type shall describe a possible enumeration attribute value.",
151            "patternProperties": {
152                "^([a-zA-Z_][a-zA-Z0-9_]*)?@(odata|Redfish|Message)\\.[a-zA-Z_][a-zA-Z0-9_]*$": {
153                    "description": "This property shall specify a valid odata or Redfish property.",
154                    "type": [
155                        "array",
156                        "boolean",
157                        "integer",
158                        "number",
159                        "null",
160                        "object",
161                        "string"
162                    ]
163                }
164            },
165            "properties": {
166                "ValueDisplayName": {
167                    "description": "A user-readable display string of the value for the attribute in the defined language.",
168                    "longDescription": "This property shall contain a string representing the user-readable display string of the value for the attribute in the defined language.",
169                    "readonly": true,
170                    "type": [
171                        "string",
172                        "null"
173                    ]
174                },
175                "ValueName": {
176                    "description": "The unique value name for the attribute.",
177                    "longDescription": "This property shall contain a string representing the value name for the attribute.  `ValueName` is a unique string within the list of possible values in the `Value` array for an attribute.",
178                    "readonly": true,
179                    "type": "string"
180                }
181            },
182            "required": [
183                "ValueName"
184            ],
185            "type": "object"
186        },
187        "Attributes": {
188            "additionalProperties": false,
189            "description": "An attribute and its possible values and other metadata.",
190            "longDescription": "This type shall describe an attribute and its possible values and other metadata.",
191            "patternProperties": {
192                "^([a-zA-Z_][a-zA-Z0-9_]*)?@(odata|Redfish|Message)\\.[a-zA-Z_][a-zA-Z0-9_]*$": {
193                    "description": "This property shall specify a valid odata or Redfish property.",
194                    "type": [
195                        "array",
196                        "boolean",
197                        "integer",
198                        "number",
199                        "null",
200                        "object",
201                        "string"
202                    ]
203                }
204            },
205            "properties": {
206                "AttributeName": {
207                    "description": "The unique name for the attribute.",
208                    "longDescription": "This property shall contain the name of this attribute that is unique in this attribute registry.",
209                    "pattern": "^[A-Za-z][A-Za-z0-9_]+$",
210                    "readonly": true,
211                    "type": "string"
212                },
213                "CurrentValue": {
214                    "description": "The placeholder of the current value for the attribute.",
215                    "longDescription": "This property shall contain the placeholder of the current value for the attribute, to aid in evaluating dependencies.  The evaluation results of the `Dependencies` array may affect the current attribute value.",
216                    "readonly": true,
217                    "type": [
218                        "string",
219                        "boolean",
220                        "number",
221                        "null"
222                    ]
223                },
224                "DefaultValue": {
225                    "description": "The default value for the attribute.",
226                    "longDescription": "This property shall contain the default value for the attribute.",
227                    "readonly": true,
228                    "type": [
229                        "string",
230                        "boolean",
231                        "number",
232                        "null"
233                    ]
234                },
235                "DisplayName": {
236                    "description": "The user-readable display string for the attribute in the defined language.",
237                    "longDescription": "This property shall contain the user-readable display string for the attribute in the defined language.",
238                    "readonly": true,
239                    "type": [
240                        "string",
241                        "null"
242                    ]
243                },
244                "DisplayOrder": {
245                    "description": "The ascending order, as a number, in which this attribute appears relative to other attributes.",
246                    "longDescription": "This property shall contain the ascending order, as a number, in which this attribute appears relative to other attributes.",
247                    "readonly": true,
248                    "type": [
249                        "integer",
250                        "null"
251                    ]
252                },
253                "GrayOut": {
254                    "description": "An indication of whether this attribute is grayed out.  A grayed-out attribute is not active and is grayed out in user interfaces but the attribute value can be modified.",
255                    "longDescription": "This property shall indicate whether this attribute is grayed out.  A grayed-out attribute is not active and is grayed out in user interfaces but the attribute value can be modified.  The evaluation results of the `Dependencies` array may affect the grayed-out state of an attribute.",
256                    "readonly": true,
257                    "type": [
258                        "boolean",
259                        "null"
260                    ]
261                },
262                "HelpText": {
263                    "description": "The help text for the attribute.",
264                    "longDescription": "This property shall contain the help text for the attribute.",
265                    "readonly": true,
266                    "type": [
267                        "string",
268                        "null"
269                    ]
270                },
271                "Hidden": {
272                    "description": "An indication of whether this attribute is hidden in user interfaces.",
273                    "longDescription": "This property shall indicate whether this attribute is hidden in user interfaces.  The evaluation results of the `Dependencies` array may affect the hidden state of an attribute.",
274                    "readonly": true,
275                    "type": [
276                        "boolean",
277                        "null"
278                    ]
279                },
280                "Immutable": {
281                    "description": "An indication of whether this attribute is immutable.  Immutable attributes cannot be modified and typically reflect a hardware state.",
282                    "longDescription": "This property shall indicate whether this attribute is immutable.  Immutable attributes shall not be modified and typically reflect a hardware state.",
283                    "readonly": true,
284                    "type": [
285                        "boolean",
286                        "null"
287                    ]
288                },
289                "IsSystemUniqueProperty": {
290                    "description": "An indication of whether this attribute is unique for this system and should not be replicated.",
291                    "longDescription": "This property shall indicate whether this attribute is unique.",
292                    "readonly": true,
293                    "type": [
294                        "boolean",
295                        "null"
296                    ]
297                },
298                "LowerBound": {
299                    "description": "The lower limit for an integer attribute.",
300                    "longDescription": "This property shall contain a number indicating the lower limit for an integer attribute.",
301                    "readonly": true,
302                    "type": [
303                        "integer",
304                        "null"
305                    ]
306                },
307                "MaxLength": {
308                    "description": "The maximum character length of a string attribute.",
309                    "longDescription": "This numeric property shall contain the maximum character length of an attribute of the String type.",
310                    "readonly": true,
311                    "type": [
312                        "integer",
313                        "null"
314                    ]
315                },
316                "MenuPath": {
317                    "description": "The path that describes the menu hierarchy of this attribute.",
318                    "longDescription": "This property shall contain the menu hierarchy of this attribute, in the form of a path to the menu names.  It shall start with `./` to indicate the root menu, followed by the menu names with `/` characters to delineate the menu traversal.",
319                    "pattern": "^\\.\\/([^/]+(\\/[^/]+)*)?$",
320                    "readonly": true,
321                    "type": [
322                        "string",
323                        "null"
324                    ]
325                },
326                "MinLength": {
327                    "description": "The minimum character length of the string attribute.",
328                    "longDescription": "This property shall contain a number indicating the minimum character length of an attribute of the String type.",
329                    "readonly": true,
330                    "type": [
331                        "integer",
332                        "null"
333                    ]
334                },
335                "Oem": {
336                    "$ref": "http://redfish.dmtf.org/schemas/v1/Resource.json#/definitions/Oem",
337                    "description": "The OEM extension property.",
338                    "longDescription": "This property shall contain the OEM extensions.  All values for properties contained in this object shall conform to the Redfish Specification-described requirements.",
339                    "versionAdded": "v1_3_0"
340                },
341                "ReadOnly": {
342                    "description": "An indication of whether this attribute is read-only.  A read-only attribute cannot be modified, and should be grayed out in user interfaces.",
343                    "longDescription": "This property shall indicate whether this attribute is read-only.  A read-only attribute cannot be modified, and should be grayed out in user interfaces.  The evaluation results of the `Dependencies` array may affect the read-only state of an attribute.",
344                    "readonly": true,
345                    "type": [
346                        "boolean",
347                        "null"
348                    ]
349                },
350                "ResetRequired": {
351                    "description": "An indication of whether a system or device reset is required for this attribute value change to take effect.",
352                    "longDescription": "This property shall indicate whether a system or device reset is required for this attribute value change to take effect.",
353                    "readonly": true,
354                    "type": [
355                        "boolean",
356                        "null"
357                    ],
358                    "versionAdded": "v1_2_0"
359                },
360                "ScalarIncrement": {
361                    "description": "The amount to increment or decrement an integer attribute each time a user requests a value change.  The `0` value indicates a free-form numeric user-input attribute.",
362                    "longDescription": "This property shall contain a number indicating the amount to increment or decrement an integer attribute each time a user requests a value change.  The `0` value indicates a free-form numeric user-input attribute.",
363                    "readonly": true,
364                    "type": [
365                        "integer",
366                        "null"
367                    ]
368                },
369                "Type": {
370                    "$ref": "#/definitions/AttributeType",
371                    "description": "The attribute type.",
372                    "longDescription": "This property shall contain an enumeration that describes the attribute type.",
373                    "readonly": true
374                },
375                "UefiDevicePath": {
376                    "description": "The UEFI device path that qualifies this attribute.",
377                    "longDescription": "This property shall contain the UEFI Specification-defined UEFI device path that qualifies and locates this device for this attribute.",
378                    "readonly": true,
379                    "type": [
380                        "string",
381                        "null"
382                    ],
383                    "versionAdded": "v1_2_0"
384                },
385                "UefiKeywordName": {
386                    "description": "The UEFI keyword string for this attribute.",
387                    "longDescription": "This property shall contain the UEFI Specification-defined keyword for this attribute.",
388                    "readonly": true,
389                    "type": "string",
390                    "versionAdded": "v1_2_0"
391                },
392                "UefiNamespaceId": {
393                    "description": "The UEFI namespace ID for the attribute.",
394                    "longDescription": "This property shall contain the UEFI Specification-defined namespace ID for this attribute.",
395                    "readonly": true,
396                    "type": "string",
397                    "versionAdded": "v1_2_0"
398                },
399                "UpperBound": {
400                    "description": "The upper limit for an integer attribute.",
401                    "longDescription": "This property shall contain a number indicating the upper limit for an integer attribute.",
402                    "readonly": true,
403                    "type": [
404                        "integer",
405                        "null"
406                    ]
407                },
408                "Value": {
409                    "description": "An array of the possible values for enumerated attribute values.",
410                    "items": {
411                        "$ref": "#/definitions/AttributeValue"
412                    },
413                    "longDescription": "This property shall contain an array containing the possible values of an attribute of the `Enumeration` type.",
414                    "type": "array"
415                },
416                "ValueExpression": {
417                    "description": "A valid regular expression, according to the Perl regular expression dialect, that validates the attribute value.  Applies to only string and integer attributes.",
418                    "longDescription": "This property shall contain a valid regular expression, according to the Perl regular expression dialect, that validates the attribute value.  Applies to only string and integer attributes.",
419                    "readonly": true,
420                    "type": [
421                        "string",
422                        "null"
423                    ]
424                },
425                "WarningText": {
426                    "description": "The warning text for the attribute.",
427                    "longDescription": "This property shall contain the warning text for the attribute.",
428                    "readonly": true,
429                    "type": [
430                        "string",
431                        "null"
432                    ]
433                },
434                "WriteOnly": {
435                    "description": "An indication of whether this attribute is write-only.  A write-only attribute reverts to its initial value after settings are applied.",
436                    "longDescription": "This property shall indicate whether this attribute is write-only.  A write-only attribute reverts to its initial value after settings are applied.",
437                    "readonly": true,
438                    "type": [
439                        "boolean",
440                        "null"
441                    ]
442                }
443            },
444            "required": [
445                "AttributeName"
446            ],
447            "type": "object"
448        },
449        "Dependencies": {
450            "additionalProperties": false,
451            "description": "The dependency of attributes on this component.",
452            "longDescription": "This type shall describe a dependency of attributes on this component.",
453            "patternProperties": {
454                "^([a-zA-Z_][a-zA-Z0-9_]*)?@(odata|Redfish|Message)\\.[a-zA-Z_][a-zA-Z0-9_]*$": {
455                    "description": "This property shall specify a valid odata or Redfish property.",
456                    "type": [
457                        "array",
458                        "boolean",
459                        "integer",
460                        "number",
461                        "null",
462                        "object",
463                        "string"
464                    ]
465                }
466            },
467            "properties": {
468                "Dependency": {
469                    "$ref": "#/definitions/Dependency",
470                    "description": "The dependency expression for one or more attributes in this attribute registry.",
471                    "longDescription": "This property shall contain the dependency expression for one or more attributes in this attribute registry."
472                },
473                "DependencyFor": {
474                    "description": "The `AttributeName` of the attribute whose change triggers the evaluation of this dependency expression.",
475                    "longDescription": "This property shall contain the `AttributeName` of the attribute whose change triggers the evaluation of this dependency expression.",
476                    "pattern": "^[A-Za-z][A-Za-z0-9_]+$",
477                    "readonly": true,
478                    "type": "string"
479                },
480                "Type": {
481                    "$ref": "#/definitions/DependencyType",
482                    "description": "The type of the dependency structure.",
483                    "longDescription": "This property shall contain an enumeration that describes the type for the attribute dependency.",
484                    "readonly": true
485                }
486            },
487            "type": "object"
488        },
489        "Dependency": {
490            "additionalProperties": false,
491            "description": "The dependency expression for one or more attributes in this attribute registry.",
492            "longDescription": "This type shall describe the dependency expression for one or more attributes in this attribute registry.",
493            "patternProperties": {
494                "^([a-zA-Z_][a-zA-Z0-9_]*)?@(odata|Redfish|Message)\\.[a-zA-Z_][a-zA-Z0-9_]*$": {
495                    "description": "This property shall specify a valid odata or Redfish property.",
496                    "type": [
497                        "array",
498                        "boolean",
499                        "integer",
500                        "number",
501                        "null",
502                        "object",
503                        "string"
504                    ]
505                }
506            },
507            "properties": {
508                "MapFrom": {
509                    "description": "An array of the map-from conditions for a mapping dependency.",
510                    "items": {
511                        "$ref": "#/definitions/MapFrom"
512                    },
513                    "longDescription": "This property shall contain an array containing the map-from conditions for a dependency of the `Map` type.",
514                    "type": "array"
515                },
516                "MapToAttribute": {
517                    "description": "The `AttributeName` of the attribute that is affected by this dependency expression.",
518                    "longDescription": "This property shall contain the `AttributeName` of the attribute that is affected by this dependency expression.",
519                    "pattern": "^[A-Za-z][A-Za-z0-9_]+$",
520                    "readonly": true,
521                    "type": "string"
522                },
523                "MapToProperty": {
524                    "$ref": "#/definitions/MapToProperty",
525                    "description": "The metadata property for the attribute that contains the map-from condition that evaluates this dependency expression.",
526                    "longDescription": "This property shall contain the metadata property for the attribute that the `MapFromAttribute` property specifies that evaluates this dependency expression.  For example, this value could be the `MapFromAttribute` `CurrentValue` or `ReadOnly` state.",
527                    "readonly": true
528                },
529                "MapToValue": {
530                    "description": "The value that the map-to property changes to if the dependency expression evaluates to `true`.",
531                    "longDescription": "The value that the property in `MapToProperty` in the attribute specified in `MapToAttribute` changes to if the dependency expression evaluates to `true`.",
532                    "readonly": true,
533                    "type": [
534                        "string",
535                        "boolean",
536                        "number",
537                        "null"
538                    ]
539                }
540            },
541            "type": "object"
542        },
543        "DependencyType": {
544            "enum": [
545                "Map"
546            ],
547            "enumDescriptions": {
548                "Map": "A simple mapping dependency.  If the condition evaluates to `true`, the attribute or state changes to the mapped value."
549            },
550            "type": "string"
551        },
552        "MapFrom": {
553            "additionalProperties": false,
554            "description": "A map-from condition for mapping dependency.",
555            "longDescription": "This type shall describe a map-from condition for a dependency of the Map type.",
556            "patternProperties": {
557                "^([a-zA-Z_][a-zA-Z0-9_]*)?@(odata|Redfish|Message)\\.[a-zA-Z_][a-zA-Z0-9_]*$": {
558                    "description": "This property shall specify a valid odata or Redfish property.",
559                    "type": [
560                        "array",
561                        "boolean",
562                        "integer",
563                        "number",
564                        "null",
565                        "object",
566                        "string"
567                    ]
568                }
569            },
570            "properties": {
571                "MapFromAttribute": {
572                    "description": "The attribute to use to evaluate this dependency expression.",
573                    "longDescription": "This property shall contain the `AttributeName` for the attribute to use to evaluate this dependency expression term.",
574                    "pattern": "^[A-Za-z][A-Za-z0-9_]+$",
575                    "readonly": true,
576                    "type": "string"
577                },
578                "MapFromCondition": {
579                    "$ref": "#/definitions/MapFromCondition",
580                    "description": "The condition to use to evaluate this dependency expression.",
581                    "longDescription": "This property shall contain the condition to use to evaluate this dependency expression.  For example, `EQU` or `NEQ`.",
582                    "readonly": true
583                },
584                "MapFromProperty": {
585                    "$ref": "#/definitions/MapFromProperty",
586                    "description": "The metadata property for the attribute that the `MapFromAttribute` property specifies to use to evaluate this dependency expression.",
587                    "longDescription": "This property shall contain the metadata property for the attribute that the `MapFromAttribute` property specifies to use to evaluate this dependency expression.  For example, this value could be the `MapFromAttribute` `CurrentValue`, or `ReadOnly` state.",
588                    "readonly": true
589                },
590                "MapFromValue": {
591                    "description": "The value to use to evaluate this dependency expression.",
592                    "longDescription": "The value that the property in `MapFromProperty` in the attribute in `MapFromAttribute` to use to evaluate this dependency expression.",
593                    "readonly": true,
594                    "type": [
595                        "string",
596                        "boolean",
597                        "number",
598                        "null"
599                    ]
600                },
601                "MapTerms": {
602                    "$ref": "#/definitions/MapTerms",
603                    "description": "The logical term that combines two or more map-from conditions in this dependency expression.  For example, `AND` for logical AND, or `OR` for logical OR.",
604                    "longDescription": "This property shall contain the logical term that combines two or more `MapFrom` conditions in this dependency expression.  For example, `AND` for logical AND, or `OR` for logical OR.  If multiple logical terms are present in a dependency expression, they should be evaluated in array order, meaning they are evaluated left-to-right when displayed as a logic expression.",
605                    "readonly": true
606                }
607            },
608            "type": "object"
609        },
610        "MapFromCondition": {
611            "enum": [
612                "EQU",
613                "NEQ",
614                "GTR",
615                "GEQ",
616                "LSS",
617                "LEQ"
618            ],
619            "enumDescriptions": {
620                "EQU": "The logical operation for 'Equal'.",
621                "GEQ": "The logical operation for 'Greater than or Equal'.",
622                "GTR": "The logical operation for 'Greater than'.",
623                "LEQ": "The logical operation for 'Less than or Equal'.",
624                "LSS": "The logical operation for 'Less than'.",
625                "NEQ": "The logical operation for 'Not Equal'."
626            },
627            "type": "string"
628        },
629        "MapFromProperty": {
630            "enum": [
631                "CurrentValue",
632                "DefaultValue",
633                "ReadOnly",
634                "WriteOnly",
635                "GrayOut",
636                "Hidden",
637                "LowerBound",
638                "UpperBound",
639                "MinLength",
640                "MaxLength",
641                "ScalarIncrement"
642            ],
643            "enumDescriptions": {
644                "CurrentValue": "The dependency on an attribute's `CurrentValue`.",
645                "DefaultValue": "The dependency on an attribute's `DefaultValue`.",
646                "GrayOut": "The dependency on an attribute's `GrayOut` state.",
647                "Hidden": "The dependency on an attribute's `Hidden` state.",
648                "LowerBound": "The dependency on an attribute's `LowerBound`.",
649                "MaxLength": "The dependency on an attribute's `MaxLength`.",
650                "MinLength": "The dependency on an attribute's `MinLength`.",
651                "ReadOnly": "The dependency on an attribute's `ReadOnly` state.",
652                "ScalarIncrement": "The dependency on an attribute's `ScalarIncrement`.",
653                "UpperBound": "The dependency on an attribute's `UpperBound`.",
654                "WriteOnly": "The dependency on an attribute's `WriteOnly` state."
655            },
656            "type": "string"
657        },
658        "MapTerms": {
659            "enum": [
660                "AND",
661                "OR"
662            ],
663            "enumDescriptions": {
664                "AND": "The operation used for logical 'AND' of dependency terms.",
665                "OR": "The operation used for logical 'OR' of dependency terms."
666            },
667            "type": "string"
668        },
669        "MapToProperty": {
670            "enum": [
671                "CurrentValue",
672                "DefaultValue",
673                "ReadOnly",
674                "WriteOnly",
675                "GrayOut",
676                "Hidden",
677                "Immutable",
678                "HelpText",
679                "WarningText",
680                "DisplayName",
681                "DisplayOrder",
682                "LowerBound",
683                "UpperBound",
684                "MinLength",
685                "MaxLength",
686                "ScalarIncrement",
687                "ValueExpression"
688            ],
689            "enumDescriptions": {
690                "CurrentValue": "The dependency that affects an attribute's `CurrentValue`.",
691                "DefaultValue": "The dependency that affects an attribute's `DefaultValue`.",
692                "DisplayName": "The dependency that affects an attribute's `DisplayName`.",
693                "DisplayOrder": "The dependency that affects an attribute's `DisplayName`.",
694                "GrayOut": "The dependency that affects an attribute's `GrayOut` state.",
695                "HelpText": "The dependency that affects an attribute's `HelpText`.",
696                "Hidden": "The dependency that affects an attribute's `Hidden` state.",
697                "Immutable": "The dependency that affects an attribute's `Immutable` state.",
698                "LowerBound": "The dependency that affects an attribute's `LowerBound`.",
699                "MaxLength": "The dependency that affects an attribute's `MaxLength`.",
700                "MinLength": "The dependency that affects an attribute's `MinLength`.",
701                "ReadOnly": "The dependency that affects an attribute's `ReadOnly` state.",
702                "ScalarIncrement": "The dependency that affects an attribute's `ScalarIncrement`.",
703                "UpperBound": "The dependency that affects an attribute's `UpperBound`.",
704                "ValueExpression": "The dependency that affects an attribute's `ValueExpression`.",
705                "WarningText": "The dependency that affects an attribute's `WarningText`.",
706                "WriteOnly": "The dependency that affects an attribute's `WriteOnly` state."
707            },
708            "type": "string"
709        },
710        "Menus": {
711            "additionalProperties": false,
712            "description": "An attribute's menu and its hierarchy.",
713            "longDescription": "This type shall describe an attribute's menu and its hierarchy.",
714            "patternProperties": {
715                "^([a-zA-Z_][a-zA-Z0-9_]*)?@(odata|Redfish|Message)\\.[a-zA-Z_][a-zA-Z0-9_]*$": {
716                    "description": "This property shall specify a valid odata or Redfish property.",
717                    "type": [
718                        "array",
719                        "boolean",
720                        "integer",
721                        "number",
722                        "null",
723                        "object",
724                        "string"
725                    ]
726                }
727            },
728            "properties": {
729                "DisplayName": {
730                    "description": "The user-readable display string of this menu in the defined language.",
731                    "longDescription": "This property shall contain the user-readable display string of the menu in the defined language.",
732                    "readonly": true,
733                    "type": [
734                        "string",
735                        "null"
736                    ]
737                },
738                "DisplayOrder": {
739                    "description": "The ascending order, as a number, in which this menu appears relative to other menus.",
740                    "longDescription": "This property shall contain the ascending order, as a number, in which this menu appears relative to other menus.",
741                    "readonly": true,
742                    "type": [
743                        "integer",
744                        "null"
745                    ]
746                },
747                "GrayOut": {
748                    "description": "An indication of whether this menu is grayed out.  A grayed-only menu is not accessible in user interfaces.",
749                    "longDescription": "This property shall indicate whether this menu is grayed out.  A grayed-only menu is not accessible in user interfaces.",
750                    "readonly": true,
751                    "type": [
752                        "boolean",
753                        "null"
754                    ]
755                },
756                "Hidden": {
757                    "description": "An indication of whether this menu is hidden in user interfaces.",
758                    "longDescription": "This property shall indicate whether this menu is hidden in user interfaces.  The evaluation results of the `Dependencies` array may affect the hidden state of a menu.",
759                    "readonly": true,
760                    "type": [
761                        "boolean",
762                        "null"
763                    ],
764                    "versionAdded": "v1_3_0"
765                },
766                "MenuName": {
767                    "description": "The unique name string of this menu.",
768                    "longDescription": "This property shall contain the name of this menu that is unique in this attribute registry.",
769                    "pattern": "^[^/]+$",
770                    "readonly": true,
771                    "type": "string"
772                },
773                "MenuPath": {
774                    "description": "The path to the menu names that describes this menu hierarchy relative to other menus.",
775                    "longDescription": "This property shall contain the menu hierarchy of this menu, in the form of a path to the menu names.  It shall start with `./` to indicate the root menu, followed by the menu names with `/` characters to delineate the menu traversal.",
776                    "pattern": "^\\.\\/([^/]+(\\/[^/]+)*)?$",
777                    "readonly": true,
778                    "type": [
779                        "string",
780                        "null"
781                    ]
782                },
783                "Oem": {
784                    "$ref": "http://redfish.dmtf.org/schemas/v1/Resource.json#/definitions/Oem",
785                    "description": "The OEM extension property.",
786                    "longDescription": "This property shall contain the OEM extensions.  All values for properties contained in this object shall conform to the Redfish Specification-described requirements.",
787                    "versionAdded": "v1_3_0"
788                },
789                "ReadOnly": {
790                    "description": "An indication of whether this menu is read-only.  A read-only menu, its properties, and sub-menus are not accessible in user interfaces.",
791                    "longDescription": "This property shall indicate whether this menu is read-only.  A read-only menu is not accessible in user interfaces, and all properties contained in that menu and its sub-menus are read-only.",
792                    "readonly": true,
793                    "type": [
794                        "boolean",
795                        "null"
796                    ]
797                }
798            },
799            "type": "object"
800        },
801        "OemActions": {
802            "additionalProperties": true,
803            "description": "The available OEM-specific actions for this resource.",
804            "longDescription": "This type shall contain the available OEM-specific actions for this resource.",
805            "patternProperties": {
806                "^([a-zA-Z_][a-zA-Z0-9_]*)?@(odata|Redfish|Message)\\.[a-zA-Z_][a-zA-Z0-9_]*$": {
807                    "description": "This property shall specify a valid odata or Redfish property.",
808                    "type": [
809                        "array",
810                        "boolean",
811                        "integer",
812                        "number",
813                        "null",
814                        "object",
815                        "string"
816                    ]
817                }
818            },
819            "properties": {},
820            "type": "object"
821        },
822        "RegistryEntries": {
823            "additionalProperties": false,
824            "description": "The list of all attributes and metadata for this component.",
825            "longDescription": "This type shall describe a list of all attributes for this component, along with their possible values, dependencies, and other metadata.",
826            "patternProperties": {
827                "^([a-zA-Z_][a-zA-Z0-9_]*)?@(odata|Redfish|Message)\\.[a-zA-Z_][a-zA-Z0-9_]*$": {
828                    "description": "This property shall specify a valid odata or Redfish property.",
829                    "type": [
830                        "array",
831                        "boolean",
832                        "integer",
833                        "number",
834                        "null",
835                        "object",
836                        "string"
837                    ]
838                }
839            },
840            "properties": {
841                "Attributes": {
842                    "description": "An array of attributes and their possible values in the attribute registry.",
843                    "items": {
844                        "$ref": "#/definitions/Attributes"
845                    },
846                    "longDescription": "This property shall contain an array containing the attributes and their possible values and other metadata in the attribute registry.",
847                    "type": "array"
848                },
849                "Dependencies": {
850                    "description": "An array of dependencies of attributes on this component.",
851                    "items": {
852                        "$ref": "#/definitions/Dependencies"
853                    },
854                    "longDescription": "This property shall contain an array containing a list of dependencies of attributes on this component.",
855                    "type": "array"
856                },
857                "Menus": {
858                    "description": "An array for the attributes menus and their hierarchy in the attribute registry.",
859                    "items": {
860                        "$ref": "#/definitions/Menus"
861                    },
862                    "longDescription": "This property shall contain an array containing the attributes menus and their hierarchy in the attribute registry.",
863                    "type": "array"
864                }
865            },
866            "type": "object"
867        },
868        "SupportedSystems": {
869            "additionalProperties": false,
870            "description": "A system that this attribute registry supports.",
871            "longDescription": "This type shall describe a system that this attribute registry supports.",
872            "patternProperties": {
873                "^([a-zA-Z_][a-zA-Z0-9_]*)?@(odata|Redfish|Message)\\.[a-zA-Z_][a-zA-Z0-9_]*$": {
874                    "description": "This property shall specify a valid odata or Redfish property.",
875                    "type": [
876                        "array",
877                        "boolean",
878                        "integer",
879                        "number",
880                        "null",
881                        "object",
882                        "string"
883                    ]
884                }
885            },
886            "properties": {
887                "FirmwareVersion": {
888                    "description": "Firmware version.",
889                    "longDescription": "The version of the component firmware image to which this attribute registry applies.",
890                    "readonly": true,
891                    "type": [
892                        "string",
893                        "null"
894                    ],
895                    "versionAdded": "v1_1_0"
896                },
897                "ProductName": {
898                    "description": "The product name of the computer system to which this attribute registry applies.",
899                    "longDescription": "This property shall contain the product name of the computer system to which this attribute registry applies.",
900                    "readonly": true,
901                    "type": [
902                        "string",
903                        "null"
904                    ]
905                },
906                "SystemId": {
907                    "description": "The ID of the systems to which this attribute registry applies.",
908                    "longDescription": "This property shall contain the system ID that identifies the systems to which this attribute registry applies.  This can be identified by one or more properties in the computer system resource, such as Model, SubModel, or SKU.",
909                    "pattern": "^[A-Za-z0-9]+$",
910                    "readonly": true,
911                    "type": [
912                        "string",
913                        "null"
914                    ]
915                }
916            },
917            "type": "object"
918        }
919    },
920    "language": "en",
921    "owningEntity": "DMTF",
922    "release": "2018.3",
923    "title": "#AttributeRegistry.v1_3_9.AttributeRegistry"
924}