| 123456789101112131415161718192021222324252627 |
- {
- "$schema": "http://json-schema.org/draft-04/schema#",
- "id": "urn:OCPP:1.6:2019:12:GetCompositeScheduleRequest",
- "title": "GetCompositeScheduleRequest",
- "type": "object",
- "properties": {
- "connectorId": {
- "type": "integer"
- },
- "duration": {
- "type": "integer"
- },
- "chargingRateUnit": {
- "type": "string",
- "additionalProperties": false,
- "enum": [
- "A",
- "W"
- ]
- }
- },
- "additionalProperties": false,
- "required": [
- "connectorId",
- "duration"
- ]
- }
|