Newer
Older
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
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
{
"$defs": {
"MetaObject": {
"additionalProperties": true,
"description": "",
"title": "MetaObject",
"type": [
"null",
"boolean",
"object",
"number",
"string"
]
},
"Pizza": {
"additionalProperties": false,
"description": "",
"properties": {
"Base": {
"$ref": "#/$defs/PizzaBase"
},
"CountryOfOrigin": {
"type": "string"
},
"Spiciness": {
"$ref": "#/$defs/SpicinessLevel"
},
"Topping": {
"items": {
"type": "string"
},
"type": "array"
},
"title": {
"type": "string"
}
},
"title": "Pizza",
"type": "object"
},
"PizzaBase": {
"description": "",
"enum": [
"DeepPanBase",
"ThinAndCrispyBase",
"WholeWheatBase",
"StuffedCrustBase"
],
"title": "PizzaBase",
"type": "string"
},
"PizzaScientificMetadata": {
"additionalProperties": false,
"description": "The metadata associated with Pizza",
"properties": {
"Base": {
"$ref": "#/$defs/PizzaBase"
},
"CountryOfOrigin": {
"type": "string"
},
"CustomParams": {
"type": "string"
},
"Spiciness": {
"$ref": "#/$defs/SpicinessLevel"
},
"Topping": {
"items": {
"type": "string"
},
"type": "array"
},
"title": {
"type": "string"
}
},
"title": "PizzaScientificMetadata",
"type": "object"
},
"Pizzadataset": {
"additionalProperties": false,
"description": "The metadata associated with P65",
"properties": {
"accessGroups": {
"description": "Defines the group which owns the data, and therefore has unrestricted access to this data. Usually a pgroup like p12151"
},
"contactEmail": {
"description": "Email of the contact person for this dataset. The string may contain a list of emails, which should then be seperated by semicolons."
},
"creationLocation": {
"description": "Unique location identifier where data was taken, usually in the form /Site-name/facility-name/instrumentOrBeamline-name. This field is required if the dataset is a Raw dataset."
},
"creationTime": {
"description": "Time when dataset became fully available on disk, i.e. all containing files have been written. Format according to chapter 5.6 internet date/time format in RFC 3339. Local times without timezone/offset info are automatically transformed to UTC using the timezone of the API server."
},
"dataFormat": {
"description": "Defines the format of the data files in this dataset, e.g Nexus Version x.y."
},
"dataQualityMetrics": {
"description": "Data Quality Metrics is a number given by the user to rate the dataset.",
"type": "number"
},
"datasetName": {
"description": "A name for the dataset, given by the creator to carry some semantic meaning. Useful for display purposes e.g. instead of displaying the pid. Will be autofilled if missing using info from sourceFolder."
},
"description": {
"description": "Free text explanation of contents of dataset."
},
"instrumentId": {
"description": "ID of the instrument where the data was created."
},
"isPublished": {
"description": "The ID of the proposal to which the dataset belongs."
},
"keywords": {
"items": {},
"type": "array"
},
"license": {
"description": "Name of the license under which the data can be used."
},
"orcidOfOwner": {
"description": "ORCID of the owner or custodian. The string may contain a list of ORCIDs, which should then be separated by semicolons."
},
"owner": {
"description": "Owner or custodian of the dataset, usually first name + last name. The string may contain a list of persons, which should then be seperated by semicolons."
},
"ownerEmail": {
"description": "Email of the owner or custodian of the dataset. The string may contain a list of emails, which should then be seperated by semicolons."
},
"ownerGroup": {
"description": "Defines the group which owns the data, and therefore has unrestricted access to this data. Usually a pgroup like p12151"
},
"principalInvestigator": {
"description": "First name and last name of principal investigator(s). If multiple PIs are present, use a semicolon separated list. This field is required if the dataset is a Raw dataset."
},
"proposalId": {
"description": "The ID of the proposal to which the dataset belongs."
},
"scientificMetadata": {
"$ref": "#/$defs/PizzaScientificMetadata"
},
"size": {
"description": "Total size of all source files contained in source folder on disk when unpacked.",
"type": "number"
},
"sourceFolder": {
"description": "Absolute file path on file server containing the files of this dataset, e.g. /some/path/to/sourcefolder. In case of a single file dataset, e.g. HDF5 data, it contains the path up to, but excluding the filename. Trailing slashes are removed."
},
"type": {
"$ref": "#/$defs/TypeOptions",
"description": "Characterize type of dataset, either 'raw' or 'derived'. Autofilled when choosing the proper inherited models."
}
},
"required": [
"scientificMetadata",
"owner",
"type",
"principalInvestigator"
],
"title": "Pizzadataset",
"type": "object"
},
"ScientificMetadataCommons": {
"additionalProperties": false,
"description": "some optional common properties",
"properties": {
"CustomParams": {
"type": "string"
}
},
"title": "ScientificMetadataCommons",
"type": "object"
},
"SpicinessLevel": {
"description": "",
"enum": [
"Hot",
"Medium",
"Mild",
"None"
],
"title": "SpicinessLevel",
"type": "string"
},
"TypeOptions": {
"description": "",
"enum": [
"raw",
"derived"
],
"title": "TypeOptions",
"type": "string"
}
},
"$id": "https://desy.de/linkml/opendata/pizza2",
"$schema": "https://json-schema.org/draft/2019-09/schema",
"additionalProperties": true,
"description": "The metadata associated with P65",
"metamodel_version": "1.7.0",
"properties": {
"accessGroups": {
"description": "Defines the group which owns the data, and therefore has unrestricted access to this data. Usually a pgroup like p12151"
},
"contactEmail": {
"description": "Email of the contact person for this dataset. The string may contain a list of emails, which should then be seperated by semicolons."
},
"creationLocation": {
"description": "Unique location identifier where data was taken, usually in the form /Site-name/facility-name/instrumentOrBeamline-name. This field is required if the dataset is a Raw dataset."
},
"creationTime": {
"description": "Time when dataset became fully available on disk, i.e. all containing files have been written. Format according to chapter 5.6 internet date/time format in RFC 3339. Local times without timezone/offset info are automatically transformed to UTC using the timezone of the API server."
},
"dataFormat": {
"description": "Defines the format of the data files in this dataset, e.g Nexus Version x.y."
},
"dataQualityMetrics": {
"description": "Data Quality Metrics is a number given by the user to rate the dataset.",
"type": "number"
},
"datasetName": {
"description": "A name for the dataset, given by the creator to carry some semantic meaning. Useful for display purposes e.g. instead of displaying the pid. Will be autofilled if missing using info from sourceFolder."
},
"description": {
"description": "Free text explanation of contents of dataset."
},
"instrumentId": {
"description": "ID of the instrument where the data was created."
},
"isPublished": {
"description": "The ID of the proposal to which the dataset belongs."
},
"keywords": {
"items": {},
"type": "array"
},
"license": {
"description": "Name of the license under which the data can be used."
},
"orcidOfOwner": {
"description": "ORCID of the owner or custodian. The string may contain a list of ORCIDs, which should then be separated by semicolons."
},
"owner": {
"description": "Owner or custodian of the dataset, usually first name + last name. The string may contain a list of persons, which should then be seperated by semicolons."
},
"ownerEmail": {
"description": "Email of the owner or custodian of the dataset. The string may contain a list of emails, which should then be seperated by semicolons."
},
"ownerGroup": {
"description": "Defines the group which owns the data, and therefore has unrestricted access to this data. Usually a pgroup like p12151"
},
"principalInvestigator": {
"description": "First name and last name of principal investigator(s). If multiple PIs are present, use a semicolon separated list. This field is required if the dataset is a Raw dataset."
},
"proposalId": {
"description": "The ID of the proposal to which the dataset belongs."
},
"scientificMetadata": {
"$ref": "#/$defs/PizzaScientificMetadata"
},
"size": {
"description": "Total size of all source files contained in source folder on disk when unpacked.",
"type": "number"
},
"sourceFolder": {
"description": "Absolute file path on file server containing the files of this dataset, e.g. /some/path/to/sourcefolder. In case of a single file dataset, e.g. HDF5 data, it contains the path up to, but excluding the filename. Trailing slashes are removed."
},
"type": {
"$ref": "#/$defs/TypeOptions",
"description": "Characterize type of dataset, either 'raw' or 'derived'. Autofilled when choosing the proper inherited models."
}
},
"required": [
"scientificMetadata",
"owner",
"type",
"principalInvestigator"
],
"title": "pizza2",
"type": "object",
"version": null
}