blob: 11a32c943bd4b58c0206cdb9e6f5176b90fe37de [file] [log] [blame]
Lawrence Tang079d5812022-07-12 14:15:32 +01001{
2 "$id": "cper-json-namevaluepair",
3 "$schema": "https://json-schema.org/draft/2020-12/schema",
4 "type": "object",
Ed Tanousda798dc2025-03-14 15:27:55 -07005 "description": "CPER Name Value Pair",
Lawrence Tang079d5812022-07-12 14:15:32 +01006 "required": ["name", "value"],
7 "additionalProperties": false,
8 "properties": {
9 "name": {
10 "type": "string"
11 },
12 "value": {
13 "type": "integer"
14 }
15 }
John Chung044afd02024-05-03 19:58:02 +080016}