integration-input_select.json•2.18 kB
{
"anyOf": [
{ "$ref": "#/definitions/Schema" },
{ "$ref": "#/definitions/Item" }
],
"definitions": {
"Schema": {
"type": "object",
"additionalProperties": {
"anyOf": [
{ "type": "string", "pattern": "^!include_dir_named .*$" },
{ "type": "string", "pattern": "^!include_dir_named\r.*$" },
{ "type": "string", "pattern": "^!include_dir_named\n.*$" },
{ "type": "string", "pattern": "^!include_dir_named\t.*$" },
{ "type": "string", "pattern": "^!include_dir_named\f.*$" },
{ "type": "string", "pattern": "^!include_dir_named\u000b.*$" },
{ "type": "string", "pattern": "^!include_dir_merge_named .*$" },
{ "type": "string", "pattern": "^!include_dir_merge_named\r.*$" },
{ "type": "string", "pattern": "^!include_dir_merge_named\n.*$" },
{ "type": "string", "pattern": "^!include_dir_merge_named\t.*$" },
{ "type": "string", "pattern": "^!include_dir_merge_named\f.*$" },
{ "type": "string", "pattern": "^!include_dir_merge_named\u000b.*$" },
{ "$ref": "#/definitions/Item" },
{ "type": "null" }
]
}
},
"Item": {
"type": "object",
"properties": {
"icon": {
"description": "The icon that shows in the frontend.\nhttps://www.home-assistant.io/integrations/input_select/#icon",
"type": "string"
},
"initial": {
"description": "Initial value when Home Assistant starts.\nhttps://www.home-assistant.io/integrations/input_select/#initial",
"type": "string"
},
"name": {
"description": "Name of the input select.\nhttps://www.home-assistant.io/integrations/input_select/#name",
"type": "string"
},
"options": {
"description": "List of options to choose from.\nhttps://www.home-assistant.io/integrations/input_select#options",
"type": "array",
"items": { "type": "string" }
}
},
"additionalProperties": false,
"required": ["options"]
}
},
"$schema": "http://json-schema.org/draft-07/schema#"
}