-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathprofile.ttl
30 lines (27 loc) · 1.1 KB
/
profile.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
# GSQ Dataset Profile's profile declaration according to the Profiles Ontology
@prefix gsq: <https://linked.data.gov.au/def/gsq-dataset-profile/> .
@prefix dct: <http://purl.org/dc/terms/> .
@prefix prof: <http://www.w3.org/ns/dx/prof/> .
@prefix role: <http://www.w3.org/ns/dx/prof/role/> .
<https://linked.data.gov.au/def/gsq/dataset>
a prof:Profile ;
rdfs:label "GSQ's Dataset Profile" ;
rdfs:comment """The Geological Survey of Queensland's profile of DCAT (rev),
the revised edition of the Dataset Catalogue Vocabulary""" ;
prof:isProfileOf <http://www.w3.org/ns/dcat#> ;
prof:hasResource [
a prof:ResourceDescriptor;
rdfs:label "Guidance Document (PDF)" ;
dct:format <https://w3id.org/mediatype/application/pdf> ;
prof:hasRole role:Guidance ;
prof:hasArtifact gsq:Guidance.pdf
] ,
[
a prof:ResourceDescriptor ;
dct:conformsTo <http://www.w3.org/ns/shacl#> ;
dct:format <https://w3id.org/mediatype/text/turtle> ;
prof:hasRole role:fullConstraints ;
prof:hasArtifact gsq:constraints.ttl
] .
<http://www.w3.org/ns/dcat#> a dct:Standard ;
rdfs:label "DCAT (revised)" .