Files
homeassistant-core/homeassistant/components/automation/services.yaml
Franck Nijhof 24840b54ac Add yamllint (in pre-commit and CI) (#33676)
* Add yamllint (in pre-commit and CI)

* Fix linting for all YAML files

* Bump and add it to requirements

* Fix gen_requirements for pre-commit, remove 'v' from version
2020-04-05 10:33:45 +02:00

35 lines
928 B
YAML

# Describes the format for available automation services
turn_on:
description: Enable an automation.
fields:
entity_id:
description: Name of the automation to turn on.
example: "automation.notify_home"
turn_off:
description: Disable an automation.
fields:
entity_id:
description: Name of the automation to turn off.
example: "automation.notify_home"
toggle:
description: Toggle an automation.
fields:
entity_id:
description: Name of the automation to toggle on/off.
example: "automation.notify_home"
trigger:
description: Trigger the action of an automation.
fields:
entity_id:
description: Name of the automation to trigger.
example: "automation.notify_home"
skip_condition:
description: Whether or not the condition will be skipped (defaults to True).
example: true
reload:
description: Reload the automation configuration.