ChangeConfiguration.json 479 B

123456789101112131415161718192021
  1. {
  2. "$schema": "http://json-schema.org/draft-04/schema#",
  3. "id": "urn:OCPP:1.6:2019:12:ChangeConfigurationRequest",
  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": [
  18. "key",
  19. "value"
  20. ]
  21. }