AuthorizeResponse.json 1.1 KB

12345678910111213141516171819202122232425262728293031323334353637383940
  1. {
  2. "$schema": "http://json-schema.org/draft-04/schema#",
  3. "id": "urn:OCPP:1.6:2019:12:AuthorizeResponse",
  4. "title": "AuthorizeResponse",
  5. "type": "object",
  6. "properties": {
  7. "idTagInfo": {
  8. "type": "object",
  9. "properties": {
  10. "expiryDate": {
  11. "type": "string",
  12. "format": "date-time"
  13. },
  14. "parentIdTag": {
  15. "type": "string",
  16. "maxLength": 20
  17. },
  18. "status": {
  19. "type": "string",
  20. "additionalProperties": false,
  21. "enum": [
  22. "Accepted",
  23. "Blocked",
  24. "Expired",
  25. "Invalid",
  26. "ConcurrentTx"
  27. ]
  28. }
  29. },
  30. "additionalProperties": false,
  31. "required": [
  32. "status"
  33. ]
  34. }
  35. },
  36. "additionalProperties": false,
  37. "required": [
  38. "idTagInfo"
  39. ]
  40. }