blob: 10806a32fc559ffb753b9b4f0a1351d76244ecc3 [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-info-gpu",
4 "type": "object",
5 "description": "GPU-specific event information for NVIDIA events",
6 "required": [
7 "version",
8 "EventOriginator",
9 "SourcePartition",
10 "SourceSubPartition",
11 "Pdi"
12 ],
13 "properties": {
14 "version": {
15 "type": "integer",
16 "description": "Event info version",
17 "minimum": 0
18 },
19 "EventOriginator": { "type": "integer", "minimum": 0 },
20 "SourcePartition": { "type": "integer", "minimum": 0 },
21 "SourceSubPartition": { "type": "integer", "minimum": 0 },
22 "Pdi": { "type": "integer", "minimum": 0 }
23 }
24}