-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmeasurement.json
39 lines (39 loc) · 1.02 KB
/
measurement.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
{
"bsonType": "object",
"additionalProperties": false,
"required": ["_id", "uuid", "kind", "sampleUuid"],
"properties": {
"_id": { "bsonType": "objectId" },
"uuid": { "bsonType": "string" },
"kind": { "bsonType": "string" },
"status": {
"bsonType": "array",
"items": {
"bsonType": "object",
"properties": {
"date": { "bsonType": "date" },
"kind": {
"bsonType": "string",
"enum": ["scheduled", "failed", "finished", "running"]
}
}
}
},
"instrument": {
"bsonType": "object",
"additionalProperties": true,
"required": ["name", "brand"],
"properties": {
"name": { "bsonType": "date" },
"brand": { "bsonType": "string" }
}
},
"startTime": { "bsonType": "date" },
"endTime": { "bsonType": "date" },
"content": {
"bsonType": "object",
"description": "fields required for the component to work"
},
"sampleUuid": { "bsonType": "string" }
}
}