forked from semanticarts/gist
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathgistValidationAnnotations.ttl
37 lines (32 loc) · 1.22 KB
/
gistValidationAnnotations.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
# imports: https://ontologies.semanticarts.com/o/gistCore
@prefix gist: <https://ontologies.semanticarts.com/gist/> .
@prefix owl: <http://www.w3.org/2002/07/owl#> .
@prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> .
@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
@prefix skos: <http://www.w3.org/2004/02/skos/core#> .
@prefix xml: <http://www.w3.org/XML/1998/namespace> .
@prefix xsd: <http://www.w3.org/2001/XMLSchema#> .
<https://ontologies.semanticarts.com/o/gistValidationAnnotations>
a owl:Ontology ;
owl:imports <https://ontologies.semanticarts.com/o/gistCore> ;
skos:definition "Annotations to assist gist ontology validation."^^xsd:string ;
skos:prefLabel "gist Validation Annotations"^^xsd:string ;
gist:license "https://creativecommons.org/licenses/by-sa/3.0/"^^xsd:string ;
.
gist:nonConformingLabel
a owl:AnnotationProperty ;
rdfs:domain [
a owl:Class ;
owl:unionOf (
owl:Class
owl:DatatypeProperty
owl:ObjectProperty
) ;
] ;
rdfs:range xsd:boolean ;
skos:definition "The annotated ontology entity is excluded from label validation rules."^^xsd:string ;
skos:prefLabel "non-conforming label"^^xsd:string ;
.
gist:unitSymbolUnicode
gist:nonConformingLabel "true"^^xsd:boolean ;
.