-
Notifications
You must be signed in to change notification settings - Fork 18
Expand file tree
/
Copy pathecmofsynthesis.schema.json
More file actions
109 lines (109 loc) · 2.14 KB
/
Copy pathecmofsynthesis.schema.json
File metadata and controls
109 lines (109 loc) · 2.14 KB
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
{
"type": "object",
"required": [
"ecmofsynthesis"
],
"properties": {
"ecmofsynthesis": {
"type": "array",
"items": {
"type": "object",
"required": [
"vial_no",
"date",
"metal_salt_name",
"metal_salt_mass",
"metal_salt_mass_unit",
"linker_name",
"linker_mass",
"linker_mass_unit",
"solvent",
"temperature",
"temperature_unit",
"time",
"time_unit",
"place",
"phase_purity"
],
"properties": {
"vial_no": {
"type": "string"
},
"date": {
"type": "string"
},
"metal_salt_name": {
"type": "string"
},
"metal_salt_mass": {
"type": "integer"
},
"metal_salt_mass_unit": {
"$ref": "#/$defs/weight_unit"
},
"linker_name": {
"type": "string"
},
"linker_mass": {
"type": "integer"
},
"linker_mass_unit": {
"$ref": "#/$defs/weight_unit"
},
"solvent": {
"type": "string"
},
"temperature": {
"type": "integer"
},
"temperature_unit": {
"$ref": "#/$defs/temperature_unit"
},
"time": {
"type": "integer"
},
"time_unit": {
"$ref": "#/$defs/time_unit"
},
"place": {
"type": "string"
},
"phase_purity": {
"type": "boolean"
}
}
}
}
},
"$defs": {
"weight_unit": {
"type": "string",
"enum": [
"mg",
"g",
"kg",
"ug"
]
},
"temperature_unit": {
"type": "string",
"enum": [
"deg C",
"deg F",
"K"
]
},
"time_unit": {
"type": "string",
"enum": [
"month",
"week",
"day",
"hour",
"minute",
"second",
"millisecond"
]
}
}
}