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