Home Assistant Unofficial Reference 2024.12.1
homeassistant.components.knx.schema.NotifySchema Class Reference
Inheritance diagram for homeassistant.components.knx.schema.NotifySchema:
[legend]
Collaboration diagram for homeassistant.components.knx.schema.NotifySchema:
[legend]

Static Public Attributes

string DEFAULT_NAME = "KNX Notify"
 
 ENTITY_SCHEMA
 
 PLATFORM = Platform.NOTIFY
 

Additional Inherited Members

- Public Member Functions inherited from homeassistant.components.knx.schema.KNXPlatformSchema
dict[vol.Optional, vol.All] platform_node (cls)
 

Detailed Description

Voluptuous schema for KNX notifications.

Definition at line 756 of file schema.py.

Member Data Documentation

◆ DEFAULT_NAME

string homeassistant.components.knx.schema.NotifySchema.DEFAULT_NAME = "KNX Notify"
static

Definition at line 761 of file schema.py.

◆ ENTITY_SCHEMA

homeassistant.components.knx.schema.NotifySchema.ENTITY_SCHEMA
static
Initial value:
= vol.Schema(
{
vol.Optional(CONF_NAME, default=DEFAULT_NAME): cv.string,
vol.Optional(CONF_TYPE, default="latin_1"): string_type_validator,
vol.Required(KNX_ADDRESS): ga_validator,
vol.Optional(CONF_ENTITY_CATEGORY): ENTITY_CATEGORIES_SCHEMA,
}
)

Definition at line 763 of file schema.py.

◆ PLATFORM

homeassistant.components.knx.schema.NotifySchema.PLATFORM = Platform.NOTIFY
static

Definition at line 759 of file schema.py.


The documentation for this class was generated from the following file: