GetConfigurationResponse.json 1.1 KB

12345678910111213141516171819202122232425262728293031323334353637383940
  1. {
  2. "$schema": "http://json-schema.org/draft-04/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": [
  26. "key",
  27. "readonly"
  28. ]
  29. }
  30. },
  31. "unknownKey": {
  32. "type": "array",
  33. "items": {
  34. "type": "string",
  35. "maxLength": 50
  36. }
  37. }
  38. },
  39. "additionalProperties": false
  40. }