-
Notifications
You must be signed in to change notification settings - Fork 38
Expand file tree
/
Copy pathpush_flatpak_task_schema.json
More file actions
64 lines (64 loc) · 1.97 KB
/
push_flatpak_task_schema.json
File metadata and controls
64 lines (64 loc) · 1.97 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
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
{
"title": "Taskcluster Flatpak task minimal schema",
"type": "object",
"properties": {
"dependencies": {
"type": "array",
"minItems": 1,
"uniqueItems": true,
"items": {
"type": "string"
}
},
"scopes": {
"type": "array",
"uniqueItems": true,
"items": {
"type": "string"
}
},
"payload": {
"type": "object",
"properties": {
"channel": {
"type": "string"
},
"app_id": {
"type": "string"
},
"branch": {
"type": "string"
},
"upstreamArtifacts": {
"type": "array",
"items": {
"type": "object",
"properties": {
"taskType": {
"type": "string"
},
"taskId": {
"type": "string"
},
"paths": {
"type": "array",
"minItems": 1,
"uniqueItems": true,
"items": {
"type": "string"
}
}
},
"required": ["taskId", "taskType", "paths"],
"additionalProperties": false
},
"minItems": 1,
"uniqueItems": true
}
},
"required": ["upstreamArtifacts"],
"additionalProperties": false
}
},
"required": ["dependencies", "scopes", "payload"]
}