DataTransferResponse.json 602 B

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