Authorize.json 357 B

12345678910111213141516
  1. {
  2. "$schema": "http://json-schema.org/draft-04/schema#",
  3. "id": "urn:OCPP:1.6:2019:12:AuthorizeRequest",
  4. "title": "AuthorizeRequest",
  5. "type": "object",
  6. "properties": {
  7. "idTag": {
  8. "type": "string",
  9. "maxLength": 20
  10. }
  11. },
  12. "additionalProperties": false,
  13. "required": [
  14. "idTag"
  15. ]
  16. }