-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathlmacPackage.json
More file actions
37 lines (37 loc) · 1.07 KB
/
lmacPackage.json
File metadata and controls
37 lines (37 loc) · 1.07 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
{
"$schema": "http://json-schema.org/draft-07/schema#",
"$id": "http://www.lavishsoft.com/schema/lmacPackage.json",
"description": "An LMAC Package",
"type": "object",
"properties": {
"taskLibraries": {
"type": "object",
"title": "Task Libraries",
"description": "A set of Task Libraries to find/create and add specified Tasks to.",
"additionalProperties": {
"type": "object",
"title": "Task Library",
"description": "A Task Library (which may or may not already exist) to fill with Tasks",
"additionalProperties": {
"allOf": [{
"$ref": "http://www.lavishsoft.com/schema/lmacTask.json"
}],
"type": "object",
"title": "Task",
"description": "An LMAC Task"
}
}
},
"taskTypes": {
"items": {
"allOf": [{
"$ref": "http://www.lavishsoft.com/schema/lmacTaskType.json"
}],
"type": "object",
"title": "Task Type",
"description": "An LMAC Task Type"
},
"type": "array"
}
}
}