1{ 2 "$schema": "https://json-schema.org/draft/2020-12/schema", 3 "$id": "cper-json-nvidia-event-data-type3", 4 "type": "object", 5 "description": "Type 3 context data (dataFormatType=3) - 64-bit value array", 6 "additionalProperties": false, 7 "required": ["valArray64"], 8 "properties": { 9 "valArray64": { 10 "type": "array", 11 "items": { 12 "type": "object", 13 "required": ["val64"], 14 "additionalProperties": false, 15 "properties": { 16 "val64": { "type": "integer", "minimum": 0 } 17 } 18 } 19 }, 20 "data": { "type": "string", "pattern": "^[A-Za-z0-9+/]*={0,2}$" } 21 } 22} 23