-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdatapackage.json
49 lines (49 loc) · 1.38 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
{
"name": "PhataPak Registry",
"title": "Registry of published datasets in the PhataPak Project",
"description": "Registry of published datasets in the PhataPak Project",
"licenses": [
{
"id": "odc-pddl",
"path": "http://opendatacommons.org/licenses/pddl/",
"name": "public_domain_dedication_and_license",
"title": "Open Data Commons Public Domain Dedication and License v1.0"
}
],
"keywords": [ "datasets", "registry", "catalog", "phatapak", "php"],
"version": "1.0.1",
"sources": [{
"title": "Datasets from PhataPak",
"path": "https://github.com/PhataPak/PhataPak"
}],
"resources": [
{
"name": "packages",
"path": "packages.csv",
"schema": {
"fields": [
{
"name": "name",
"type": "string",
"description": "Name of the dataset"
},
{
"name": "path",
"type": "string",
"description": "Path to find the package in the main repository"
},
{
"name": "description",
"type": "string",
"description": "A short description of the information provided by the dataset"
},
{
"name": "repository",
"type": "string",
"description": "Optional individual repository for the package"
}
]
}
}
]
}