Change Availability +++++++++++++++++++ .. admonition:: Description. :class: seealso Signal the change of availability of an EVSE. .. jsonschema:: ../../../schemas/ChangeAvailabilityRequest.json :hide_key: /**/additionalProperties Example:: { "id": "86bfba63-a44f-40cc-8b4b-dc4c9d771e52", "name": "change_availability", "type": "request", "data": { "operational_status": "inoperative", # or operative "evse_id": "DE*SEV*E123456789", # Optional "connector_id": 1 # Optional }, } ---------- .. jsonschema:: ../../../schemas/ChangeAvailabilityResponse.json :hide_key: /**/additionalProperties Example:: { "id": "86bfba63-a44f-40cc-8b4b-dc4c9d771e52", "name": "change_availability", "type": "response", "data": { "status": "accepted" }, } ---------- .. jsonschema:: ../../../schemas/ChangeAvailabilityUpdate.json :hide_key: /**/additionalProperties Signal the change of availability of the charging station, an individual evse (and corresponding connectors) or a connector. When the evse_id is not provided, the change applies to the whole charging station. When the connector_id is not provided, the change applies to the whole evse. Any ongoing transaction will be stopped by setting the operational_status to inoperative. Example:: { "id": "86bfba63-a44f-40cc-8b4b-dc4c9d771e52", "name": "change_availability", "type": "update", "data": { "operational_status": "inoperative", # or operative "evse_id": "DE*SEV*E123456789", # Optional "connector_id": 1 # Optional }, }