forked from SchemaStore/schemastore
-
Notifications
You must be signed in to change notification settings - Fork 0
/
apple-app-site-association.json
47 lines (47 loc) · 1.37 KB
/
apple-app-site-association.json
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
{
"$schema": "http://json-schema.org/draft-04/schema#",
"description": "An Apple Universal Link config schema",
"id": "https://json.schemastore.org/apple-app-site-association.json",
"properties": {
"applinks": {
"title": "application links",
"description": "Application links",
"type": "object",
"required": ["apps", "details"],
"properties": {
"apps": {
"description": "Applications",
"type": "array",
"enum": [[]]
},
"details": {
"description": "Details",
"type": "array",
"items": {
"title": "detail",
"description": "A detail",
"type": "object",
"properties": {
"appID": {
"description": "An appID key or app ID prefix, followed by the bundle ID",
"type": "string"
},
"paths": {
"description": "Paths",
"type": "array",
"uniqueItems": true,
"items": {
"description": "Path to open in the mobile app",
"$ref": "https://json.schemastore.org/base-04.json#/definitions/path"
}
}
}
}
}
}
}
},
"required": ["applinks"],
"title": "Apple Universal Link config",
"type": "object"
}