-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathschema.json
63 lines (63 loc) · 1.84 KB
/
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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
{
"@context": "http://www.w3.org/ns/csvw",
"url": "https://github.com/ryanfb/loeb-copyright/blob/master/loeb-copyright.csv",
"tableSchema": {
"columns": [
{
"name": "identifier",
"required": true,
"datatype": { "base": "string", "minLength": 4 }
},
{
"name": "author",
"required": false,
"datatype": { "base": "string" }
},
{
"name": "title",
"required": true,
"datatype": { "base": "string" }
},
{
"name": "year_published",
"required": false,
"datatype": { "base": "gYear" }
},
{
"name": "translator",
"required": false,
"datatype": { "base": "string" }
},
{
"name": "translator_year_of_death",
"required": false,
"datatype": { "base": "gYear" }
},
{
"name": "pre_1923",
"required": false,
"datatype": { "base": "boolean" }
},
{
"name": "1923_1963_copyright_not_renewed",
"required": false,
"datatype": { "base": "boolean" }
},
{
"name": "in_loebolus",
"required": false,
"datatype": { "base": "boolean" }
},
{
"name": "notes",
"required": false,
"datatype": { "base": "string" }
},
{
"name": "urls",
"required": false,
"datatype": { "base": "string" }
}
]
}
}