-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdata_type_schema.json
39 lines (36 loc) · 1.24 KB
/
data_type_schema.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
{
"id": "http://biocaddie.github.io/dats/data_type_schema.json#",
"$schema": "http://json-schema.org/draft-04/schema",
"title": "DATS Data Type schema",
"description": "The nature of the data, as determined for the information collected, the method used and the platform used.",
"type": "object",
"properties": {
"@context": {
"anyOf": [
{
"type": "string"
},
{
"type": "object"
}
]
},
"@type": { "type": "string", "enum": [ "DataType" ]},
"information": {
"description": "The measurements or facts that the data is about.",
"$ref" : "http://biocaddie.github.io/dats/annotation_schema.json#"
},
"method": {
"description": "The procedure or technology used to generate the information.",
"$ref" : "http://biocaddie.github.io/dats/annotation_schema.json#"
},
"platform": {
"description": "The set of instruments, software and reagents that are needed to generated the data.",
"$ref" : "http://biocaddie.github.io/dats/annotation_schema.json#"
},
"instrument": {
"description": "The specific device used to generate the data.",
"$ref" : "http://biocaddie.github.io/dats/annotation_schema.json#"
}
}
}