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": { |
Ed Tanous | 75a6028 | 2025-03-14 23:12:38 -0700 | [diff] [blame] | 15 | "type": ["object", "null"], |
Lawrence Tang | 617949e | 2022-08-08 14:21:42 +0100 | [diff] [blame] | 16 | "$ref": "./cper-json-section-descriptor.json" |
| 17 | } |
| 18 | }, |
| 19 | "sections": { |
| 20 | "type": "array", |
| 21 | "items": { |
Ed Tanous | 75a6028 | 2025-03-14 23:12:38 -0700 | [diff] [blame] | 22 | "type": ["object", "null"], |
Ed Tanous | 7474a74 | 2025-03-14 15:51:24 -0700 | [diff] [blame] | 23 | "minProperties": 1, |
| 24 | "maxProperties": 1, |
Aushim Nagarkatti | 1c321fa | 2025-05-19 14:55:19 -0700 | [diff] [blame] | 25 | "required": [], |
Ed Tanous | 7474a74 | 2025-03-14 15:51:24 -0700 | [diff] [blame] | 26 | "additionalProperties": false, |
| 27 | "properties": { |
| 28 | "GenericProcessor": { |
| 29 | "$ref": "./sections/cper-generic-processor.json" |
Ed Tanous | b07061a | 2024-09-22 10:33:29 -0700 | [diff] [blame] | 30 | }, |
Ed Tanous | 7474a74 | 2025-03-14 15:51:24 -0700 | [diff] [blame] | 31 | "Ia32x64Processor": { |
| 32 | "$ref": "./sections/cper-ia32x64-processor.json" |
Ed Tanous | b07061a | 2024-09-22 10:33:29 -0700 | [diff] [blame] | 33 | }, |
Ed Tanous | 7474a74 | 2025-03-14 15:51:24 -0700 | [diff] [blame] | 34 | "ArmProcessor": { |
| 35 | "$ref": "./sections/cper-arm-processor.json" |
Ed Tanous | b07061a | 2024-09-22 10:33:29 -0700 | [diff] [blame] | 36 | }, |
Ed Tanous | 7474a74 | 2025-03-14 15:51:24 -0700 | [diff] [blame] | 37 | "Memory": { |
| 38 | "$ref": "./sections/cper-memory.json" |
Ed Tanous | b07061a | 2024-09-22 10:33:29 -0700 | [diff] [blame] | 39 | }, |
Ed Tanous | 7474a74 | 2025-03-14 15:51:24 -0700 | [diff] [blame] | 40 | "Memory2": { |
| 41 | "$ref": "./sections/cper-memory2.json" |
Ed Tanous | b07061a | 2024-09-22 10:33:29 -0700 | [diff] [blame] | 42 | }, |
Ed Tanous | 7474a74 | 2025-03-14 15:51:24 -0700 | [diff] [blame] | 43 | "Pcie": { |
| 44 | "$ref": "./sections/cper-pcie.json" |
Ed Tanous | b07061a | 2024-09-22 10:33:29 -0700 | [diff] [blame] | 45 | }, |
Ed Tanous | 7474a74 | 2025-03-14 15:51:24 -0700 | [diff] [blame] | 46 | "PciBus": { |
| 47 | "$ref": "./sections/cper-pci-bus.json" |
Ed Tanous | b07061a | 2024-09-22 10:33:29 -0700 | [diff] [blame] | 48 | }, |
Ed Tanous | 7474a74 | 2025-03-14 15:51:24 -0700 | [diff] [blame] | 49 | "PciComponent": { |
| 50 | "$ref": "./sections/cper-pci-component.json" |
Ed Tanous | b07061a | 2024-09-22 10:33:29 -0700 | [diff] [blame] | 51 | }, |
Ed Tanous | 7474a74 | 2025-03-14 15:51:24 -0700 | [diff] [blame] | 52 | "Firmware": { |
| 53 | "$ref": "./sections/cper-firmware.json" |
Ed Tanous | b07061a | 2024-09-22 10:33:29 -0700 | [diff] [blame] | 54 | }, |
Ed Tanous | 7474a74 | 2025-03-14 15:51:24 -0700 | [diff] [blame] | 55 | "GenericDmar": { |
| 56 | "$ref": "./sections/cper-generic-dmar.json" |
Ed Tanous | b07061a | 2024-09-22 10:33:29 -0700 | [diff] [blame] | 57 | }, |
Ed Tanous | 7474a74 | 2025-03-14 15:51:24 -0700 | [diff] [blame] | 58 | "VtdDmar": { |
| 59 | "$ref": "./sections/cper-vtd-dmar.json" |
Ed Tanous | b07061a | 2024-09-22 10:33:29 -0700 | [diff] [blame] | 60 | }, |
Ed Tanous | 7474a74 | 2025-03-14 15:51:24 -0700 | [diff] [blame] | 61 | "IommuDmar": { |
| 62 | "$ref": "./sections/cper-iommu-dmar.json" |
Ed Tanous | b07061a | 2024-09-22 10:33:29 -0700 | [diff] [blame] | 63 | }, |
Ed Tanous | 7474a74 | 2025-03-14 15:51:24 -0700 | [diff] [blame] | 64 | "CcixPer": { |
| 65 | "$ref": "./sections/cper-ccix-per.json" |
Ed Tanous | b07061a | 2024-09-22 10:33:29 -0700 | [diff] [blame] | 66 | }, |
Ed Tanous | 7474a74 | 2025-03-14 15:51:24 -0700 | [diff] [blame] | 67 | "CxlProtocol": { |
| 68 | "$ref": "./sections/cper-cxl-protocol.json" |
Ed Tanous | b07061a | 2024-09-22 10:33:29 -0700 | [diff] [blame] | 69 | }, |
Ed Tanous | 7474a74 | 2025-03-14 15:51:24 -0700 | [diff] [blame] | 70 | "CxlComponent": { |
| 71 | "$ref": "./sections/cper-cxl-component.json" |
Ed Tanous | b07061a | 2024-09-22 10:33:29 -0700 | [diff] [blame] | 72 | }, |
Ed Tanous | 7474a74 | 2025-03-14 15:51:24 -0700 | [diff] [blame] | 73 | "Nvidia": { |
| 74 | "$ref": "./sections/cper-nvidia.json" |
Ed Tanous | b07061a | 2024-09-22 10:33:29 -0700 | [diff] [blame] | 75 | }, |
Ed Tanous | 7474a74 | 2025-03-14 15:51:24 -0700 | [diff] [blame] | 76 | "Ampere": { |
| 77 | "$ref": "./sections/cper-ampere.json" |
Ed Tanous | b07061a | 2024-09-22 10:33:29 -0700 | [diff] [blame] | 78 | }, |
Ed Tanous | 7474a74 | 2025-03-14 15:51:24 -0700 | [diff] [blame] | 79 | "Unknown": { |
| 80 | "$ref": "./sections/cper-unknown.json" |
Ed Tanous | b07061a | 2024-09-22 10:33:29 -0700 | [diff] [blame] | 81 | } |
Ed Tanous | 7474a74 | 2025-03-14 15:51:24 -0700 | [diff] [blame] | 82 | } |
Lawrence Tang | 617949e | 2022-08-08 14:21:42 +0100 | [diff] [blame] | 83 | } |
| 84 | } |
| 85 | } |
John Chung | 044afd0 | 2024-05-03 19:58:02 +0800 | [diff] [blame] | 86 | } |