Lawrence Tang | 617949e | 2022-08-08 14:21:42 +0100 | [diff] [blame] | 1 | { |
Ed Tanous | b07061a | 2024-09-22 10:33:29 -0700 | [diff] [blame] | 2 | "$id": "cper-json-full-log", |
| 3 | "$schema": "https://json-schema.org/draft/2020-12/schema", |
Lawrence Tang | 617949e | 2022-08-08 14:21:42 +0100 | [diff] [blame] | 4 | "type": "object", |
Andrew Adriance | d9835a1 | 2024-12-05 14:41:42 -0800 | [diff] [blame] | 5 | "description": "A Common Platform Error Record as defined in UEFI Specification Appendix N represented as JSON.", |
Lawrence Tang | 617949e | 2022-08-08 14:21:42 +0100 | [diff] [blame] | 6 | "required": ["header", "sectionDescriptors", "sections"], |
| 7 | "additionalProperties": false, |
| 8 | "properties": { |
| 9 | "header": { |
| 10 | "$ref": "./cper-json-header.json" |
| 11 | }, |
| 12 | "sectionDescriptors": { |
| 13 | "type": "array", |
| 14 | "items": { |
| 15 | "type": "object", |
| 16 | "$ref": "./cper-json-section-descriptor.json" |
| 17 | } |
| 18 | }, |
| 19 | "sections": { |
| 20 | "type": "array", |
| 21 | "items": { |
| 22 | "type": "object", |
Ed Tanous | 7474a74 | 2025-03-14 15:51:24 -0700 | [diff] [blame] | 23 | "minProperties": 1, |
| 24 | "maxProperties": 1, |
| 25 | "additionalProperties": false, |
| 26 | "properties": { |
| 27 | "GenericProcessor": { |
| 28 | "$ref": "./sections/cper-generic-processor.json" |
Ed Tanous | b07061a | 2024-09-22 10:33:29 -0700 | [diff] [blame] | 29 | }, |
Ed Tanous | 7474a74 | 2025-03-14 15:51:24 -0700 | [diff] [blame] | 30 | "Ia32x64Processor": { |
| 31 | "$ref": "./sections/cper-ia32x64-processor.json" |
Ed Tanous | b07061a | 2024-09-22 10:33:29 -0700 | [diff] [blame] | 32 | }, |
Ed Tanous | 7474a74 | 2025-03-14 15:51:24 -0700 | [diff] [blame] | 33 | "ArmProcessor": { |
| 34 | "$ref": "./sections/cper-arm-processor.json" |
Ed Tanous | b07061a | 2024-09-22 10:33:29 -0700 | [diff] [blame] | 35 | }, |
Ed Tanous | 7474a74 | 2025-03-14 15:51:24 -0700 | [diff] [blame] | 36 | "Memory": { |
| 37 | "$ref": "./sections/cper-memory.json" |
Ed Tanous | b07061a | 2024-09-22 10:33:29 -0700 | [diff] [blame] | 38 | }, |
Ed Tanous | 7474a74 | 2025-03-14 15:51:24 -0700 | [diff] [blame] | 39 | "Memory2": { |
| 40 | "$ref": "./sections/cper-memory2.json" |
Ed Tanous | b07061a | 2024-09-22 10:33:29 -0700 | [diff] [blame] | 41 | }, |
Ed Tanous | 7474a74 | 2025-03-14 15:51:24 -0700 | [diff] [blame] | 42 | "Pcie": { |
| 43 | "$ref": "./sections/cper-pcie.json" |
Ed Tanous | b07061a | 2024-09-22 10:33:29 -0700 | [diff] [blame] | 44 | }, |
Ed Tanous | 7474a74 | 2025-03-14 15:51:24 -0700 | [diff] [blame] | 45 | "PciBus": { |
| 46 | "$ref": "./sections/cper-pci-bus.json" |
Ed Tanous | b07061a | 2024-09-22 10:33:29 -0700 | [diff] [blame] | 47 | }, |
Ed Tanous | 7474a74 | 2025-03-14 15:51:24 -0700 | [diff] [blame] | 48 | "PciComponent": { |
| 49 | "$ref": "./sections/cper-pci-component.json" |
Ed Tanous | b07061a | 2024-09-22 10:33:29 -0700 | [diff] [blame] | 50 | }, |
Ed Tanous | 7474a74 | 2025-03-14 15:51:24 -0700 | [diff] [blame] | 51 | "Firmware": { |
| 52 | "$ref": "./sections/cper-firmware.json" |
Ed Tanous | b07061a | 2024-09-22 10:33:29 -0700 | [diff] [blame] | 53 | }, |
Ed Tanous | 7474a74 | 2025-03-14 15:51:24 -0700 | [diff] [blame] | 54 | "GenericDmar": { |
| 55 | "$ref": "./sections/cper-generic-dmar.json" |
Ed Tanous | b07061a | 2024-09-22 10:33:29 -0700 | [diff] [blame] | 56 | }, |
Ed Tanous | 7474a74 | 2025-03-14 15:51:24 -0700 | [diff] [blame] | 57 | "VtdDmar": { |
| 58 | "$ref": "./sections/cper-vtd-dmar.json" |
Ed Tanous | b07061a | 2024-09-22 10:33:29 -0700 | [diff] [blame] | 59 | }, |
Ed Tanous | 7474a74 | 2025-03-14 15:51:24 -0700 | [diff] [blame] | 60 | "IommuDmar": { |
| 61 | "$ref": "./sections/cper-iommu-dmar.json" |
Ed Tanous | b07061a | 2024-09-22 10:33:29 -0700 | [diff] [blame] | 62 | }, |
Ed Tanous | 7474a74 | 2025-03-14 15:51:24 -0700 | [diff] [blame] | 63 | "CcixPer": { |
| 64 | "$ref": "./sections/cper-ccix-per.json" |
Ed Tanous | b07061a | 2024-09-22 10:33:29 -0700 | [diff] [blame] | 65 | }, |
Ed Tanous | 7474a74 | 2025-03-14 15:51:24 -0700 | [diff] [blame] | 66 | "CxlProtocol": { |
| 67 | "$ref": "./sections/cper-cxl-protocol.json" |
Ed Tanous | b07061a | 2024-09-22 10:33:29 -0700 | [diff] [blame] | 68 | }, |
Ed Tanous | 7474a74 | 2025-03-14 15:51:24 -0700 | [diff] [blame] | 69 | "CxlComponent": { |
| 70 | "$ref": "./sections/cper-cxl-component.json" |
Ed Tanous | b07061a | 2024-09-22 10:33:29 -0700 | [diff] [blame] | 71 | }, |
Ed Tanous | 7474a74 | 2025-03-14 15:51:24 -0700 | [diff] [blame] | 72 | "Nvidia": { |
| 73 | "$ref": "./sections/cper-nvidia.json" |
Ed Tanous | b07061a | 2024-09-22 10:33:29 -0700 | [diff] [blame] | 74 | }, |
Ed Tanous | 7474a74 | 2025-03-14 15:51:24 -0700 | [diff] [blame] | 75 | "Ampere": { |
| 76 | "$ref": "./sections/cper-ampere.json" |
Ed Tanous | b07061a | 2024-09-22 10:33:29 -0700 | [diff] [blame] | 77 | }, |
Ed Tanous | 7474a74 | 2025-03-14 15:51:24 -0700 | [diff] [blame] | 78 | "Unknown": { |
| 79 | "$ref": "./sections/cper-unknown.json" |
Ed Tanous | b07061a | 2024-09-22 10:33:29 -0700 | [diff] [blame] | 80 | } |
Ed Tanous | 7474a74 | 2025-03-14 15:51:24 -0700 | [diff] [blame] | 81 | } |
Lawrence Tang | 617949e | 2022-08-08 14:21:42 +0100 | [diff] [blame] | 82 | } |
| 83 | } |
| 84 | } |
John Chung | 044afd0 | 2024-05-03 19:58:02 +0800 | [diff] [blame] | 85 | } |