This repository has been archived by the owner on Jan 28, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathsetup-schema.json
63 lines (63 loc) · 2.11 KB
/
setup-schema.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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
{
"$schema": "http://json-schema.org",
"$id": "http://yio-remote.com/spotify.json",
"type": "object",
"title": "YIO Integration Spotify Schema",
"description": "Required data points to set up a Spotifyintegrations.",
"default": {},
"additionalProperties": true,
"required": [
"access_token",
"refresh_token",
"client_id",
"client_secret",
"entity_id"
],
"properties": {
"access_token": {
"$id": "#/properties/access_token",
"type": "string",
"title": "Access token",
"description": "Not user input. Access token generated after authenticating to Spotify.",
"default": ""
},
"refresh_token": {
"$id": "#/properties/refresh_token",
"type": "string",
"title": "Refresh token",
"description": "Not user input. Refresh token generated after authenticating to Spotify.",
"default": ""
},
"client_id": {
"$id": "#/properties/client_id",
"type": "string",
"title": "Client ID",
"description": "Client ID from the Spotify Developer page.",
"default": "",
"examples": [
"JKV1QiLCJhbGciOiJIUzI1NiJ9.eyJ1c2VyIjoiVlx1MDAxNcKbwoNUwoonbFPCu8KhwrYiLCJpYXQiO"
]
},
"client_secret": {
"$id": "#/properties/client_secret",
"type": "string",
"title": "Client Secret",
"description": "Client secret from the Spotify Developer page.",
"default": "",
"examples": [
"JKV1QiLCJhbGciOiJIUzI1NiJ9.eyJ1c2VyIjoiVlx1MDAxNcKbwoNUwoonbFPCu8KhwrYiLCJpYXQiO"
]
},
"entity_id": {
"$id": "#/properties/entity_id",
"type": "string",
"title": "The entity_id schema",
"description": "Not user input. A unique entity id.",
"default": "",
"examples": [
"spotify.spotify",
"6550f44c-7f11-11ea-bc55-0242ac130003"
]
}
}
}