-
Notifications
You must be signed in to change notification settings - Fork 0
/
example_configuration.json
49 lines (49 loc) · 1.1 KB
/
example_configuration.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
48
49
{"spaces": [
{
"code": "SPACE1",
"projects": [
{
"code": "PROJ1",
"collections": [
{
"code": "COLL1",
"type": "DEFAULT_EXPERIMENT",
"samples": [
{"type":"SAMPLE1", "properties":{"sample_id":1}}
],
"properties": {"measurement_id": 1}
}
]
}
]
}
],
"properties": [
{
"code": "SAMPLE_ID",
"label": "sample_id",
"description": "Id of sample",
"data_type": "INTEGER"
},
{
"code": "MEASUREMENT_ID",
"label": "measurement_id",
"description": "Id of Measurement",
"data_type": "INTEGER"
}
],
"collection_types": [
{
"code":"DEFAULT_COLLECTION",
"description":"DC",
"properties": ["MEASUREMENT_ID"]
}
],
"object_types": [
{
"code": "SAMPLE1",
"prefix": "ICPMS_MEAS",
"properties": {"one":["SAMPLE_ID"]}
}
]
}