-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathtest_instance.json
62 lines (62 loc) · 1.75 KB
/
test_instance.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
50
51
52
53
54
55
56
57
58
59
60
61
62
{
"spaces": [
{
"code": "MEASUREMENTS",
"projects": [
{
"code": "TEST",
"collections": [
{
"code": "EXP1",
"type": "DEFAULT_COLLECTION",
"samples": [
{"type":"ICP-MS-MEASUREMENT", "properties":{"sample_id":1, "gas_flow":0.1, "acq_timestamp":"2022-08-26T00:00:00Z"}}
],
"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 measurements",
"data_type": "INTEGER"
},
{
"code": "GAS_FLOW",
"label": "Gas_flow",
"description": "Gas flow",
"data_type": "REAL"
},
{
"code": "ACQ_TIMESTAMP",
"label": "Acquisiton_timestamp",
"description": "Timestamp of acquisition",
"data_type": "TIMESTAMP"
}
],
"collection_types": [
{
"code":"DEFAULT_COLLECTION",
"description":"DC",
"properties": ["MEASUREMENT_ID"]
}
],
"object_types": [
{
"code": "ICP-MS-MEASUREMENT",
"prefix": "ICPMS_MEAS",
"properties": {"one":["SAMPLE_ID", "GAS_FLOW", "ACQ_TIMESTAMP"]}
}
]
}