-
Notifications
You must be signed in to change notification settings - Fork 20
/
Langston_Schema
45 lines (45 loc) · 1.58 KB
/
Langston_Schema
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
{
"$schema": "http://json-schema.org/draft-04/schema#",
"$id" : "https://raw.githubusercontent.com/klangstonn23/HW1/main/Schema",
"type": "object",
"title" : "Genes",
"description" : "Genes from NCBI Nucleotide",
"properties": {
"Genes": {
"type": "array",
"description" : "Details of the genes from NCBI Nucleotide",
"items": {
"type": "object",
"description" : "Definition, abbreviation, bp, and accession number of genes",
"required": [
"definition",
"abbreviation",
"bp",
"accession number"
],
"properties": {
"name": {
"type": "string",
"description" : "Abbreviation of gene name",
"examples" : [ "Scube1", "Cux1" ]
},
"bp": {
"type": "integer",
"description" : "Number of bp of each gene",
"examples" : [ 10612, 153109 ],
},
"accession number": {
"type": "string",
"description" : "accession number of each gene",
"examples" : ["NG_007084", "NG_029056"]
},
"definition": {
"type": "string",
"description" : "full name of sequence",
"examples" : ["Homo sapiens apolipoprotein E (APOE), RefSeqGene on chromosome 19; nuclear gene for mitochondrial product", "Homo sapiens signal peptide, CUB domain and EGF like domain containing 1 (SCUBE1), RefSeqGene on chromosome 22"]
}
},
}
}
}
}