StartTransactionResponse.json 1.2 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344
  1. {
  2. "$schema": "http://json-schema.org/draft-04/schema#",
  3. "id": "urn:OCPP:1.6:2019:12:StartTransactionResponse",
  4. "title": "StartTransactionResponse",
  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. "transactionId": {
  36. "type": "integer"
  37. }
  38. },
  39. "additionalProperties": false,
  40. "required": [
  41. "idTagInfo",
  42. "transactionId"
  43. ]
  44. }