1{ 2 "$schema": "https://json-schema.org/draft/2020-12/schema", 3 "$id": "cper-json-nvidia-event-data-gpu-metadata", 4 "type": "object", 5 "description": "GPU metadata context data (GPU dataFormatType=1)", 6 "additionalProperties": false, 7 "required": ["deviceId", "xid"], 8 "properties": { 9 "deviceId": { "type": "integer", "minimum": 0 }, 10 "xid": { "type": "integer", "minimum": 0 }, 11 "data": { "type": "string", "pattern": "^[A-Za-z0-9+/]*={0,2}$" } 12 } 13} 14