Get Composite Schedule ++++++++++++++++++++++ .. admonition:: Description. :class: seealso Forwards a CSMS requests to the Charging Station to report the Composite Charging Schedule. The CompositeSchedule is the result of the calculation of all active schedules and possible local limits present in the Charging Station. The request and response defined on this page are based on OCPP 2.0.1's GetCompositeSchedule. .. jsonschema:: ../../../schemas/GetCompositeScheduleRequest.json :auto_reference: :hide_key: /**/additionalProperties Example:: { "id": "2b0aa109-21a1-4f2f-bdbd-6cdf139e7bb1", "name": "get_composite_schedule", "type": "request", "data": { "duration": 3600, "charging_rate_unit": "W", # or "A" [OPTIONAL] "evse_id": "DE*SEV*E123456789" } } ---------- .. jsonschema:: ../../../schemas/GetCompositeScheduleResponse.json :auto_reference: :hide_key: /**/additionalProperties Example:: { "id": "2b0aa109-21a1-4f2f-bdbd-6cdf139e7bb1", "name": "get_composite_schedule", "type": "response", "data": { "status": "Accepted", # or "Rejected" "schedule": { [OPTIONAL] "evse_id": "DE*SEV*E123456789", "duration": 1352, "schedule_start": "2021-11-10T14:29:37Z", "charging_rate_unit": "W", # or "A" "charging_schedule_period": [ { "start_period": 760, "limit": 80.34, "number_of_phases_available": 1, # or 2, 3 [OPTIONAL] "phase_to_use": 1, # or 2, 3 [OPTIONAL] } ] } "status_info":{ [OPTIONAL] "reason_code": "Other", "additional_info": "Any additional string" } } } --------