Lawrence Tang | 079d581 | 2022-07-12 14:15:32 +0100 | [diff] [blame] | 1 | { |
| 2 | "$id": "cper-json-error-status", |
| 3 | "$schema": "https://json-schema.org/draft/2020-12/schema", |
| 4 | "type": "object", |
John Chung | 044afd0 | 2024-05-03 19:58:02 +0800 | [diff] [blame] | 5 | "required": [ |
| 6 | "errorType", |
| 7 | "addressSignal", |
| 8 | "controlSignal", |
| 9 | "dataSignal", |
| 10 | "detectedByResponder", |
| 11 | "detectedByRequester", |
| 12 | "firstError", |
| 13 | "overflowDroppedLogs" |
| 14 | ], |
Lawrence Tang | 079d581 | 2022-07-12 14:15:32 +0100 | [diff] [blame] | 15 | "additionalProperties": false, |
| 16 | "properties": { |
| 17 | "errorType": { |
| 18 | "type": "object", |
Andrew Adriance | d9835a1 | 2024-12-05 14:41:42 -0800 | [diff] [blame] | 19 | "description": "Encoded value for the Error_Type", |
Ed Tanous | da798dc | 2025-03-14 15:27:55 -0700 | [diff] [blame] | 20 | "required": ["name", "value"], |
Ed Tanous | 7a531ff | 2025-03-14 17:06:49 -0700 | [diff] [blame] | 21 | "additionalProperties": false, |
Lawrence Tang | 079d581 | 2022-07-12 14:15:32 +0100 | [diff] [blame] | 22 | "properties": { |
| 23 | "name": { |
| 24 | "type": "string" |
| 25 | }, |
| 26 | "value": { |
| 27 | "type": "integer" |
| 28 | }, |
| 29 | "description": { |
| 30 | "type": "string" |
| 31 | } |
| 32 | } |
| 33 | }, |
| 34 | "addressSignal": { |
Andrew Adriance | d9835a1 | 2024-12-05 14:41:42 -0800 | [diff] [blame] | 35 | "type": "boolean", |
| 36 | "description": "Address: Error was detected on the address signals or on the address portion of the transaction." |
Lawrence Tang | 079d581 | 2022-07-12 14:15:32 +0100 | [diff] [blame] | 37 | }, |
| 38 | "controlSignal": { |
Andrew Adriance | d9835a1 | 2024-12-05 14:41:42 -0800 | [diff] [blame] | 39 | "type": "boolean", |
| 40 | "description": "Control: Error was detected on the control signals or in the control portion of the transaction." |
Lawrence Tang | 079d581 | 2022-07-12 14:15:32 +0100 | [diff] [blame] | 41 | }, |
| 42 | "dataSignal": { |
Andrew Adriance | d9835a1 | 2024-12-05 14:41:42 -0800 | [diff] [blame] | 43 | "type": "boolean", |
| 44 | "description": "Data: Error was detected on the data signals or in the data portion of the transaction." |
Lawrence Tang | 079d581 | 2022-07-12 14:15:32 +0100 | [diff] [blame] | 45 | }, |
| 46 | "detectedByResponder": { |
Andrew Adriance | d9835a1 | 2024-12-05 14:41:42 -0800 | [diff] [blame] | 47 | "type": "boolean", |
| 48 | "description": "Responder: Error was detected by the responder of the transaction." |
Lawrence Tang | 079d581 | 2022-07-12 14:15:32 +0100 | [diff] [blame] | 49 | }, |
| 50 | "detectedByRequester": { |
Andrew Adriance | d9835a1 | 2024-12-05 14:41:42 -0800 | [diff] [blame] | 51 | "type": "boolean", |
| 52 | "description": "Requester: Error was detected by the requester of the transaction." |
Lawrence Tang | 079d581 | 2022-07-12 14:15:32 +0100 | [diff] [blame] | 53 | }, |
| 54 | "firstError": { |
Andrew Adriance | d9835a1 | 2024-12-05 14:41:42 -0800 | [diff] [blame] | 55 | "type": "boolean", |
| 56 | "description": "First Error: If multiple errors are logged for a section type, this is the first error in the chronological sequence. Setting of this bit is optional." |
Lawrence Tang | 079d581 | 2022-07-12 14:15:32 +0100 | [diff] [blame] | 57 | }, |
| 58 | "overflowDroppedLogs": { |
Andrew Adriance | d9835a1 | 2024-12-05 14:41:42 -0800 | [diff] [blame] | 59 | "type": "boolean", |
| 60 | "description": "Overflow: Additional errors occurred and were not logged due to lack of logging resources." |
Lawrence Tang | 079d581 | 2022-07-12 14:15:32 +0100 | [diff] [blame] | 61 | } |
| 62 | } |
John Chung | 044afd0 | 2024-05-03 19:58:02 +0800 | [diff] [blame] | 63 | } |