-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathvalidationCodes.ttl
78 lines (60 loc) · 2.22 KB
/
validationCodes.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
@prefix : <http://www.ournicecode.org#>.
@prefix rlog: <http://persistence.uni-leipzig.org/nlp2rdf/ontologies/rlog#> .
@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
:codeNoType a rlog:StatusCode;
rdfs:label "Missing Type";
rlog:codeId 100.
:mismatchCode a rlog:StatusCode;
rdfs:label "mismatch";
rlog:codeId 101.
:codeDomain a rlog:StatusCode;
rdfs:label "Domain Mismatch";
rlog:codeId 102.
:codeNoDatatype a rlog:StatusCode;
rdfs:label "Missing Datatype";
rlog:codeId 103.
:codeDatatype a rlog:StatusCode;
rdfs:label "Datatype Mismatch";
rlog:codeId 104.
:codeLiteral a rlog:StatusCode;
rdfs:label "Literal/Resource Mismatch";
rlog:codeId 105.
:codeDisjoint a rlog:StatusCode;
rdfs:label "Disjoint";
rlog:codeId 106.
:codeRange a rlog:StatusCode;
rdfs:label "Range Mismatch";
rlog:codeId 107.
:noLanguageCode a rlog:StatusCode;
rdfs:label "Missing Language Tag";
rlog:codeId 108.
:deprecatedCode a rlog:StatusCode;
rdfs:label "Deprecated";
rlog:codeId 109.
:mismatchCode_4_d a rlog:StatusCode;
rdfs:label "mismatch";
rlog:codeId "4_d".
:duplicateLanguageCode a rlog:StatusCode;
rdfs:label "Duplicate Language Tag";
rdfs:comment "A literal value should contain at most one literal for a certain language. (ONELANG)";
rlog:codeId "110".
:codeDisjointPredicate a rlog:StatusCode;
rdfs:label "Disjoint Predicates";
rdfs:comment "Disjoint property constraint. (OWLDISJP)";
rlog:codeId "111".
:asymmetricPredicate a rlog:StatusCode;
rdfs:label "Asymmetric Predicates";
rdfs:comment "Asymmetric property constraint. (OWL-ASYMP)";
rlog:codeId "112".
:irreflexivePredicate a rlog:StatusCode;
rdfs:label "Irreflexive Predicates";
rdfs:comment "Irreflexive property constraint. (OWL-IRREFL)";
rlog:codeId "113".
:typeDependency a rlog:StatusCode;
rdfs:label "Type Dependency";
rdfs:comment "Type dependency: The type of a resource may imply the attribution of another type. (TYPEDEP)";
rlog:codeId "114".
:typePropertyDependency a rlog:StatusCode;
rdfs:label "Type Property Dependency";
rdfs:comment "A resource of a specific type should have a certain property. (TYPRO-DEP)";
rlog:codeId "115".