-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtableschema.json
99 lines (99 loc) · 2.33 KB
/
tableschema.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
{
"fields": [
{
"name": "run_id",
"type": "int",
"description": "Identifier number of run"
},
{
"name": "segment_id",
"type": "int",
"description": "Identification number of segment of run"
},
{
"name": "run_description",
"type": "string",
"description": "Text description of run"
},
{
"name": "segment_description",
"type": "string",
"description": "Text description of segment"
},
{
"name": "adsorbent",
"type": "string",
"description": "Name of the adsorbent material"
},
{
"name": "adsorbent_mass",
"type": "float",
"description": "Adsorbent mass"
},
{
"name": "adsorbent_mass_units",
"type": "string",
"description": "Units of adsorbent mass"
},
{
"name": "adsorbate",
"type": "string",
"description": "Name of the adsorbate"
},
{
"name": "adsorbate_mass",
"type": "float",
"description": "Molecular weight of adsorbate"
},
{
"name": "adsorbate_mass_units",
"type": "float",
"description": "Units of molecular weight of adsorbate"
},
{
"name": "temperature_units",
"type": "string",
"description": "Units of temperature measurement (K = Kelvin, C = Celsius)"
}
{
"name": "temperature",
"type": "number",
"description": "Temperature measurement"
},
{
"name": "pressure_units",
"type": "string",
"description": "Units of pressure measurements (log10(mmHg), mmHg, relative)"
},
{
"name": "adsorption_units",
"type": "string",
"description": "Units of adsorption measurement"
},
{
"name": "pressure",
"type": "number",
"description": "Pressure measurement"
},
{
"name": "adsorption",
"type": "number",
"description": "Adsorption measurement"
},
{
"name": "uncertainty",
"type": "number",
"description": "Uncertainty in final digit of adsorption measurement"
},
{
"name": "branch",
"type": "string",
"description": "Branch of Isotherm (A=Adsorption, D=Desorption)"
},
{
"name": "notes",
"type": "string",
"description": "Comments, either from original data or editorial notes"
}
]
}