Migrate all JSON schemas to draft-06 or higher
[e-mobility-charging-stations-simulator.git] / src / assets / json-schemas / ocpp / 1.6 / ChangeConfiguration.json
CommitLineData
e3018bc4 1{
b0342994
JB
2 "$schema": "http://json-schema.org/draft-07/schema",
3 "$id": "urn:OCPP:1.6:2019:12:ChangeConfigurationRequest",
e3018bc4
JB
4 "title": "ChangeConfigurationRequest",
5 "type": "object",
6 "properties": {
7 "key": {
8 "type": "string",
9 "maxLength": 50
10 },
11 "value": {
12 "type": "string",
13 "maxLength": 500
14 }
15 },
16 "additionalProperties": false,
17 "required": ["key", "value"]
18}