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