forked from adopta-agency/adopta-blueprint
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathdata.json
48 lines (47 loc) · 1.38 KB
/
data.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
---
layout: none
---
{
"@type": "dcat:Catalog",
"describedBy": "https://project-open-data.cio.gov/v1.1/schema/catalog.json",
"conformsTo": "https://project-open-data.cio.gov/v1.1/schema",
"@context": "https://project-open-data.cio.gov/v1.1/schema/data.jsonld",
"dataset": [
{% for data in site.data limit:100 %}
{
"references": [
"{{ site.project_url }}"
],
"contactPoint": {
"hasEmail": "mailto:{{ site.support_email }}",
"@type": "vcard:Contact",
"fn": "{{ site.support_title }}"
},
"title": "{{ data.title }}",
"distribution": [
{
"@type": "dcat:Distribution",
"downloadURL": "{{ data.csv_url }}",
"mediaType": "text/csv",
"title": "{{ data.title }}"
},
{
"@type": "dcat:Distribution",
"downloadURL": "{{ data.json_url }}",
"mediaType": "application/json",
"title": "{{ data.title }}"
}
],
"keyword": [
{% for tags in site.project_tags limit:10 %}
"Kin Lane"{% if forloop.last %}{% else %},{% endif %}
{% endfor %}
],
"issued": "{{ page.date | date: "%Y-%m-%d" }}",
"accessLevel": "public",
"license": "https://creativecommons.org/publicdomain/zero/1.0/",
"dataQuality": true
}{% if forloop.last %}{% else %},{% endif %}
{% endfor %}
]
}