-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathprofile.ttl
85 lines (74 loc) · 4 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
78
79
80
81
82
83
84
PREFIX dcterms: <http://purl.org/dc/terms/>
PREFIX owl: <http://www.w3.org/2002/07/owl#>
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 xsd: <http://www.w3.org/2001/XMLSchema#>
<https://w3id.org/profile/vocpub>
a prof:Profile ;
sdo:dateCreated "2020-06-13"^^xsd:date ;
sdo:creator <https://orcid.org/0000-0002-8742-7730> ;
sdo:dateModified "2024-06-13"^^xsd:date ;
sdo:publisher <https://linked.data.gov.au/org/agldwg> ;
sdo:definition """This is a profile of the taxonomy data model SKOS - i.e. SKOS with additional constraints. It defines some compulsory properties for SKOS's ConceptScheme, Concept and Collection classes and ensures that certain relationships between them are present, e.g. topConceptOf & inScheme linking Concepts to ConceptSchemes. It also requires goes a bit beyond 'pure' SKOS by ensuring that Concepts indicate the ConceptScheme they are defined in, which may be different to the ConceptScheme they re presented in. This allows VocPub-valid SKOS Concepts to be re-used in multiple of vocabularies efficiently.
This profile is used for multiple Australian government and international vocabularies and is entirely generic, i.e. the additional constraints are not Australian or government-specific but just ensure certain technical model capabilities in the data."""@en ;
sdo:name "VocPub profile of SKOS" ;
owl:versionIRI <https://w3id.org/profile/vocpub/4.10> ;
prof:hasResource
<https://w3id.org/profile/vocpub/spec> ,
<https://w3id.org/profile/vocpub/validator> ,
<https://w3id.org/profile/vocpub/htv> ,
<https://w3id.org/profile/vocpub/examples/valid> ,
<https://w3id.org/profile/vocpub/examples/invalid> ,
<https://w3id.org/profile/vocpub/examples/invalid-2> ,
<https://w3id.org/profile/vocpub/sdo> ,
<https://w3id.org/profile/vocpub/repo> ;
prof:isProfileOf <https://www.w3.org/TR/skos-reference/> ;
.
<https://linked.data.gov.au/org/agldwg>
a sdo:Organization ;
sdo:name "Australian Government Linked Data Working Group" ;
sdo:url "https://www.linked.data.gov.au"^^xsd:anyURI ;
.
<https://orcid.org/0000-0002-8742-7730>
a sdo:Person ;
sdo:name "Nicholas J. Car" ;
sdo:email "[email protected]"^^xsd:anyURI ;
.
<https://w3id.org/profile/vocpub/spec>
sdo:name "Specification Document"@en ;
sdo:description "The normative, human-readable, listing of profile requirements"@en ;
dcterms:conformsTo <https://www.w3.org/TR/html52/> ;
sdo:encodingFormat "text/html" ;
prof:hasArtifact "https://w3id.org/profile/vocpub/spec"^^xsd:anyURI ;
prof:hasRole role:specification
.
<https://w3id.org/profile/vocpub/validator>
sdo:name "Validator in SHACL"@en ;
sdo: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/> ;
sdo:encodingFormat "text/turtle" ;
prof:hasArtifact "https://w3id.org/profile/vocpub/validator"^^xsd:anyURI ;
prof:hasRole role:validation
.
<https://w3id.org/profile/vocpub/htv>
sdo:name "How to Validate"@en ;
sdo:description "Written instructions on how to use this profile's validator on data"@en ;
sdo:encodingFormat "text/html" ;
prof:hasArtifact "https://w3id.org/profile/vocpub/htv"^^xsd:anyURI ;
prof:hasRole role:guidance
.
<https://w3id.org/profile/vocpub/examples>
sdo:name "Examples"@en ;
sdo:description "A directory of valid and invalid vocabularies"@en ;
sdo:encodingFormat "text/turtle" ;
dcterms:conformsTo <https://w3id.org/profile/vocpub> ;
prof:hasArtifact "https://w3id.org/profile/vocpub/examples"^^xsd:anyURI ;
prof:hasRole role:example
.
<https://w3id.org/profile/vocpub/repo>
sdo:name "Profile code repository"@en ;
sdo:description "Code repository storing all Profile artifacts"@en ;
prof:hasArtifact "https://w3id.org/profile/vocpub/repo"^^xsd:anyURI ;
prof:hasRole role:repository
.