-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathschema.json
More file actions
43 lines (43 loc) · 1.14 KB
/
schema.json
File metadata and controls
43 lines (43 loc) · 1.14 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
{
"swatches": {
"type": "array",
"items": {
"type": "object",
"properties": {
"__id__": { "type": "string", "format": "uuid" },
"name": { "type": "string" },
"tasks": {
"type": "array",
"items": {
"type": "object",
"properties": {
"__id__": { "type": "string", "format": "uuid" },
"name": { "type": "string" }
}
}
},
"users": {
"type": "array",
"items": {
"type": "object",
"properties": {
"__id__": { "type": "string", "format": "uuid" },
"name": { "type": "string" }
}
}
}
}
}
},
"activities": {
"type": "array",
"items": {
"type": "object",
"properties": {
"__swatchId__": { "type": "string", "format": "uuid" },
"__userId__": { "type": "string", "format": "uuid" },
"__taskId__": { "type": "string", "format": "uuid", "required": false },
"startedAt": { "type": "date" },
"stoppedAt": { "type": "date", "required": false }
}
}