Lawrence Tang | 079d581 | 2022-07-12 14:15:32 +0100 | [diff] [blame] | 1 | { |
| 2 | "$id": "cper-json-firmware-section", |
| 3 | "$schema": "https://json-schema.org/draft/2020-12/schema", |
| 4 | "type": "object", |
| 5 | "required": ["errorRecordType", "revision", "recordID", "recordIDGUID"], |
| 6 | "additionalProperties": false, |
| 7 | "properties": { |
| 8 | "errorRecordType": { |
| 9 | "type": "object", |
Lawrence Tang | 8a2d737 | 2022-07-12 16:44:49 +0100 | [diff] [blame] | 10 | "$ref": "./common/cper-json-nvp.json" |
Lawrence Tang | 079d581 | 2022-07-12 14:15:32 +0100 | [diff] [blame] | 11 | }, |
| 12 | "revision": { |
| 13 | "type": "integer" |
| 14 | }, |
| 15 | "recordID": { |
| 16 | "type": "integer" |
| 17 | }, |
| 18 | "recordIDGUID": { |
Lawrence Tang | 4237584 | 2022-07-19 16:25:47 +0100 | [diff] [blame] | 19 | "type": "string" |
Lawrence Tang | 079d581 | 2022-07-12 14:15:32 +0100 | [diff] [blame] | 20 | } |
| 21 | } |
| 22 | } |