alexandria/alexandria/model/redfish/0.96/Event.0.96.0.json

152 lines
7.3 KiB
JSON

{
"$schema": "http://schemas.dmtf.org/redfish/v1/redfish-schema.0.96.0",
"title": "Event.0.96.0",
"type": "object",
"additionalProperties": false,
"properties": {
"@odata.context": {
"$ref": "odata.4.0.0.json#context"
},
"@odata.id": {
"$ref": "odata.4.0.0.json#id"
},
"@odata.type": {
"$ref": "odata.4.0.0.json#type"
},
"Oem": {
"$ref": "Resource.0.96.0.json#Oem",
"description": "This is the manufacturer/provider specific extension moniker used to divide the Oem object into sections.",
"longDescription": "The value of this string shall be of the format for the reserved word *Oem*."
},
"Id": {
"$ref": "Resource.0.96.0.json#Id"
},
"Description": {
"$ref": "Resource.0.96.0.json#Description"
},
"Name": {
"$ref": "Resource.0.96.0.json#Name"
},
"Events": {
"type": "array",
"items": {
"$ref": "#/definitions/EventRecord"
},
"description": "Each event in this array has a set of properties that describe the event. Since this is an array, more than one event can be sent simultaneously."
}
},
"required": [
"Events"
],
"description": "This is the schema definition for Events. It represents the properties for the events themselves and not subscriptions or any other resource.",
"longDescription": "This resource shall be used to represent an event for a Redfish implementation.",
"#definitions": {
"EventRecord":{
"type": "object",
"additionalProperties": false,
"properties": {
"@odata.context": {
"$ref": "odata.4.0.0.json#context"
},
"@odata.id": {
"$ref": "odata.4.0.0.json#id"
},
"@odata.type": {
"$ref": "odata.4.0.0.json#type"
},
"Oem": {
"$ref": "Resource.0.96.0.json#Oem",
"description": "This is the manufacturer/provider specific extension moniker used to divide the Oem object into sections.",
"longDescription": "The value of this string shall be of the format for the reserved word *Oem*."
},
"MemberId": {
"type": "string",
"description": "This is the identifier for the member within the collection.",
"longDescription": "The value of this string shall uniquely identify the member within the collection."
},
"EventType": {
"type": "string",
"enum": [
"StatusChange",
"ResourceUpdated",
"ResourceAdded",
"ResourceRemoved",
"Alert"
],
"enumDescriptions": {
"StatusChange": "The status of this resource has changed",
"ResourceUpdated": "The value of this resource has been updated",
"ResourceAdded": "A resource has been added",
"ResourceRemoved": "A resource has been removed",
"Alert": "A condition exists which requires attention"
},
"readonly": true,
"description": "This indicates the type of event sent, according to the definitions in the EventService.",
"longDescription": "The value of this property shall indicate the type of event as defined in the EventService schema."
},
"EventID": {
"type": "string",
"readonly": true,
"description": "This is a unique instance identifier of an event.",
"longDescription": "The value of this property shall indicate a unique identifier for the event, the format of which is implementation dependent."
},
"EventTimestamp": {
"type": "string",
"readonly": true,
"description": "This is time the event occurred.",
"longDescription": "The value of this property shall indicate the time the event occurred where the value shall be consistent with the Redfish service time that is also used for the values of the Modified property."
},
"Severity": {
"type": "string",
"readonly": true,
"description": "This is the severity of the event.",
"longDescription": "The value of this property shall be the severity of the event, as defined in the Status section of the Redfish specificaiton."
},
"Message": {
"type": "string",
"readonly": true,
"description": "This is the human readable message, if provided.",
"longDescription": "This property shall contain an optional human readable message."
},
"MessageId": {
"type": "string",
"readonly": true,
"description": "This is the key for this message which can be used to look up the message in a message registry.",
"longDescription": "This property shall be a key into message registry as described in the Redfish specification.",
"pattern": "^[A-Za-z0-9]+\\.\\d+\\.\\d+.[A-Za-z0-9.]+$"
},
"MessageArgs": {
"type": "array",
"items": {
"type": "string"
},
"readonly": true,
"description": "This array of message arguments are substituted for the arguments in the message when looked up in the message registry.",
"longDescription": "This property has the same semantics as the MessageArgs property in the Event schema for Redfish."
},
"Context": {
"type": "string",
"readonly": true,
"description": "A context can be supplied at subscription time. This property is the context value supplied by the subscriber.",
"longDescription": "This property shall contain a client supplied context for the ListnerDestination to which this event is being sent."
},
"OriginOfCondition": {
"type": "object",
"properties": {
"@odata.id" :{
"$ref": "odata.4.0.0.json#Id"
}
},
"readonly": true,
"description": "This indicates the resource that originated the condition that caused the event to be generated.",
"longDescription": "The value of this property shall contain the URI of the resource that caused the event to be generated."
}
},
"required": [
"EventType",
"MessageId"
]
}
}
}