Allow null in some cases
There are several section arrays in the code that might fail to parse.
When that happens, we'd need to represent the failed section as "null"
in the json response, to make sure that we don't reindex anything, and
that the failing section is represented.
Change-Id: Ie2811b59f5110b5f4aa43918b8f6207c0f6f16ef
Signed-off-by: Ed Tanous <etanous@nvidia.com>
diff --git a/specification/json/cper-json-full-log.json b/specification/json/cper-json-full-log.json
index ac27659..9162547 100644
--- a/specification/json/cper-json-full-log.json
+++ b/specification/json/cper-json-full-log.json
@@ -12,14 +12,14 @@
"sectionDescriptors": {
"type": "array",
"items": {
- "type": "object",
+ "type": ["object", "null"],
"$ref": "./cper-json-section-descriptor.json"
}
},
"sections": {
"type": "array",
"items": {
- "type": "object",
+ "type": ["object", "null"],
"minProperties": 1,
"maxProperties": 1,
"additionalProperties": false,
diff --git a/specification/json/sections/cper-arm-processor.json b/specification/json/sections/cper-arm-processor.json
index d9e4cb1..d4df6dd 100644
--- a/specification/json/sections/cper-arm-processor.json
+++ b/specification/json/sections/cper-arm-processor.json
@@ -50,7 +50,7 @@
"errorInfo": {
"type": "array",
"items": {
- "type": "object",
+ "type": ["object", "null"],
"required": ["version", "length", "errorType"],
"additionalProperties": false,
"properties": {
diff --git a/specification/json/sections/cper-ia32x64-processor.json b/specification/json/sections/cper-ia32x64-processor.json
index ac266ed..0ca1a17 100644
--- a/specification/json/sections/cper-ia32x64-processor.json
+++ b/specification/json/sections/cper-ia32x64-processor.json
@@ -59,6 +59,7 @@
},
"checkInfo": {
"type": "object",
+ "required": [],
"additionalProperties": false,
"properties": {
"transactionType": {
@@ -124,7 +125,7 @@
"type": "array",
"description": "This is a variable size field providing the information for the processor context state such as MC Bank MSRs and general registers.",
"items": {
- "type": "object",
+ "type": ["object", "null"],
"required": [
"registerContextType",
"registerArraySize",