Add missing OCPP 1.6 command payload OCA JSON schemas
[e-mobility-charging-stations-simulator.git] / src / assets / json-schemas / ocpp / 1.6 / GetConfigurationResponse.json
1 {
2 "$schema": "http://json-schema.org/draft-07/schema#",
3 "$id": "urn:OCPP:1.6:2019:12:GetConfigurationResponse",
4 "title": "GetConfigurationResponse",
5 "type": "object",
6 "properties": {
7 "configurationKey": {
8 "type": "array",
9 "items": {
10 "type": "object",
11 "properties": {
12 "key": {
13 "type": "string",
14 "maxLength": 50
15 },
16 "readonly": {
17 "type": "boolean"
18 },
19 "value": {
20 "type": "string",
21 "maxLength": 500
22 }
23 },
24 "additionalProperties": false,
25 "required": ["key", "readonly"]
26 }
27 },
28 "unknownKey": {
29 "type": "array",
30 "items": {
31 "type": "string",
32 "maxLength": 50
33 }
34 }
35 },
36 "additionalProperties": false
37 }