1
0
mirror of https://github.com/home-assistant/core.git synced 2025-12-25 05:26:47 +00:00

Introduce Home Assistant Labs (#156840)

This commit is contained in:
Franck Nijhof
2025-11-20 21:22:37 +01:00
committed by GitHub
parent 126fd217e7
commit 482b5d49a3
22 changed files with 1832 additions and 2 deletions

View File

@@ -356,6 +356,32 @@
},
"uniqueItems": true
},
"preview_features": {
"description": "Preview features that can be enabled/disabled by users via the Labs UI.\nhttps://developers.home-assistant.io/docs/creating_integration_manifest/#preview-features",
"type": "object",
"minProperties": 1,
"additionalProperties": {
"type": "object",
"properties": {
"feedback_url": {
"description": "URL where users can provide feedback about the feature.",
"type": "string",
"format": "uri"
},
"learn_more_url": {
"description": "URL where users can learn more about the feature.",
"type": "string",
"format": "uri"
},
"report_issue_url": {
"description": "URL where users can report issues with the feature.",
"type": "string",
"format": "uri"
}
},
"additionalProperties": false
}
},
"disabled": {
"description": "The reason for the integration being disabled.",
"type": "string"