-
Notifications
You must be signed in to change notification settings - Fork 7
/
Project.json
47 lines (47 loc) · 1.42 KB
/
Project.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-07/schema#",
"$id": "#Project",
"description": "A software development project. Can be used for other generic projects as well but the defined properties are geared towards software development projects.",
"type": "object",
"allOf": [
{
"$ref": "#Entity"
},
{
"properties": {
"key": {
"description": "A defined project key. It is ideal for a code project to have a consistent key that matches that of issue tracking project. For example, the key for a Bitbucket project should match the key of its corresponding Jira project.",
"type": "string"
},
"productionURL": {
"description": "The Production URL",
"type": "string",
"format": "uri"
},
"stagingURL": {
"description": "The Non-Production / Staging URL",
"type": "string",
"format": "uri"
},
"devURL": {
"description": "The Development URL",
"type": "string",
"format": "uri"
},
"testURL": {
"description": "The Test URL",
"type": "string",
"format": "uri"
},
"alternateURLs": {
"description": "The additional URLs related to this application.",
"type": "array",
"items": {
"type": "string"
}
}
},
"required": []
}
]
}