action enode_put_vehicles_vehicleid_smartchargingpolicy { label: "Update Vehicle Smart Charging Policy" description: "Updates the Smart Charging settings for a vehicle" provider: enode method: PUT path: "/vehicles/{vehicleId}/smart-charging-policy" encoding: json input: { type: "object" properties: { deadline: { type: "string" description: "The deadline for fully charging the vehicle. Smart charging does not work without setting a deadline. The deadline is expressed as a time on a 24h clock in UTC" } isEnabled: { type: "boolean" description: "When enabled, this vehicle's charging status may be controlled by Smart Charging." } vehicleId: { type: "string" } } required: ["vehicleId"] additionalProperties: false } output: { type: "object" additionalProperties: true } }