-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathstandoff.owl
73 lines (47 loc) · 2.18 KB
/
standoff.owl
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
<?xml version="1.0"?>
<!DOCTYPE rdf:RDF [
<!ENTITY owl "http://www.w3.org/2002/07/owl#" >
<!ENTITY xsd "http://www.w3.org/2001/XMLSchema#" >
<!ENTITY rdfs "http://www.w3.org/2000/01/rdf-schema#" >
<!ENTITY som "http://github.com/lueck/standoff-mode/owl#" >
<!ENTITY rdf "http://www.w3.org/1999/02/22-rdf-syntax-ns#" >
]>
<rdf:RDF xmlns="http://github.com/lueck/standoff-mode/owl#"
xml:base="http://github.com/lueck/standoff-mode/owl"
xmlns:som="http://github.com/lueck/standoff-mode/owl#"
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:owl="http://www.w3.org/2002/07/owl#"
xmlns:xsd="http://www.w3.org/2001/XMLSchema#"
xmlns:rdfs="http://www.w3.org/2000/01/rdf-schema#">
<owl:Ontology rdf:about="http://github.com/lueck/standoff-mode/owl"/>
<!--
///////////////////////////////////////////////////////////////////////////////////////
//
// Annotation properties
//
///////////////////////////////////////////////////////////////////////////////////////
-->
<!-- http://github.com/lueck/standoff-mode/owl#allowedObject -->
<owl:AnnotationProperty rdf:about="&som;allowedObject">
<rdfs:comment xml:lang="en">
Defines an allowed object for a rdfs:ObjectProperty in
Stand-Off Mode. There may be more than one.
Don't mistake that for rdfs:range, which enables an
inference if a predicate is used.
</rdfs:comment>
</owl:AnnotationProperty>
<!-- http://github.com/lueck/standoff-mode/owl#allowedSubject -->
<owl:AnnotationProperty rdf:about="&som;allowedSubject">
<rdfs:comment xml:lang="en">
Defines an allowed subject for a rdfs:ObjectProperty in
Stand-Off Mode. There may be more than one.
Don't mistake that for rdfs:domain, which enables an
inference if a predicate is used.
</rdfs:comment>
</owl:AnnotationProperty>
<!-- http://github.com/lueck/standoff-mode/owl#face -->
<owl:AnnotationProperty rdf:about="&som;face">
<rdfs:comment xml:lang="en">Highlightning face</rdfs:comment>
</owl:AnnotationProperty>
</rdf:RDF>
<!-- Generated by the OWL API (version 3.5.1) http://owlapi.sourceforge.net -->