-
Notifications
You must be signed in to change notification settings - Fork 0
/
example002.ttl
47 lines (40 loc) · 1.82 KB
/
example002.ttl
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
@prefix dcat: <http://www.w3.org/ns/dcat#> .
@prefix dct: <http://purl.org/dc/terms/> .
@prefix foaf: <http://xmlns.com/foaf/0.1/> .
@prefix xsd: <http://www.w3.org/2001/XMLSchema#> .
<http://example.org/catalog> a dcat:Catalog ;
dct:title "et";
dct:description "This is an example data catalog." ;
dct:publisher <http://example.org/publisher> ;
dct:language "et" ;
dct:license <http://example.org/license> ;
dct:hasPart <http://example.org/dataset1>, <http://example.org/dataset2> .
<http://example.org/dataset1> a dcat:Dataset ;
dct:title "Example Dataset 1" ;
dct:description "This is an example dataset." ;
dct:publisher <http://example.org/publisher> ;
dct:language "ea" ;
dcat:distribution <http://example.org/distribution1> .
<http://example.org/dataset2> a dcat:Dataset ;
dct:title "Example Dataset 2" ;
dct:description "This is another example dataset." ;
dct:publisher <http://example.org/publisher> ;
dct:language "en" ;
dcat:distribution <http://example.org/distribution2> .
<http://example.org/distribution1> a dcat:Distribution ;
dct:title "Example Distribution 1" ;
dct:description "This is an example distribution." ;
dct:format "text/csv" ;
dcat:downloadURL <http://example.org/data1.csv> .
<http://example.org/distribution2> a dcat:Distribution ;
dct:title "Example Distribution 2" ;
dct:description "This is another example distribution." ;
dct:format "application/json" ;
dcat:accessURL <http://example.org/data2.json> .
<http://example.org/publisher> a foaf:Organization ;
foaf:name "Example Publisher" ;
foaf:mbox <mailto:info@example.org> .
<http://example.org/license> a dct:LicenseDocument ;
dct:title "Example License" ;
dct:description "This is an example license." ;
dct:license <http://example.org/license.html> .