| Karthik Rajagopalan | 683e055 | 2024-03-07 12:30:43 -0800 | [diff] [blame] | 1 | { |
| 2 | "$id": "cper-json-nvidia-section", | ||||
| 3 | "$schema": "https://json-schema.org/draft/2020-12/schema", | ||||
| 4 | "type": "object", | ||||
| 5 | "required": [ | ||||
| 6 | "signature", | ||||
| 7 | "errorType", | ||||
| 8 | "errorInstance", | ||||
| 9 | "severity", | ||||
| 10 | "socket", | ||||
| 11 | "numRegs", | ||||
| 12 | "instanceBase" | ||||
| 13 | ], | ||||
| 14 | "additionalProperties": false, | ||||
| 15 | "properties": { | ||||
| 16 | "signature": { | ||||
| 17 | "type": "string" | ||||
| 18 | }, | ||||
| 19 | "errorType": { | ||||
| 20 | "type": "integer" | ||||
| 21 | }, | ||||
| 22 | "errorInstance": { | ||||
| 23 | "type": "integer" | ||||
| 24 | }, | ||||
| 25 | "severity": { | ||||
| 26 | "type": "integer" | ||||
| 27 | }, | ||||
| 28 | "socket": { | ||||
| 29 | "type": "integer" | ||||
| 30 | }, | ||||
| 31 | "numberRegs": { | ||||
| 32 | "type": "integer" | ||||
| 33 | }, | ||||
| 34 | "instanceBase": { | ||||
| 35 | "type": "uint64" | ||||
| 36 | } | ||||
| 37 | } | ||||
| 38 | } | ||||