-
Notifications
You must be signed in to change notification settings - Fork 16
/
Copy pathcatalog.json
76 lines (76 loc) · 2.02 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
{
"@context": "https://w3id.org/dspace/2024/1/context.json",
"@id": "urn:uuid:3afeadd8-ed2d-569e-d634-8394a8836d57",
"@type": "dcat:Catalog",
"dct:title": "Data Provider A Catalog",
"dct:description": [
{
"@value": "A catalog of data items",
"@language": "en"
}
],
"dspace:participantId": "urn:example:DataProviderA",
"dcat:keyword": [
"traffic",
"government"
],
"dcat:service": [
{
"@id": "urn:uuid:4aa2dcc8-4d2d-569e-d634-8394a8834d77",
"@type": "dcat:DataService",
"dcat:endpointDescription": "dspace:connector",
"dcat:endpointURL": "https://provider-a.com/connector"
}
],
"dcat:dataset": [
{
"@id": "urn:uuid:3dd1add8-4d2d-569e-d634-8394a8836a88",
"@type": "dcat:Dataset",
"dct:title": "Traffic Data",
"dct:description": [
{
"@value": "Traffic data sample extract",
"@language": "en"
}
],
"dcat:keyword": [
"traffic"
],
"odrl:hasPolicy": [
{
"@id": "urn:uuid:3dd1add8-4d2d-569e-d634-8394a8836a88",
"@type": "odrl:Offer",
"odrl:assigner": "http://example.com/Provider",
"odrl:permission": [
{
"odrl:action": "odrl:use",
"odrl:constraint": [
{
"odrl:leftOperand": "odrl:spatial",
"odrl:operator": "odrl:eq",
"odrl:rightOperand": "http://example.org/EU"
}
],
"odrl:duty": {
"odrl:action": "cc:Attribution"
}
}
]
}
],
"dcat:distribution": [
{
"@type": "dcat:Distribution",
"dct:format": "dspace:s3+push",
"dcat:accessService": [
{
"@id": "urn:uuid:4aa2dcc8-4d2d-569e-d634-8394a8834d77",
"@type": "dcat:DataService",
"dcat:endpointURL": "https://provider-a.com/connector"
}
]
}
]
}
]
}