xref: /openbmc/libcper/specification/json/sections/cper-firmware.json (revision d9835a173ed9611090acc6d51493128a5e387385)
1079d581eSLawrence Tang{
2079d581eSLawrence Tang    "$schema": "https://json-schema.org/draft/2020-12/schema",
3079d581eSLawrence Tang    "type": "object",
4*d9835a17SAndrew Adriance    "description": "Firmware Error Record Reference",
5079d581eSLawrence Tang    "required": ["errorRecordType", "revision", "recordID", "recordIDGUID"],
6079d581eSLawrence Tang    "additionalProperties": false,
7079d581eSLawrence Tang    "properties": {
8079d581eSLawrence Tang        "errorRecordType": {
9079d581eSLawrence Tang            "type": "object",
10*d9835a17SAndrew Adriance            "description": "Identifies the type of firmware error record that is referenced by this section",
118a2d737cSLawrence Tang            "$ref": "./common/cper-json-nvp.json"
12079d581eSLawrence Tang        },
13079d581eSLawrence Tang        "revision": {
14*d9835a17SAndrew Adriance            "type": "integer",
15*d9835a17SAndrew Adriance            "description": "Indicates the Header Revision"
16079d581eSLawrence Tang        },
17079d581eSLawrence Tang        "recordID": {
18*d9835a17SAndrew Adriance            "type": "integer",
19*d9835a17SAndrew Adriance            "description": "This value uniquely identifies the firmware error record referenced by this section."
20079d581eSLawrence Tang        },
21079d581eSLawrence Tang        "recordIDGUID": {
22*d9835a17SAndrew Adriance            "type": "string",
23*d9835a17SAndrew Adriance            "description": "This value uniquely identifies the firmware error record referenced by this section."
24079d581eSLawrence Tang        }
25079d581eSLawrence Tang    }
26079d581eSLawrence Tang}
27