-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathprofile.ttl
77 lines (68 loc) · 3.5 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
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
77
@prefix dcterms: <http://purl.org/dc/terms/> .
@prefix prof: <http://www.w3.org/ns/dx/prof/> .
@prefix role: <http://www.w3.org/ns/dx/prof/role/> .
@prefix sdo: <https://schema.org/> .
@prefix skos: <http://www.w3.org/2004/02/skos/core#> .
@prefix xsd: <http://www.w3.org/2001/XMLSchema#> .
<https://w3id.org/profile/spaceprez>
a prof:Profile ;
dcterms:created "2022-03-22"^^xsd:date ;
dcterms:creator <https://linked.data.gov.au/org/surround> ;
dcterms:modified "2022-03-22"^^xsd:date ;
dcterms:publisher <https://linked.data.gov.au/org/surround> ;
skos:definition """A profile of the OGC LD API profile that contains a specification, validators and scripts used to define, test and convert RDF data to ensure that it can be used by the SpacePrez API tool."""@en ;
dcterms:title "SpacePrez Profile" ;
prof:hasResource
<https://w3id.org/profile/spaceprez/spec> ,
<https://w3id.org/profile/spaceprez/validator> ,
<https://w3id.org/profile/spaceprez/compounded-validator> ,
<https://w3id.org/profile/spaceprez/conversion-script> ,
<https://w3id.org/profile/spaceprez/repo> ;
prof:isProfileOf <https://w3id.org/profile/ogcldapi> ;
.
<https://w3id.org/profile/spaceprez/spec>
dcterms:title "Specification Document"@en ;
dcterms:description "The normative, human-readable, listing of profile requirements"@en ;
dcterms:conformsTo <https://www.w3.org/TR/html52/> ;
dcterms:format "text/html" ;
prof:hasArtifact "https://w3id.org/profile/spaceprez/spec"^^xsd:anyURI ;
prof:hasRole role:specification
.
<https://w3id.org/profile/spaceprez/validator>
dcterms:title "Validator in SHACL"@en ;
dcterms:description "A SHACL Shapes file to be used to test the conformance of RDF data to this profile"@en ;
dcterms:conformsTo <https://www.w3.org/TR/shacl/> ;
dcterms:format "text/turtle" ;
prof:hasArtifact "https://w3id.org/profile/spaceprez/validator"^^xsd:anyURI ;
prof:hasRole role:validation
.
<https://w3id.org/profile/spaceprez/compounded-validator>
dcterms:title "SpacePrez Compound Validator"@en ;
dcterms:description "Compounded SHACL validator for the SpacePrez Profile. This validator contains GeoSPARQL, OGC LD API Profile and SpacePrez Profile validators all in one"@en ;
dcterms:conformsTo <https://www.w3.org/TR/shacl/> ;
dcterms:format "text/turtle" ;
prof:hasArtifact "https://w3id.org/profile/spaceprez/compounded-validator"^^xsd:anyURI ;
prof:hasRole role:validation
.
<https://w3id.org/profile/spaceprez/conversion-script>
dcterms:title "GeoJSON converter script"@en ;
dcterms:description "Python code to convert GeoSPARQL geometry WKT serializations to GeoJSON serializations"@en ;
prof:hasArtifact "https://w3id.org/profile/spaceprez/conversion-script"^^xsd:anyURI ;
prof:hasRole role:script
.
<https://w3id.org/profile/spaceprez/examples>
dcterms:title "Example data files"@en ;
dcterms:description "Example data files"@en ;
prof:hasArtifact "https://w3id.org/profile/spaceprez/examples"^^xsd:anyURI ;
prof:hasRole role:example
.
<https://w3id.org/profile/spaceprez/repo>
dcterms:title "Profile code repository"@en ;
dcterms:description "Code repository storing all Profile artifacts"@en ;
prof:hasArtifact "https://w3id.org/profile/spaceprez/repo"^^xsd:anyURI ;
prof:hasRole role:repository
.
<https://linked.data.gov.au/org/surround> a sdo:Organization ;
sdo:name "SURROUND Australia Pty Ltd" ;
sdo:url "https://surroundaustralia.com"^^xsd:anyURI ;
.