forked from datatagsuite/schema
-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathdata_type_schema.json
More file actions
49 lines (46 loc) · 1.35 KB
/
data_type_schema.json
File metadata and controls
49 lines (46 loc) · 1.35 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
{
"id": "https://w3id.org/dats/schema/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": {
"description": "The JSON-LD context",
"anyOf": [
{
"type": "string"
},
{
"type": "object"
},
{
"type": "array"
}
]
},
"@id": {
"description": "The JSON-LD identifier",
"type": "string", "format": "uri"
},
"@type": {
"description": "The JSON-LD type",
"type": "string", "enum": [ "DataType" ]},
"information": {
"description": "The measurements or facts that the data is about.",
"$ref" : "annotation_schema.json#"
},
"method": {
"description": "The procedure or technology used to generate the information.",
"$ref" : "annotation_schema.json#"
},
"platform": {
"description": "The set of instruments, software and reagents that are needed to generated the data.",
"$ref" : "annotation_schema.json#"
},
"instrument": {
"description": "The specific device used to generate the data.",
"$ref" : "annotation_schema.json#"
}
}
}