This repository was archived by the owner on Sep 5, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 61
Expand file tree
/
Copy pathhass-integration-manifest.schema.json
More file actions
56 lines (56 loc) · 1.61 KB
/
hass-integration-manifest.schema.json
File metadata and controls
56 lines (56 loc) · 1.61 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
{
"$schema": "http://json-schema.org/draft-07/schema#",
"$id": "https://github.com/Limych/ha-average/blob/master/hass-integration-manifest.schema.json",
"title": "Home Assistant Integration Manifest",
"description": "Manifest of integration for Home Assistant smart home system",
"type": "object",
"properties": {
"domain": {
"type": "string",
"description": "The unique domain name of this integration. Cannot be changed"
},
"name": {
"type": "string",
"description": "The name of the integration"
},
"documentation": {
"type": "string",
"description": "URL of the website containing documentation on how to use that integration"
},
"requirements": {
"type": "array",
"description": "List of required Python libraries or modules for this integration",
"items": {
"type": "string"
},
"minItems": 0,
"uniqueItems": true
},
"dependencies": {
"type": "array",
"description": "List of the other Home Assistant integrations that need to Home Assistant to set up successfully prior to the integration being loaded",
"items": {
"type": "string"
},
"minItems": 0,
"uniqueItems": true
},
"codeowners": {
"type": "array",
"description": "List of GitHub usernames or team names of people that are responsible for this integration",
"items": {
"type": "string"
},
"minItems": 0,
"uniqueItems": true
}
},
"required": [
"domain",
"name",
"documentation",
"requirements",
"dependencies",
"codeowners"
]
}