Reset.json 445 B

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