-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathapplication-schema.json
More file actions
42 lines (42 loc) · 1.16 KB
/
application-schema.json
File metadata and controls
42 lines (42 loc) · 1.16 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
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "https://raw.githubusercontent.com/camptocamp/github-app-geo-project/github_app_geo_project/application-schema.json",
"type": "object",
"title": "GitHub application project configuration",
"additionalProperties": false,
"properties": {
"title": {
"type": "string",
"title": "Title",
"description": "The title of the project"
},
"description": {
"type": "string",
"title": "Description",
"description": "The description of the project"
},
"documentation-url": {
"type": "string",
"title": "Documentation URL",
"description": "The URL of the documentation"
},
"start-url": {
"type": "string",
"title": "Start URL",
"description": "The URL of the start page"
},
"default-profile": {
"type": "string",
"title": "Default profile",
"description": "The profile name used by default"
},
"profiles": {
"type": "object",
"title": "Profiles",
"description": "The profiles configuration",
"additionalProperties": {
"type": "object"
}
}
}
}