Home Assistant Unofficial Reference 2024.12.1
schema.py
Go to the documentation of this file.
1 """Shared schema code."""
2 
3 import voluptuous as vol
4 
5 from ..const import CONF_SCHEMA
6 
7 MQTT_LIGHT_SCHEMA_SCHEMA = vol.Schema(
8  {
9  vol.Optional(CONF_SCHEMA, default="basic"): vol.All(
10  vol.Lower, vol.Any("basic", "json", "template")
11  )
12  }
13 )