blob: c5e35f269a75a85f61420f65a6248bf5a6d94b70 [file] [log] [blame]
Daniel Osawa51c18132025-11-26 09:21:20 -08001{
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}