-
Notifications
You must be signed in to change notification settings - Fork 1
/
instance.json
126 lines (124 loc) · 4.44 KB
/
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
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
{
"spaces": [
{
"code": "DEMO",
"projects": [
{
"code": "TEST",
"collections": [
{
"code":"SAMPLES",
"type":"DEFAULT_COLLECTION",
"samples": [
{
"type":"GENERAL_SAMPLE",
"code":"SAMP1",
"properties":{"general_sample.name":"1", "general_sample.source": "Empa", "general_sample.state":"liquid"}
}
]
},
{
"code":"SAMPLES_PREPARATION",
"type":"DEFAULT_COLLECTION"
},
{
"code": "ICP_MS_MEASUREMENTS",
"type": "DEFAULT_COLLECTION"
}
]
}
]
}
],
"collection_types": [
{
"code":"DEFAULT_COLLECTION",
"description":"DC",
"properties": [
{
"code":"DC.DESC",
"label":"Description",
"description":"Description of collection",
"data_type":"VARCHAR"
}
]
}
],
"object_types": [
{
"code": "GENERAL_SAMPLE",
"prefix": "SAMP",
"description": "Sample",
"properties": {
"General Information": [
{
"code":"GENERAL_SAMPLE.NAME",
"label": "Sample name",
"description": "name of sample",
"data_type":"VARCHAR"
},
{
"code":"GENERAL_SAMPLE.SOURCE",
"label": "Source of the sample",
"description": "Please indicate the source of the sample if known",
"data_type":"VARCHAR"
},
{
"code":"GENERAL_SAMPLE.STATE",
"label": "Aggregate state",
"description": "Please indicate the aggregate state of the sample if known",
"data_type":"VARCHAR"
}
]
}
},
{
"code": "ICPMS",
"prefix": "ICPMS",
"properties": {
"ID":[
{
"code": "ICPMS.SAMPLE_NAME",
"label": "Sample name",
"description": "Sample name",
"data_type": "VARCHAR"
},
{
"code": "ICPMS.ACQ_TIMESTAMP",
"label": "Acquisiton_timestamp",
"description": "Timestamp of acquisition",
"data_type": "TIMESTAMP"
},
{
"code": "ICPMS.SAMPLE_TYPE",
"label": "sample_type",
"description": "Type of ICP-MS sample",
"data_type": "VARCHAR"
},
{
"code": "ICPMS.VIAL_NUMBER",
"label": "vial_number",
"description": "Vial number of sample",
"data_type": "INTEGER"
},
{
"code": "ICPMS.ACQUISTION_RESULT",
"label": "acquistion_result",
"description": "Result of acquisition",
"data_type": "VARCHAR"
},
{
"code": "ICPMS.OPERATOR",
"label": "OPERATOR",
"description": "Operator of instrument",
"data_type": "VARCHAR"
}
]
}
}
],
"roles": [
{"user":"basi", "space":"DEMO", "role":"POWER_USER", "level":"SPACE", "group":700},
{"user":"baan", "space":"DEMO", "role":"POWER_USER", "level":"SPACE"}
]
}