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", |
| 5 | "required": ["header", "sectionDescriptors", "sections"], |
| 6 | "additionalProperties": false, |
| 7 | "properties": { |
| 8 | "header": { |
| 9 | "$ref": "./cper-json-header.json" |
| 10 | }, |
| 11 | "sectionDescriptors": { |
| 12 | "type": "array", |
| 13 | "items": { |
| 14 | "type": "object", |
| 15 | "$ref": "./cper-json-section-descriptor.json" |
| 16 | } |
| 17 | }, |
| 18 | "sections": { |
| 19 | "type": "array", |
| 20 | "items": { |
| 21 | "type": "object", |
| 22 | "oneOf": [ |
Ed Tanous | b07061a | 2024-09-22 10:33:29 -0700 | [diff] [blame] | 23 | { |
Aushim Nagarkatti | 382ad4c | 2024-09-19 13:39:04 -0700 | [diff] [blame] | 24 | "$id": "cper-json-generic-processor-section", |
Ed Tanous | b07061a | 2024-09-22 10:33:29 -0700 | [diff] [blame] | 25 | "type": "object", |
| 26 | "required": ["GenericProcessor"], |
Aushim Nagarkatti | 382ad4c | 2024-09-19 13:39:04 -0700 | [diff] [blame] | 27 | "properties": { |
| 28 | "GenericProcessor": { |
| 29 | "$ref": "./sections/cper-generic-processor.json" |
| 30 | } |
Ed Tanous | b07061a | 2024-09-22 10:33:29 -0700 | [diff] [blame] | 31 | } |
| 32 | }, |
| 33 | { |
Aushim Nagarkatti | 382ad4c | 2024-09-19 13:39:04 -0700 | [diff] [blame] | 34 | "$id": "cper-json-ia32x64-processor-section", |
Ed Tanous | b07061a | 2024-09-22 10:33:29 -0700 | [diff] [blame] | 35 | "type": "object", |
| 36 | "required": ["Ia32x64Processor"], |
Aushim Nagarkatti | 382ad4c | 2024-09-19 13:39:04 -0700 | [diff] [blame] | 37 | "properties": { |
| 38 | "Ia32x64Processor": { |
| 39 | "$ref": "./sections/cper-ia32x64-processor.json" |
| 40 | } |
Ed Tanous | b07061a | 2024-09-22 10:33:29 -0700 | [diff] [blame] | 41 | } |
| 42 | }, |
| 43 | { |
Aushim Nagarkatti | 382ad4c | 2024-09-19 13:39:04 -0700 | [diff] [blame] | 44 | "$id": "cper-json-arm-processor-section", |
Ed Tanous | b07061a | 2024-09-22 10:33:29 -0700 | [diff] [blame] | 45 | "type": "object", |
| 46 | "required": ["ArmProcessor"], |
Aushim Nagarkatti | 382ad4c | 2024-09-19 13:39:04 -0700 | [diff] [blame] | 47 | "properties": { |
| 48 | "ArmProcessor": { |
| 49 | "$ref": "./sections/cper-arm-processor.json" |
| 50 | } |
Ed Tanous | b07061a | 2024-09-22 10:33:29 -0700 | [diff] [blame] | 51 | } |
| 52 | }, |
| 53 | { |
Aushim Nagarkatti | 382ad4c | 2024-09-19 13:39:04 -0700 | [diff] [blame] | 54 | "$id": "cper-json-memory-section", |
Ed Tanous | b07061a | 2024-09-22 10:33:29 -0700 | [diff] [blame] | 55 | "type": "object", |
| 56 | "required": ["Memory"], |
Aushim Nagarkatti | 382ad4c | 2024-09-19 13:39:04 -0700 | [diff] [blame] | 57 | "properties": { |
| 58 | "Memory": { |
| 59 | "$ref": "./sections/cper-memory.json" |
| 60 | } |
Ed Tanous | b07061a | 2024-09-22 10:33:29 -0700 | [diff] [blame] | 61 | } |
| 62 | }, |
| 63 | { |
Aushim Nagarkatti | 382ad4c | 2024-09-19 13:39:04 -0700 | [diff] [blame] | 64 | "$id": "cper-json-memory2-section", |
Ed Tanous | b07061a | 2024-09-22 10:33:29 -0700 | [diff] [blame] | 65 | "type": "object", |
| 66 | "required": ["Memory2"], |
Aushim Nagarkatti | 382ad4c | 2024-09-19 13:39:04 -0700 | [diff] [blame] | 67 | "properties": { |
| 68 | "Memory2": { |
| 69 | "$ref": "./sections/cper-memory2.json" |
| 70 | } |
Ed Tanous | b07061a | 2024-09-22 10:33:29 -0700 | [diff] [blame] | 71 | } |
| 72 | }, |
| 73 | { |
Aushim Nagarkatti | 382ad4c | 2024-09-19 13:39:04 -0700 | [diff] [blame] | 74 | "$id": "cper-json-pcie-section", |
Ed Tanous | b07061a | 2024-09-22 10:33:29 -0700 | [diff] [blame] | 75 | "type": "object", |
| 76 | "required": ["Pcie"], |
Aushim Nagarkatti | 382ad4c | 2024-09-19 13:39:04 -0700 | [diff] [blame] | 77 | "properties": { |
| 78 | "Pcie": { |
| 79 | "$ref": "./sections/cper-pcie.json" |
| 80 | } |
Ed Tanous | b07061a | 2024-09-22 10:33:29 -0700 | [diff] [blame] | 81 | } |
| 82 | }, |
| 83 | { |
Aushim Nagarkatti | 382ad4c | 2024-09-19 13:39:04 -0700 | [diff] [blame] | 84 | "$id": "cper-json-pci-bus-section", |
Ed Tanous | b07061a | 2024-09-22 10:33:29 -0700 | [diff] [blame] | 85 | "type": "object", |
| 86 | "required": ["PciBus"], |
Aushim Nagarkatti | 382ad4c | 2024-09-19 13:39:04 -0700 | [diff] [blame] | 87 | "properties": { |
| 88 | "PciBus": { |
| 89 | "$ref": "./sections/cper-pci-bus.json" |
| 90 | } |
Ed Tanous | b07061a | 2024-09-22 10:33:29 -0700 | [diff] [blame] | 91 | } |
| 92 | }, |
| 93 | { |
Aushim Nagarkatti | 382ad4c | 2024-09-19 13:39:04 -0700 | [diff] [blame] | 94 | "$id": "cper-json-pci-component-section", |
Ed Tanous | b07061a | 2024-09-22 10:33:29 -0700 | [diff] [blame] | 95 | "type": "object", |
| 96 | "required": ["PciComponent"], |
Aushim Nagarkatti | 382ad4c | 2024-09-19 13:39:04 -0700 | [diff] [blame] | 97 | "properties": { |
| 98 | "PciComponent": { |
| 99 | "$ref": "./sections/cper-pci-component.json" |
| 100 | } |
Ed Tanous | b07061a | 2024-09-22 10:33:29 -0700 | [diff] [blame] | 101 | } |
| 102 | }, |
| 103 | { |
Aushim Nagarkatti | 382ad4c | 2024-09-19 13:39:04 -0700 | [diff] [blame] | 104 | "$id": "cper-json-firmware-section", |
Ed Tanous | b07061a | 2024-09-22 10:33:29 -0700 | [diff] [blame] | 105 | "type": "object", |
| 106 | "required": ["Firmware"], |
Aushim Nagarkatti | 382ad4c | 2024-09-19 13:39:04 -0700 | [diff] [blame] | 107 | "properties": { |
| 108 | "Firmware": { |
| 109 | "$ref": "./sections/cper-firmware.json" |
| 110 | } |
Ed Tanous | b07061a | 2024-09-22 10:33:29 -0700 | [diff] [blame] | 111 | } |
| 112 | }, |
| 113 | { |
Aushim Nagarkatti | 382ad4c | 2024-09-19 13:39:04 -0700 | [diff] [blame] | 114 | "$id": "cper-json-generic-dmar-section", |
Ed Tanous | b07061a | 2024-09-22 10:33:29 -0700 | [diff] [blame] | 115 | "type": "object", |
| 116 | "required": ["GenericDmar"], |
Aushim Nagarkatti | 382ad4c | 2024-09-19 13:39:04 -0700 | [diff] [blame] | 117 | "properties": { |
| 118 | "GenericDmar": { |
| 119 | "$ref": "./sections/cper-generic-dmar.json" |
| 120 | } |
Ed Tanous | b07061a | 2024-09-22 10:33:29 -0700 | [diff] [blame] | 121 | } |
| 122 | }, |
| 123 | { |
Aushim Nagarkatti | 382ad4c | 2024-09-19 13:39:04 -0700 | [diff] [blame] | 124 | "$id": "cper-json-vtd-dmar-section", |
Ed Tanous | b07061a | 2024-09-22 10:33:29 -0700 | [diff] [blame] | 125 | "type": "object", |
| 126 | "required": ["VtdDmar"], |
Aushim Nagarkatti | 382ad4c | 2024-09-19 13:39:04 -0700 | [diff] [blame] | 127 | "properties": { |
| 128 | "VtdDmar": { |
| 129 | "$ref": "./sections/cper-vtd-dmar.json" |
| 130 | } |
Ed Tanous | b07061a | 2024-09-22 10:33:29 -0700 | [diff] [blame] | 131 | } |
| 132 | }, |
| 133 | { |
Aushim Nagarkatti | 382ad4c | 2024-09-19 13:39:04 -0700 | [diff] [blame] | 134 | "$id": "cper-json-iommu-dmar-section", |
Ed Tanous | b07061a | 2024-09-22 10:33:29 -0700 | [diff] [blame] | 135 | "type": "object", |
| 136 | "required": ["IommuDmar"], |
Aushim Nagarkatti | 382ad4c | 2024-09-19 13:39:04 -0700 | [diff] [blame] | 137 | "properties": { |
| 138 | "IommuDmar": { |
| 139 | "$ref": "./sections/cper-iommu-dmar.json" |
| 140 | } |
Ed Tanous | b07061a | 2024-09-22 10:33:29 -0700 | [diff] [blame] | 141 | } |
| 142 | }, |
| 143 | { |
Aushim Nagarkatti | 382ad4c | 2024-09-19 13:39:04 -0700 | [diff] [blame] | 144 | "$id": "cper-json-ccix-per-section", |
Ed Tanous | b07061a | 2024-09-22 10:33:29 -0700 | [diff] [blame] | 145 | "type": "object", |
| 146 | "required": ["CcixPer"], |
Aushim Nagarkatti | 382ad4c | 2024-09-19 13:39:04 -0700 | [diff] [blame] | 147 | "properties": { |
| 148 | "CcixPer": { |
| 149 | "$ref": "./sections/cper-ccix-per.json" |
| 150 | } |
Ed Tanous | b07061a | 2024-09-22 10:33:29 -0700 | [diff] [blame] | 151 | } |
| 152 | }, |
| 153 | { |
Aushim Nagarkatti | 382ad4c | 2024-09-19 13:39:04 -0700 | [diff] [blame] | 154 | "$id": "cper-json-cxl-protocol-section", |
Ed Tanous | b07061a | 2024-09-22 10:33:29 -0700 | [diff] [blame] | 155 | "type": "object", |
| 156 | "required": ["CxlProtocol"], |
Aushim Nagarkatti | 382ad4c | 2024-09-19 13:39:04 -0700 | [diff] [blame] | 157 | "properties": { |
| 158 | "CxlProtocol": { |
| 159 | "$ref": "./sections/cper-cxl-protocol.json" |
| 160 | } |
Ed Tanous | b07061a | 2024-09-22 10:33:29 -0700 | [diff] [blame] | 161 | } |
| 162 | }, |
| 163 | { |
Aushim Nagarkatti | 382ad4c | 2024-09-19 13:39:04 -0700 | [diff] [blame] | 164 | "$id": "cper-json-cxl-component-section", |
Ed Tanous | b07061a | 2024-09-22 10:33:29 -0700 | [diff] [blame] | 165 | "type": "object", |
| 166 | "required": ["CxlComponent"], |
Aushim Nagarkatti | 382ad4c | 2024-09-19 13:39:04 -0700 | [diff] [blame] | 167 | "properties": { |
| 168 | "CxlComponent": { |
| 169 | "$ref": "./sections/cper-cxl-component.json" |
| 170 | } |
Ed Tanous | b07061a | 2024-09-22 10:33:29 -0700 | [diff] [blame] | 171 | } |
| 172 | }, |
| 173 | { |
Aushim Nagarkatti | 382ad4c | 2024-09-19 13:39:04 -0700 | [diff] [blame] | 174 | "$id": "cper-json-nvidia-section", |
Ed Tanous | b07061a | 2024-09-22 10:33:29 -0700 | [diff] [blame] | 175 | "type": "object", |
| 176 | "required": ["Nvidia"], |
Aushim Nagarkatti | 382ad4c | 2024-09-19 13:39:04 -0700 | [diff] [blame] | 177 | "properties": { |
| 178 | "Nvidia": { |
| 179 | "$ref": "./sections/cper-nvidia.json" |
| 180 | } |
Ed Tanous | b07061a | 2024-09-22 10:33:29 -0700 | [diff] [blame] | 181 | } |
| 182 | }, |
| 183 | { |
Aushim Nagarkatti | 382ad4c | 2024-09-19 13:39:04 -0700 | [diff] [blame] | 184 | "$id": "cper-json-ampere-section", |
Ed Tanous | b07061a | 2024-09-22 10:33:29 -0700 | [diff] [blame] | 185 | "type": "object", |
| 186 | "required": ["Ampere"], |
Aushim Nagarkatti | 382ad4c | 2024-09-19 13:39:04 -0700 | [diff] [blame] | 187 | "properties": { |
| 188 | "Nvidia": { |
| 189 | "$ref": "./sections/cper-ampere.json" |
| 190 | } |
Ed Tanous | b07061a | 2024-09-22 10:33:29 -0700 | [diff] [blame] | 191 | } |
| 192 | }, |
| 193 | { |
Aushim Nagarkatti | 382ad4c | 2024-09-19 13:39:04 -0700 | [diff] [blame] | 194 | "$id": "cper-json-unknown-section", |
Ed Tanous | b07061a | 2024-09-22 10:33:29 -0700 | [diff] [blame] | 195 | "type": "object", |
| 196 | "required": ["Unknown"], |
Aushim Nagarkatti | 382ad4c | 2024-09-19 13:39:04 -0700 | [diff] [blame] | 197 | "properties": { |
| 198 | "Unknown": { |
| 199 | "$ref": "./sections/cper-unknown.json" |
| 200 | } |
Ed Tanous | b07061a | 2024-09-22 10:33:29 -0700 | [diff] [blame] | 201 | } |
| 202 | } |
Lawrence Tang | 617949e | 2022-08-08 14:21:42 +0100 | [diff] [blame] | 203 | ] |
| 204 | } |
| 205 | } |
| 206 | } |
John Chung | 044afd0 | 2024-05-03 19:58:02 +0800 | [diff] [blame] | 207 | } |