xref: /openbmc/libcper/specification/json/sections/cper-nvidia-event-info-cpu.json (revision 51c1813200b42fa35d49eb0c214339ac479f090d)
1{
2    "$schema": "https://json-schema.org/draft/2020-12/schema",
3    "$id": "cper-json-nvidia-event-info-cpu",
4    "type": "object",
5    "description": "CPU-specific event information for NVIDIA events",
6    "required": [
7        "version",
8        "SocketNum",
9        "Architecture",
10        "Ecid1",
11        "Ecid2",
12        "Ecid3",
13        "Ecid4",
14        "InstanceBase"
15    ],
16    "properties": {
17        "version": {
18            "type": "integer",
19            "description": "Event info version",
20            "minimum": 0
21        },
22        "SocketNum": { "type": "integer", "minimum": 0 },
23        "Architecture": { "type": "integer", "minimum": 0 },
24        "Ecid1": { "type": "integer", "minimum": 0 },
25        "Ecid2": { "type": "integer", "minimum": 0 },
26        "Ecid3": { "type": "integer", "minimum": 0 },
27        "Ecid4": { "type": "integer", "minimum": 0 },
28        "InstanceBase": { "type": "integer", "minimum": 0 }
29    }
30}
31