-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathlinguistic-standoff.trig
28 lines (23 loc) · 1.15 KB
/
linguistic-standoff.trig
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
@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 xsd: <http://www.w3.org/2001/XMLSchema#> .
@prefix knora-base: <http://www.knora.org/ontology/knora-base#> .
@prefix : <http://www.knora.org/ontology/00FD/books#> .
<http://www.knora.org/ontology/00FD/books> {
:StandoffNounTag rdf:type owl:Class ;
rdfs:subClassOf knora-base:StandoffTag;
rdfs:comment "Represents a noun in a TextValue"@en .
:StandoffVerbTag rdf:type owl:Class ;
rdfs:subClassOf knora-base:StandoffTag;
rdfs:comment "Represents a verb in a TextValue"@en .
:StandoffAdjectiveTag rdf:type owl:Class ;
rdfs:subClassOf knora-base:StandoffTag;
rdfs:comment "Represents an adjective in a TextValue"@en .
:StandoffDeterminerTag rdf:type owl:Class ;
rdfs:subClassOf knora-base:StandoffTag;
rdfs:comment "Represents a determiner in a TextValue"@en .
:StandoffSentenceTag rdf:type owl:Class ;
rdfs:subClassOf knora-base:StandoffTag;
rdfs:comment "Represents a sentence in a TextValue"@en .
}