forked from ckan/ckanext-dcat
-
Notifications
You must be signed in to change notification settings - Fork 0
/
catalog.json
110 lines (109 loc) · 4.64 KB
/
catalog.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
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
{
"title": "An example catalog",
"description": "A longer description of what the catalog is, who maintains it, etc. Special characters should be properly handed (if the file is utf8 encoded), for instance for catalogs from Sant Adri\u00e0.",
"homepage": "",
"issued": "2013-04-26T00:00:00Z",
"modified": "2013-05-22T09:38:45Z",
"language": "en",
"license": "https://data.some.org/link/to/license",
"dataset": [
{
"title": "Example dataset 1",
"description": "A longer description of dataset 1: includes three distributions, a CSV file, a PDF file and an API. Some special characters: \u0398\u03b5\u03c3\u03c3\u03b1\u03bb\u03bf\u03bd\u03af\u03ba\u03b7.",
"identifier": "https://data.some.org/catalog/datasets/1",
"issued": "2013-04-26T00:00:00Z",
"modified": "2013-04-26T00:00:00Z",
"landingPage": "",
"publisher": {
"name": "Publishing Organization for dataset 1",
"mbox": "[email protected]"
},
"distribution": [
{
"accessURL": "",
"byteSize": "",
"description": "A longer description for the distribution",
"downloadURL": "https://data.some.org/the/actual/catalog/datasets/1/resources/1.csv",
"format": "text/csv",
"issued": "",
"license": "https://data.some.org/link/to/license",
"modified": "",
"title": "A distribution for this dataset in CSV format"
},
{
"accessURL": "",
"byteSize": "",
"description": "A longer description for the distribution",
"downloadURL": "https://data.some.org/the/actual/catalog/datasets/1/resources/2.pdf",
"format": "application/pdf",
"issued": "",
"license": "https://data.some.org/link/to/license",
"modified": "",
"title": "A distribution for this dataset in PDF format"
},
{
"accessURL": "https://data.some.org/the/actual/catalog/link/to/an/api",
"byteSize": "",
"description": "A longer description for the distribution",
"downloadURL": "",
"format": "",
"issued": "",
"license": "",
"modified": "",
"title": "A distribution for this dataset as an API"
}
],
"keyword": [
"stats",
"pollution"
],
"language": [
"en"
]
},
{
"title": "Example dataset 2",
"description": "A longer description of dataset 2: with two distributions, a website and a PDF file. Some special characters: \u0141\u00f3d\u017a",
"identifier": "https://data.some.org/catalog/datasets/2",
"issued": "2012-06-21",
"modified": "2013-04-01",
"landingPage": "",
"publisher": {
"name": "Publishing Organization for dataset 2",
"mbox": "[email protected]"
},
"distribution": [
{
"accessURL": "",
"byteSize": "",
"description": "A longer description for the distribution",
"downloadURL": "https://external.site.org/",
"format": "html",
"issued": "",
"license": "",
"modified": "",
"title": "A distribution for this dataset as an external website"
},
{
"accessURL": "",
"byteSize": "",
"description": "A longer description for the distribution",
"downloadURL": "https://data.some.org/the/actual/catalog/datasets/2/resources/2.pdf",
"format": "application/pdf",
"issued": "",
"license": "",
"modified": "",
"title": "A distribution for this dataset in PDF format"
}
],
"keyword": [
"stats",
"education",
"sloths"
],
"language": [
"en"
]
}
]
}