blob: 0b19c15e1f85b860a197cddc2fc7399690204082 [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",
5 "required": ["name", "value"],
6 "additionalProperties": false,
7 "properties": {
8 "name": {
9 "type": "string"
10 },
11 "value": {
12 "type": "integer"
13 }
14 }
John Chung044afd02024-05-03 19:58:02 +080015}