-
Notifications
You must be signed in to change notification settings - Fork 0
/
dataset_protein_variants.json
88 lines (87 loc) · 2.76 KB
/
dataset_protein_variants.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
{
"$schema": "http://json-schema.org/draft-07/schema#",
"$id": "https://raw.githubusercontent.com/biofold/protein-thermodynamic-dataset-model/master/dataset_protein_variants.json",
"title": "Protein Variants Dataset Schema",
"type": "object",
"properties": {
"context": { "type": "string", "const": "https://schema.org" },
"type": { "type": "string", "const": "ProteinVariantDataset" },
"name": { "type": "string" },
"description": { "type": "string" },
"version": { "type": "string" },
"dateCreated": { "type": "string", "format": "date" },
"dateModified": { "type": "string", "format": "date" },
"additionalType": { "type": "string" },
"creator": {
"type": "object",
"properties": {
"type": { "type": "string", "const": "Person" },
"name": { "type": "string" }
},
"required": ["type", "name"]
},
"identifier": {
"type": "array",
"items": {
"type": "object",
"properties": {
"type": { "type": "string", "const": "PropertyValue" },
"propertyID": { "type": "string" },
"value": { "type": "string" }
},
"required": ["type", "propertyID", "value"]
}
},
"includedInDataCatalog": {
"type": "object",
"properties": {
"type": { "type": "string", "const": "DataCatalog" },
"name": { "type": "string" }
},
"required": ["type", "name"]
},
"distribution": {
"type": "array",
"items": {
"type": "object",
"properties": {
"type": { "type": "string", "const": "DataDownload" },
"contentUrl": { "type": "string", "format": "uri" },
"encodingFormat": { "type": "string" }
},
"required": ["type", "contentUrl", "encodingFormat"]
}
},
"records": {
"type": "array",
"items": {
"type": "object",
"properties": {
"_id": { "type": "string" },
"cluster_id": { "type": "string" },
"cluster_info": { "type": "string" },
"record": { "$ref": "protein_variant.json" }
},
"required": ["id","record"]
}
},
"citation": {
"type": "object",
"properties": {
"type": { "type": "string", "const": "CreativeWork" },
"name": { "type": "string" },
"identifier": {
"type": "object",
"properties": {
"type": { "type": "string", "const": "PropertyValue" },
"propertyID": { "type": "string", "enum": ["PMID", "DOI"] },
"value": { "type": "string" }
},
"required": ["type", "propertyID", "value"]
}
},
"required": ["type", "name", "identifier"]
}
},
"required": ["context", "type", "name", "records", "citation"]
}