blob: ac27659f0b4d8b21a3bee3c74d676298694e544a [file] [log] [blame]
{
"$id": "cper-json-full-log",
"$schema": "https://json-schema.org/draft/2020-12/schema",
"type": "object",
"description": "A Common Platform Error Record as defined in UEFI Specification Appendix N represented as JSON.",
"required": ["header", "sectionDescriptors", "sections"],
"additionalProperties": false,
"properties": {
"header": {
"$ref": "./cper-json-header.json"
},
"sectionDescriptors": {
"type": "array",
"items": {
"type": "object",
"$ref": "./cper-json-section-descriptor.json"
}
},
"sections": {
"type": "array",
"items": {
"type": "object",
"minProperties": 1,
"maxProperties": 1,
"additionalProperties": false,
"properties": {
"GenericProcessor": {
"$ref": "./sections/cper-generic-processor.json"
},
"Ia32x64Processor": {
"$ref": "./sections/cper-ia32x64-processor.json"
},
"ArmProcessor": {
"$ref": "./sections/cper-arm-processor.json"
},
"Memory": {
"$ref": "./sections/cper-memory.json"
},
"Memory2": {
"$ref": "./sections/cper-memory2.json"
},
"Pcie": {
"$ref": "./sections/cper-pcie.json"
},
"PciBus": {
"$ref": "./sections/cper-pci-bus.json"
},
"PciComponent": {
"$ref": "./sections/cper-pci-component.json"
},
"Firmware": {
"$ref": "./sections/cper-firmware.json"
},
"GenericDmar": {
"$ref": "./sections/cper-generic-dmar.json"
},
"VtdDmar": {
"$ref": "./sections/cper-vtd-dmar.json"
},
"IommuDmar": {
"$ref": "./sections/cper-iommu-dmar.json"
},
"CcixPer": {
"$ref": "./sections/cper-ccix-per.json"
},
"CxlProtocol": {
"$ref": "./sections/cper-cxl-protocol.json"
},
"CxlComponent": {
"$ref": "./sections/cper-cxl-component.json"
},
"Nvidia": {
"$ref": "./sections/cper-nvidia.json"
},
"Ampere": {
"$ref": "./sections/cper-ampere.json"
},
"Unknown": {
"$ref": "./sections/cper-unknown.json"
}
}
}
}
}
}