-
Notifications
You must be signed in to change notification settings - Fork 0
/
wa-profile.ttl
58 lines (55 loc) · 2.61 KB
/
wa-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
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
@prefix prof: <http://www.w3.org/ns/dx/prof/> .
@prefix icsmp: <https://linked.data.gov.au/def/csdm/profiles/> .
@prefix owl: <http://www.w3.org/2002/07/owl#> .
@prefix prof: <http://www.w3.org/ns/dx/prof/> .
@prefix profrole: <http://www.w3.org/ns/dx/prof/role/> .
@prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> .
@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
@prefix xsd: <http://www.w3.org/2001/XMLSchema#> .
@prefix dct: <http://purl.org/dc/terms/> .
@prefix skos: <http://www.w3.org/2004/02/skos/core#> .
@prefix shacl: <http://www.w3.org/ns/shacl#> .
@prefix jsonld: <https://www.w3.org/TR/json-ld11/> .
@prefix qb: <http://purl.org/linked-data/cube#> .
icsmp:vic a prof:Profile ;
skos:definition """Western Australia Profile for the ICSM Cadastral Survey Data Exchange Model.
""" ;
prof:isProfileOf icsmp:common ;
rdfs:label "Western Australia Profile of ICSM CSDM" ;
prof:hasToken "csdm_wa"^^xsd:token ;
prof:hasResource
[ a prof:ResourceDescriptor ;
rdfs:label "Profile description as HTML" ;
dct:conformsTo prof: ;
dct:format "text/html" ;
rdfs:comment "Artefact is self reference using canonical URI and content negotiation" ;
prof:hasArtifact icsmp:vic ;
prof:hasRole profrole:profile
]
,
[ a prof:ResourceDescriptor ;
rdfs:label "Profile constraints as SHACL" ;
dct:conformsTo shacl: ;
dct:format "text/turtle" ;
rdfs:comment "Artefact is self reference using canonical URI and content negotiation" ;
prof:hasArtifact <https://icsm-au.github.io/3d-csdm-profiles/profiles/wa-profile-shacl.ttl> ;
prof:hasRole profrole:validation
] ,
[ a prof:ResourceDescriptor ;
rdfs:label "Vocabulary bindings using RDF Datacube" ;
dct:conformsTo qb: ;
dct:format "text/turtle" ;
rdfs:comment "Allows linking specific properties to Concept Schemas" ;
prof:hasArtifact <https://icsm-au.github.io/3d-csdm-profiles/profiles/wa-vocab-bindings.ttl> ;
prof:hasRole profrole:validation
] ,
[ a prof:ResourceDescriptor ;
rdfs:label "Vocabulary labels" ;
dct:conformsTo rdfs: ;
dct:format "text/turtle" ;
rdfs:comment "Labels for vocabularies" ;
prof:hasArtifact <https://icsm-au.github.io/3d-csdm-profiles/profiles/wa-vocab-labels.ttl> ;
prof:hasRole profrole:validation
]
.
[] owl:imports <https://icsm-au.github.io/3d-csdm-profiles/profiles/icsm-common.ttl> .