-
Notifications
You must be signed in to change notification settings - Fork 16
/
datapackage.json
76 lines (76 loc) · 1.86 KB
/
datapackage.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
{
"name": "german-gov-domains",
"title": "German Government Domains",
"description": "An unofficial and incomplete list of German Government Domains",
"homepage": "https://github.com/robbi5/german-gov-domains",
"license": "CC0-1.0",
"resources": [
{
"name": "domains",
"title": "contains all german government domains",
"path": "data/domains.csv",
"format": "csv",
"mediatype": "text/csv",
"schema": "domains-schema"
},
{
"name": "domains.city",
"title": "contains only domains of cities",
"path": "data/domains.city.csv",
"format": "csv",
"mediatype": "text/csv",
"schema": "domains-schema"
},
{
"name": "domains.federal",
"title": "contains only domains of federal agencies",
"path": "data/domains.federal.csv",
"format": "csv",
"mediatype": "text/csv",
"schema": "domains-schema"
}
],
"schemas": {
"domains-schema": {
"fields": [
{
"name": "Domain Name",
"type": "string",
"constraints": {
"required": true,
"unique": true
}
},
{
"name": "Domain Type",
"type": "string",
"constraints": {
"enum": [
"Federal Agency",
"City",
"County",
"Native Sovereign Nation",
"State/Local Govt"
]
}
},
{
"name": "Agency",
"type": "string"
},
{
"name": "City",
"type": "string",
"rdfType": "http://schema.org/City"
},
{
"name": "State",
"type": "string",
"rdfType": "http://schema.org/State",
"description": "second part of ISO-3166-2:DE"
}
],
"primaryKey": "Domain Name"
}
}
}