| 12345678910111213141516171819202122232425262728293031323334353637383940 |
- {
- "$schema": "http://json-schema.org/draft-04/schema#",
- "id": "urn:OCPP:1.6:2019:12:GetConfigurationResponse",
- "title": "GetConfigurationResponse",
- "type": "object",
- "properties": {
- "configurationKey": {
- "type": "array",
- "items": {
- "type": "object",
- "properties": {
- "key": {
- "type": "string",
- "maxLength": 50
- },
- "readonly": {
- "type": "boolean"
- },
- "value": {
- "type": "string",
- "maxLength": 500
- }
- },
- "additionalProperties": false,
- "required": [
- "key",
- "readonly"
- ]
- }
- },
- "unknownKey": {
- "type": "array",
- "items": {
- "type": "string",
- "maxLength": 50
- }
- }
- },
- "additionalProperties": false
- }
|