| 1234567891011121314151617181920 |
- {
- "$schema": "http://json-schema.org/draft-04/schema#",
- "id": "urn:OCPP:1.6:2019:12:ResetRequest",
- "title": "ResetRequest",
- "type": "object",
- "properties": {
- "type": {
- "type": "string",
- "additionalProperties": false,
- "enum": [
- "Hard",
- "Soft"
- ]
- }
- },
- "additionalProperties": false,
- "required": [
- "type"
- ]
- }
|