SendLocalListResponse.json 540 B

12345678910111213141516171819202122
  1. {
  2. "$schema": "http://json-schema.org/draft-04/schema#",
  3. "id": "urn:OCPP:1.6:2019:12:SendLocalListResponse",
  4. "title": "SendLocalListResponse",
  5. "type": "object",
  6. "properties": {
  7. "status": {
  8. "type": "string",
  9. "additionalProperties": false,
  10. "enum": [
  11. "Accepted",
  12. "Failed",
  13. "NotSupported",
  14. "VersionMismatch"
  15. ]
  16. }
  17. },
  18. "additionalProperties": false,
  19. "required": [
  20. "status"
  21. ]
  22. }