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