forked from SchemaStore/schemastore
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathapple-app-site-association.json
37 lines (37 loc) · 1.34 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
{
"$schema": "http://json-schema.org/draft-04/schema#",
"title": "Apple Universal Link, App Site Association",
"type": "object",
"properties": {
"applinks": {
"type": "object",
"properties": {
"apps": {
"enum": [[]],
"description": "Must be an empty array"
},
"details": {
"type": "array",
"items": {
"type": "object",
"properties": {
"appID": {
"type": "string",
"description": "The value of the appID key is the team ID or app ID prefix, followed by the bundle ID"
},
"paths": {
"type": "array",
"items": {
"type": "string",
"description": "Ordered list of paths to open in the mobile app. Prefix with 'NOT ' to remove a path"
}
}
}
}
}
},
"required": ["apps", "details"]
}
},
"required": ["applinks"]
}