1{
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    }
15}