| Daniel Osawa | 51c1813 | 2025-11-26 09:21:20 -0800 | [diff] [blame] | 1 | { |
| 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 | } |