1{
2    "$id": "http://redfish.dmtf.org/schemas/v1/Triggers.v1_4_0.json",
3    "$ref": "#/definitions/Triggers",
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                }
31            },
32            "type": "object"
33        },
34        "DirectionOfCrossingEnum": {
35            "description": "The direction of crossing that corresponds to a trigger.",
36            "enum": [
37                "Increasing",
38                "Decreasing"
39            ],
40            "enumDescriptions": {
41                "Decreasing": "A trigger is met when the metric value crosses the trigger value while decreasing.",
42                "Increasing": "A trigger condition is met when the metric value crosses the trigger value while increasing."
43            },
44            "longDescription": "The value shall indicate the direction of crossing that corresponds to a trigger.",
45            "type": "string"
46        },
47        "DiscreteTrigger": {
48            "additionalProperties": false,
49            "description": "The characteristics of the discrete trigger.",
50            "longDescription": "This object shall contain the characteristics of the discrete trigger.",
51            "patternProperties": {
52                "^([a-zA-Z_][a-zA-Z0-9_]*)?@(odata|Redfish|Message)\\.[a-zA-Z_][a-zA-Z0-9_]*$": {
53                    "description": "This property shall specify a valid odata or Redfish property.",
54                    "type": [
55                        "array",
56                        "boolean",
57                        "integer",
58                        "number",
59                        "null",
60                        "object",
61                        "string"
62                    ]
63                }
64            },
65            "properties": {
66                "DwellTime": {
67                    "description": "The amount of time that a trigger event persists before the metric action is performed.",
68                    "longDescription": "This property shall contain the amount of time that a trigger event persists before the `TriggerActions` are performed.",
69                    "pattern": "^P(\\d+D)?(T(\\d+H)?(\\d+M)?(\\d+(.\\d+)?S)?)?$",
70                    "readonly": false,
71                    "type": [
72                        "string",
73                        "null"
74                    ]
75                },
76                "Name": {
77                    "description": "The name of the trigger.",
78                    "longDescription": "This property shall contain a name for the trigger.",
79                    "readonly": true,
80                    "type": [
81                        "string",
82                        "null"
83                    ]
84                },
85                "Severity": {
86                    "anyOf": [
87                        {
88                            "$ref": "http://redfish.dmtf.org/schemas/v1/Resource.json#/definitions/Health"
89                        },
90                        {
91                            "type": "null"
92                        }
93                    ],
94                    "description": "The severity of the event message.",
95                    "longDescription": "This property shall contain the `Severity` property to be used in the event message.",
96                    "readonly": false
97                },
98                "Value": {
99                    "description": "The discrete metric value that constitutes a trigger event.",
100                    "longDescription": "This property shall contain the value discrete metric that constitutes a trigger event.  The `DwellTime` shall be measured from this point in time.",
101                    "readonly": false,
102                    "type": [
103                        "string",
104                        "null"
105                    ]
106                }
107            },
108            "type": "object"
109        },
110        "DiscreteTriggerConditionEnum": {
111            "description": "The condition, in relationship to the discrete trigger values, which constitutes a trigger.",
112            "enum": [
113                "Specified",
114                "Changed"
115            ],
116            "enumDescriptions": {
117                "Changed": "A discrete trigger condition is met whenever the metric value changes.",
118                "Specified": "A discrete trigger condition is met when the metric value becomes one of the values that the `DiscreteTriggers` property lists."
119            },
120            "longDescription": "This type shall specify the condition, in relationship to the discrete trigger values, which constitutes a trigger.",
121            "type": "string"
122        },
123        "Links": {
124            "additionalProperties": false,
125            "description": "The links to other resources that are related to this resource.",
126            "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.",
127            "patternProperties": {
128                "^([a-zA-Z_][a-zA-Z0-9_]*)?@(odata|Redfish|Message)\\.[a-zA-Z_][a-zA-Z0-9_]*$": {
129                    "description": "This property shall specify a valid odata or Redfish property.",
130                    "type": [
131                        "array",
132                        "boolean",
133                        "integer",
134                        "number",
135                        "null",
136                        "object",
137                        "string"
138                    ]
139                }
140            },
141            "properties": {
142                "MetricReportDefinitions": {
143                    "description": "The metric report definitions that generate new metric reports when a trigger condition is met and when the `TriggerActions` property contains `RedfishMetricReport`.",
144                    "items": {
145                        "$ref": "http://redfish.dmtf.org/schemas/v1/MetricReportDefinition.json#/definitions/MetricReportDefinition"
146                    },
147                    "longDescription": "This property shall contain a set of links to metric report definitions that generate new metric reports when a trigger condition is met and when the `TriggerActions` property contains `RedfishMetricReport`.",
148                    "readonly": false,
149                    "type": "array",
150                    "versionAdded": "v1_1_0"
151                },
152                "MetricReportDefinitions@odata.count": {
153                    "$ref": "http://redfish.dmtf.org/schemas/v1/odata-v4.json#/definitions/count"
154                },
155                "Oem": {
156                    "$ref": "http://redfish.dmtf.org/schemas/v1/Resource.json#/definitions/Oem",
157                    "description": "The OEM extension property.",
158                    "longDescription": "This property shall contain the OEM extensions.  All values for properties contained in this object shall conform to the Redfish Specification-described requirements."
159                }
160            },
161            "type": "object"
162        },
163        "MetricTypeEnum": {
164            "description": "The type of metric for which the trigger is configured.",
165            "enum": [
166                "Numeric",
167                "Discrete"
168            ],
169            "enumDescriptions": {
170                "Discrete": "A discrete value trigger.",
171                "Numeric": "A numeric value trigger."
172            },
173            "longDescription": "This type shall specify the type of metric for which the trigger is configured.",
174            "type": "string"
175        },
176        "OemActions": {
177            "additionalProperties": true,
178            "description": "The available OEM-specific actions for this resource.",
179            "longDescription": "This type shall contain the available OEM-specific actions for this resource.",
180            "patternProperties": {
181                "^([a-zA-Z_][a-zA-Z0-9_]*)?@(odata|Redfish|Message)\\.[a-zA-Z_][a-zA-Z0-9_]*$": {
182                    "description": "This property shall specify a valid odata or Redfish property.",
183                    "type": [
184                        "array",
185                        "boolean",
186                        "integer",
187                        "number",
188                        "null",
189                        "object",
190                        "string"
191                    ]
192                }
193            },
194            "properties": {},
195            "type": "object"
196        },
197        "Threshold": {
198            "additionalProperties": false,
199            "description": "A threshold definition for a metric.",
200            "longDescription": "This type shall contain the properties for an individual threshold for this metric.",
201            "patternProperties": {
202                "^([a-zA-Z_][a-zA-Z0-9_]*)?@(odata|Redfish|Message)\\.[a-zA-Z_][a-zA-Z0-9_]*$": {
203                    "description": "This property shall specify a valid odata or Redfish property.",
204                    "type": [
205                        "array",
206                        "boolean",
207                        "integer",
208                        "number",
209                        "null",
210                        "object",
211                        "string"
212                    ]
213                }
214            },
215            "properties": {
216                "Activation": {
217                    "anyOf": [
218                        {
219                            "$ref": "#/definitions/ThresholdActivation"
220                        },
221                        {
222                            "type": "null"
223                        }
224                    ],
225                    "description": "The direction of crossing that activates this threshold.",
226                    "longDescription": "This property shall indicate the direction of crossing of the reading for this metric that activates the threshold.",
227                    "readonly": false
228                },
229                "DwellTime": {
230                    "description": "The duration the metric value must violate the threshold before the threshold is activated.",
231                    "longDescription": "This property shall indicate the duration the metric value violates the threshold before the threshold is activated.",
232                    "pattern": "^P(\\d+D)?(T(\\d+H)?(\\d+M)?(\\d+(.\\d+)?S)?)?$",
233                    "readonly": false,
234                    "type": [
235                        "string",
236                        "null"
237                    ]
238                },
239                "Reading": {
240                    "description": "The threshold value.",
241                    "longDescription": "This property shall indicate the reading for this metric that activates the threshold.  The value of the property shall use the same units as the `MetricProperties` property.",
242                    "readonly": false,
243                    "type": [
244                        "number",
245                        "null"
246                    ]
247                }
248            },
249            "type": "object"
250        },
251        "ThresholdActivation": {
252            "enum": [
253                "Increasing",
254                "Decreasing",
255                "Either",
256                "Disabled"
257            ],
258            "enumDescriptions": {
259                "Decreasing": "Value decreases below the threshold.",
260                "Disabled": "The threshold is disabled.",
261                "Either": "Value crosses the threshold in either direction.",
262                "Increasing": "Value increases above the threshold."
263            },
264            "enumLongDescriptions": {
265                "Decreasing": "This threshold is activated when the reading changes from a value higher than the threshold to a value lower than the threshold.",
266                "Disabled": "This value shall indicate the threshold is disabled and no actions shall be taken as a result of the reading crossing the threshold value.",
267                "Either": "This threshold is activated when either the `Increasing` or `Decreasing` conditions are met.",
268                "Increasing": "This threshold is activated when the reading changes from a value lower than the threshold to a value higher than the threshold."
269            },
270            "enumVersionAdded": {
271                "Disabled": "v1_3_0"
272            },
273            "type": "string"
274        },
275        "Thresholds": {
276            "additionalProperties": false,
277            "description": "The set of thresholds for a metric.",
278            "longDescription": "This type shall contain a set of thresholds for a metric.",
279            "patternProperties": {
280                "^([a-zA-Z_][a-zA-Z0-9_]*)?@(odata|Redfish|Message)\\.[a-zA-Z_][a-zA-Z0-9_]*$": {
281                    "description": "This property shall specify a valid odata or Redfish property.",
282                    "type": [
283                        "array",
284                        "boolean",
285                        "integer",
286                        "number",
287                        "null",
288                        "object",
289                        "string"
290                    ]
291                }
292            },
293            "properties": {
294                "LowerCritical": {
295                    "$ref": "#/definitions/Threshold",
296                    "description": "The value at which the reading is below normal range and requires attention.",
297                    "longDescription": "This property shall contain the value at which the `MetricProperties` property is below the normal range and may require attention.  The value of the property shall use the same units as the `MetricProperties` property."
298                },
299                "LowerWarning": {
300                    "$ref": "#/definitions/Threshold",
301                    "description": "The value at which the reading is below normal range.",
302                    "longDescription": "This property shall contain the value at which the `MetricProperties` property is below the normal range.  The value of the property shall use the same units as the `MetricProperties` property."
303                },
304                "UpperCritical": {
305                    "$ref": "#/definitions/Threshold",
306                    "description": "The value at which the reading is above normal range and requires attention.",
307                    "longDescription": "This property shall contain the value at which the `MetricProperties` property is above the normal range and may require attention.  The value of the property shall use the same units as the `MetricProperties` property."
308                },
309                "UpperWarning": {
310                    "$ref": "#/definitions/Threshold",
311                    "description": "The value at which the reading is above normal range.",
312                    "longDescription": "This property shall contain the value at which the `MetricProperties` property is above the normal range.  The value of the property shall use the same units as the `MetricProperties` property."
313                }
314            },
315            "type": "object"
316        },
317        "TriggerActionEnum": {
318            "description": "The actions to perform when a trigger condition is met.",
319            "enum": [
320                "LogToLogService",
321                "RedfishEvent",
322                "RedfishMetricReport"
323            ],
324            "enumDescriptions": {
325                "LogToLogService": "When a trigger condition is met, record in a log.",
326                "RedfishEvent": "When a trigger condition is met, the service sends an event to subscribers.",
327                "RedfishMetricReport": "When a trigger condition is met, force an update of the specified metric reports."
328            },
329            "enumLongDescriptions": {
330                "LogToLogService": "This value indicates that when a trigger condition is met, the service shall log the occurrence of the condition to the log that the `LogService` property in the telemetry service resource describes.  The message for the created log entry shall follow the guidance specified by the `TriggerActionMessage` property.",
331                "RedfishEvent": "This value indicates that when a trigger condition is met, the service shall send an event to subscribers.  The message key for the event shall follow the guidance specified by TriggerActionMessage.",
332                "RedfishMetricReport": "This value indicates that when a trigger condition is met, the service shall force the metric reports managed by the metric report definitions specified by the `MetricReportDefinitions` property to be updated, regardless of the `MetricReportDefinitionType` property value.  The actions specified in the `ReportActions` property of each `MetricReportDefinition` resource shall be performed."
333            },
334            "enumVersionAdded": {
335                "RedfishMetricReport": "v1_1_0"
336            },
337            "longDescription": "This type shall specify the actions to perform when a trigger condition is met.",
338            "type": "string"
339        },
340        "TriggerActionMessage": {
341            "description": "The message used for events or log entries when the trigger is activated.",
342            "enum": [
343                "Telemetry",
344                "DriveMediaLife",
345                "ConnectionSpeed"
346            ],
347            "enumDescriptions": {
348                "ConnectionSpeed": "`ConnectionSpeedLow` message from the Network Device Message Registry.",
349                "DriveMediaLife": "`MediaLifeLeftLow` message from the Storage Device Message Registry.",
350                "Telemetry": "Messages from the Telemetry Message Registry."
351            },
352            "enumLongDescriptions": {
353                "ConnectionSpeed": "This value shall indicate that messages generated in response to a trigger action shall utilize the `ConnectionSpeedLow` message from the Network Device Message Registry.",
354                "DriveMediaLife": "This value shall indicate that messages generated in response to a trigger action shall utilize the `MediaLifeLeftLow` message from the Storage Device Message Registry.",
355                "Telemetry": "This value shall indicate that messages generated in response to a trigger action shall utilize messages from the Telemetry Message Registry.  If this property is not supplied or supported, this value should be used as the default for this trigger."
356            },
357            "longDescription": "The value shall indicate the message used to complete the specified trigger actions.",
358            "type": "string"
359        },
360        "Triggers": {
361            "additionalProperties": false,
362            "description": "The `Triggers` schema describes a trigger condition that applies to metrics.",
363            "longDescription": "This resource shall contain a trigger condition that applies to metrics.",
364            "patternProperties": {
365                "^([a-zA-Z_][a-zA-Z0-9_]*)?@(odata|Redfish|Message)\\.[a-zA-Z_][a-zA-Z0-9_]*$": {
366                    "description": "This property shall specify a valid odata or Redfish property.",
367                    "type": [
368                        "array",
369                        "boolean",
370                        "integer",
371                        "number",
372                        "null",
373                        "object",
374                        "string"
375                    ]
376                }
377            },
378            "properties": {
379                "@odata.context": {
380                    "$ref": "http://redfish.dmtf.org/schemas/v1/odata-v4.json#/definitions/context"
381                },
382                "@odata.etag": {
383                    "$ref": "http://redfish.dmtf.org/schemas/v1/odata-v4.json#/definitions/etag"
384                },
385                "@odata.id": {
386                    "$ref": "http://redfish.dmtf.org/schemas/v1/odata-v4.json#/definitions/id"
387                },
388                "@odata.type": {
389                    "$ref": "http://redfish.dmtf.org/schemas/v1/odata-v4.json#/definitions/type"
390                },
391                "Actions": {
392                    "$ref": "#/definitions/Actions",
393                    "description": "The available actions for this resource.",
394                    "longDescription": "This property shall contain the available actions for this resource."
395                },
396                "Description": {
397                    "anyOf": [
398                        {
399                            "$ref": "http://redfish.dmtf.org/schemas/v1/Resource.json#/definitions/Description"
400                        },
401                        {
402                            "type": "null"
403                        }
404                    ],
405                    "readonly": true
406                },
407                "DiscreteTriggerCondition": {
408                    "anyOf": [
409                        {
410                            "$ref": "#/definitions/DiscreteTriggerConditionEnum"
411                        },
412                        {
413                            "type": "null"
414                        }
415                    ],
416                    "description": "The conditions for a discrete metric trigger.",
417                    "longDescription": "This property shall contain the conditions when a discrete metric triggers.",
418                    "readonly": true
419                },
420                "DiscreteTriggers": {
421                    "description": "The list of discrete triggers.",
422                    "items": {
423                        "$ref": "#/definitions/DiscreteTrigger"
424                    },
425                    "longDescription": "This property shall contain a list of values to which to compare a metric reading.  This property shall be present when the `DiscreteTriggerCondition` property is `Specified`.",
426                    "type": "array"
427                },
428                "EventTriggers": {
429                    "description": "The array of `MessageId` values that specify when a trigger condition is met based on an event.",
430                    "items": {
431                        "type": [
432                            "string",
433                            "null"
434                        ]
435                    },
436                    "longDescription": "This property shall contain an array of `MessageId` values that specify when a trigger condition is met based on an event.  When the service generates an event and if it contains a `MessageId` within this array, a trigger condition shall be met.  The `MetricType` property should not be present if this resource is configured for event-based triggers.",
437                    "pattern": "^[A-Za-z0-9]+\\.\\d+\\.\\d+\\.[A-Za-z0-9.]+$",
438                    "readonly": false,
439                    "type": "array",
440                    "versionAdded": "v1_1_0"
441                },
442                "HysteresisDuration": {
443                    "description": "The duration the metric value must not violate the threshold before the threshold is deactivated.",
444                    "longDescription": "This property shall indicate the duration the metric value no longer violates the threshold before the threshold is deactivated.  A duration of zero seconds, or if the property is not present in the resource, shall indicate the threshold is deactivated immediately once the metric value no longer violates the threshold.  The threshold shall not deactivate until the conditions of both `HysteresisReading` and `HysteresisDuration` are met.",
445                    "pattern": "^P(\\d+D)?(T(\\d+H)?(\\d+M)?(\\d+(.\\d+)?S)?)?$",
446                    "readonly": false,
447                    "type": [
448                        "string",
449                        "null"
450                    ],
451                    "versionAdded": "v1_3_0"
452                },
453                "HysteresisReading": {
454                    "description": "The reading offset from the threshold value required to clear the threshold.",
455                    "longDescription": "This property shall indicate the offset from the reading for this sensor and the threshold value that deactivates the threshold.  For example, a value of `-2` indicates the metric reading shall fall 2 units below an upper threshold value to deactivate the threshold.  The value of the property shall use the same units as the `Reading` property.  A value of `0`, or if the property is not present in the resource, shall indicate the threshold is deactivated when the metric value no longer violates the threshold.  The threshold shall not deactivate until the conditions of both `HysteresisReading` and `HysteresisDuration` are met.",
456                    "readonly": false,
457                    "type": [
458                        "number",
459                        "null"
460                    ],
461                    "versionAdded": "v1_3_0"
462                },
463                "Id": {
464                    "$ref": "http://redfish.dmtf.org/schemas/v1/Resource.json#/definitions/Id",
465                    "readonly": true
466                },
467                "Links": {
468                    "$ref": "#/definitions/Links",
469                    "description": "The links to other resources that are related to this resource.",
470                    "longDescription": "This property shall contain links to resources that are related to but are not contained by, or subordinate to, this resource.",
471                    "versionAdded": "v1_1_0"
472                },
473                "MetricIds": {
474                    "description": "The label for the metric definitions that contain the property identifiers for this trigger.  It matches the `Id` property of the corresponding metric definition.",
475                    "items": {
476                        "type": [
477                            "string",
478                            "null"
479                        ]
480                    },
481                    "longDescription": "This property shall contain the labels for the metric definitions that contain the property identifiers for this trigger.  This property shall match the value of the `Id` property of the corresponding metric definitions.",
482                    "readonly": false,
483                    "type": "array",
484                    "versionAdded": "v1_2_0"
485                },
486                "MetricProperties": {
487                    "description": "An array of URIs with wildcards and property identifiers for this trigger.  Each wildcard, a name contained by a set of curly braces, is replaced with its corresponding entry in the `Wildcard` array property.",
488                    "format": "uri-reference",
489                    "items": {
490                        "type": [
491                            "string",
492                            "null"
493                        ]
494                    },
495                    "longDescription": "This property shall contain an array of URIs with wildcards and property identifiers for this trigger.  Use a set of curly braces to delimit each wildcard in the URI.  Replace each wildcard with its corresponding entry in the `Wildcard` array property.  A URI that contains wildcards shall link to a resource property to which this trigger definition applies after all wildcards are replaced with their corresponding entries in the Wildcard property.  The property identifiers portion of the URI shall follow the RFC6901-defined JSON fragment notation rules.",
496                    "readonly": false,
497                    "type": "array"
498                },
499                "MetricType": {
500                    "anyOf": [
501                        {
502                            "$ref": "#/definitions/MetricTypeEnum"
503                        },
504                        {
505                            "type": "null"
506                        }
507                    ],
508                    "description": "The metric type of the trigger.",
509                    "longDescription": "This property shall contain the metric type of the trigger.",
510                    "readonly": true
511                },
512                "Name": {
513                    "$ref": "http://redfish.dmtf.org/schemas/v1/Resource.json#/definitions/Name",
514                    "readonly": true
515                },
516                "NumericThresholds": {
517                    "$ref": "#/definitions/Thresholds",
518                    "description": "The thresholds for a numeric metric trigger.",
519                    "longDescription": "This property shall contain the list of thresholds to which to compare a numeric metric value."
520                },
521                "Oem": {
522                    "$ref": "http://redfish.dmtf.org/schemas/v1/Resource.json#/definitions/Oem",
523                    "description": "The OEM extension property.",
524                    "longDescription": "This property shall contain the OEM extensions.  All values for properties that this object contains shall conform to the Redfish Specification-described requirements."
525                },
526                "Status": {
527                    "$ref": "http://redfish.dmtf.org/schemas/v1/Resource.json#/definitions/Status",
528                    "description": "The status and health of the resource and its subordinate or dependent resources.",
529                    "longDescription": "This property shall contain any status or health properties of the resource."
530                },
531                "TriggerActionMessage": {
532                    "anyOf": [
533                        {
534                            "$ref": "#/definitions/TriggerActionMessage"
535                        },
536                        {
537                            "type": "null"
538                        }
539                    ],
540                    "description": "The message issued as part of the trigger actions.",
541                    "longDescription": "This property shall contain the message definition used to generate a Redfish event or a log entry as requested by the values of `TriggerActions`.",
542                    "readonly": false,
543                    "versionAdded": "v1_4_0"
544                },
545                "TriggerActions": {
546                    "description": "The actions that the trigger initiates.",
547                    "items": {
548                        "$ref": "#/definitions/TriggerActionEnum"
549                    },
550                    "longDescription": "This property shall contain the actions that the trigger initiates.",
551                    "readonly": true,
552                    "type": "array"
553                },
554                "TriggerEnabled": {
555                    "description": "An indication of whether the trigger is enabled.",
556                    "longDescription": "This property shall indicate whether the trigger is enabled.  If `true`, it is enabled.  If `false`, it is disabled and none of the actions listed in `TriggerActions` will occur.",
557                    "readonly": false,
558                    "type": [
559                        "boolean",
560                        "null"
561                    ],
562                    "versionAdded": "v1_4_0"
563                },
564                "Wildcards": {
565                    "description": "The wildcards and their substitution values for the entries in the `MetricProperties` array property.",
566                    "items": {
567                        "$ref": "#/definitions/Wildcard"
568                    },
569                    "longDescription": "This property shall contain the wildcards and their substitution values for the entries in the `MetricProperties` array property.  Each wildcard shall have a corresponding entry in this array property.",
570                    "type": "array"
571                }
572            },
573            "required": [
574                "@odata.id",
575                "@odata.type",
576                "Id",
577                "Name"
578            ],
579            "type": "object"
580        },
581        "Wildcard": {
582            "additionalProperties": false,
583            "description": "The wildcard and its substitution values.",
584            "longDescription": "This property shall contain a wildcard and its substitution values.",
585            "patternProperties": {
586                "^([a-zA-Z_][a-zA-Z0-9_]*)?@(odata|Redfish|Message)\\.[a-zA-Z_][a-zA-Z0-9_]*$": {
587                    "description": "This property shall specify a valid odata or Redfish property.",
588                    "type": [
589                        "array",
590                        "boolean",
591                        "integer",
592                        "number",
593                        "null",
594                        "object",
595                        "string"
596                    ]
597                }
598            },
599            "properties": {
600                "Name": {
601                    "description": "The wildcard.",
602                    "longDescription": "This property shall contain the string used as a wildcard when contained by curly braces for a URI segment in `MetricProperties`.",
603                    "readonly": true,
604                    "type": [
605                        "string",
606                        "null"
607                    ]
608                },
609                "Values": {
610                    "description": "An array of values to substitute for the wildcard.  A single value of `*` matches all resources.",
611                    "items": {
612                        "type": [
613                            "string",
614                            "null"
615                        ]
616                    },
617                    "longDescription": "This array property shall contain the list of values to substitute for the wildcard.  A single value of `*` shall indicate that the wildcard matches any available values when substituted for a URI segment.  If this property is not present, the value shall be assumed to be `*`.",
618                    "readonly": false,
619                    "type": "array"
620                }
621            },
622            "type": "object"
623        }
624    },
625    "language": "en",
626    "owningEntity": "DMTF",
627    "release": "2024.1",
628    "title": "#Triggers.v1_4_0.Triggers"
629}