xref: /openbmc/libcper/specification/json/sections/cper-firmware.json (revision d9835a173ed9611090acc6d51493128a5e387385)
1{
2    "$schema": "https://json-schema.org/draft/2020-12/schema",
3    "type": "object",
4    "description": "Firmware Error Record Reference",
5    "required": ["errorRecordType", "revision", "recordID", "recordIDGUID"],
6    "additionalProperties": false,
7    "properties": {
8        "errorRecordType": {
9            "type": "object",
10            "description": "Identifies the type of firmware error record that is referenced by this section",
11            "$ref": "./common/cper-json-nvp.json"
12        },
13        "revision": {
14            "type": "integer",
15            "description": "Indicates the Header Revision"
16        },
17        "recordID": {
18            "type": "integer",
19            "description": "This value uniquely identifies the firmware error record referenced by this section."
20        },
21        "recordIDGUID": {
22            "type": "string",
23            "description": "This value uniquely identifies the firmware error record referenced by this section."
24        }
25    }
26}
27