-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathexperiment.json
47 lines (47 loc) · 1.15 KB
/
experiment.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
{
"bsonType": "object",
"additionalProperties": false,
"required": ["_id", "uuid", "users", "title", "date"],
"properties": {
"_id": { "bsonType": "objectId" },
"uuid": { "bsonType": "string" },
"owners": {
"bsonType": "array",
"items": { "bsonType": "string" }
},
"tags": {
"bsonType": "array",
"items": { "bsonType": "string" }
},
"title": { "bsonType": "string" },
"description": { "bsonType": "string" },
"creationDate": { "bsonType": "date" },
"updateDate": { "bsonType": "date" },
"status": {
"bsonType": "array",
"items": {
"bsonType": "object",
"properties": {
"kind": { "bsonType": "string" },
"date": { "bsonType": "date" }
}
}
},
"meta": { "bsonType": "object" },
"input": {
"bsonType": "array",
"items": { "bsonType": "string" }
},
"output": {
"bsonType": "array",
"items": { "bsonType": "string" }
},
"components": {
"bsonType": "array",
"items": {
"bsonType": "object",
"description": "Elements describing the experiment"
}
}
}
}