forked from surroundaustralia/vocpub-profile
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathprofile.ttl
63 lines (60 loc) · 2.87 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
@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/vocpub>
a prof:Profile ;
dcterms:created "2020-06-13"^^xsd:date ;
dcterms:creator <https://linked.data.gov.au/org/surround> ;
dcterms:modified "2020-06-15"^^xsd:date ;
dcterms:publisher <https://linked.data.gov.au/org/surround> ;
skos:definition "This profile of SKOS defines what ConceptScheme, Concept and Collection properties and their relative arrangements Geoscience Australia requires of its vocabularies for its business purposes"@en ;
skos:prefLabel "VocPub profile of SKOS" ;
prof:hasResource [
skos:prefLabel "Specification Document"@en ;
dcterms:conformsTo <https://www.w3.org/TR/html52/> ;
dcterms:format "text/html" ;
prof:hasArtifact <https://w3id.org/profile/vocpub/spec> ;
prof:hasRole role:specification
] ,
[
skos:prefLabel "Validator in SHACL"@en ;
dcterms:conformsTo <https://www.w3.org/TR/shacl/> ;
dcterms:format "text/turtle" ;
prof:hasArtifact <https://w3id.org/profile/vocpub/validator> ;
prof:hasRole role:validation
] ,
[
skos:prefLabel "Example of a valid vocabulary"@en ;
dcterms:format "text/turtle" ;
prof:hasArtifact <https://w3id.org/profile/vocpub/examples/valid> ;
prof:hasRole role:example
] ,
[
skos:prefLabel "Example of an invalid vocabulary"@en ;
dcterms:description "This example vocabulary does not satisfy the Specification's Requirement 2.1.5 (the ConceptScheme is missing a dcterms:created date)"@en ;
dcterms:format "text/turtle" ;
prof:hasArtifact <https://w3id.org/profile/vocpub/examples/invalid> ;
prof:hasRole role:example
] ,
[
skos:prefLabel "Example of a second invalid vocabulary"@en ;
dcterms:description "This example vocabulary does not satisfy the Specification's Requirements 2.3.1 & 2.3.2 (one Concept has two titles, another is missing rdfs:isDefinedBy)"@en ;
dcterms:format "text/turtle" ;
prof:hasArtifact <https://w3id.org/profile/vocpub/examples/invalid-2> ;
prof:hasRole role:example
] ,
[
skos:prefLabel "Profile code repository"@en ;
dcterms:description "Code repository storing all Profile artifacts"@en ;
prof:hasArtifact <https://github.com/surroundaustralia/vocpub-profile> ;
prof:hasRole role:repository
] ;
prof:isProfileOf <https://www.w3.org/TR/skos-reference/> ;
.
<https://linked.data.gov.au/org/surround> a sdo:Organization ;
sdo:name "SURROUND Australia Pty Ltd" ;
sdo:url "https://surroundaustralia.com"^^xsd:anyURI ;
.