-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathbetween-the-edges.owl.ttl
65 lines (51 loc) · 2.14 KB
/
between-the-edges.owl.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
@prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> .
@prefix : <http://purl.org/twc/vocab/between-the-edges/#> .
@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
@prefix owl: <http://www.w3.org/2002/07/owl#> .
@prefix xsd: <http://www.w3.org/2001/XMLSchema#> .
@prefix bte: <http://purl.org/twc/vocab/between-the-edges/> .
@prefix skos: <http://www.w3.org/2004/02/skos/core#> .
@prefix dcterms: <http://purl.org/dc/terms/> .
<http://purl.org/twc/vocab/between-the-edges/>
a owl:Ontology ;
rdfs:comment "A vocabulary to describe the implicit relationships within the literal URI."@en ;
rdfs:seeAlso </~https://github.com/timrdf/DataFAQs/wiki/BTE-Between-The-Edges> .
bte:HashEndURI
a owl:Class ;
rdfs:subClassOf bte:HashURI .
bte:HashURI
a owl:Class ;
rdfs:comment "URI contains a hash (#). For example, <http://dailymed.nlm.nih.gov/dailymed/help.cfm#webservices>."@en ;
rdfs:subClassOf bte:RDFNode .
bte:Node
a owl:Class ;
rdfs:comment "Any rdfs:Resource that is output by a Between The Edges analysis."@en .
bte:PrefixTree
a dcterms:FileFormat ;
rdfs:comment "A concise tree format organizes strings by their common prefixes. Includes local and recursive weight counts."@en ;
rdfs:seeAlso </~https://github.com/timrdf/DataFAQs/wiki/BTE-Between-The-Edges#prefixtree> .
bte:RDFNode
a owl:Class ;
rdfs:comment "An rdfs:Resource that was analyzed by Between The Edges, as opposed to rdfs:Resources that resulted from the Between The Edges analysis."@en ;
rdfs:subClassOf bte:Node .
bte:SlashEndURI
a owl:Class ;
rdfs:subClassOf bte:SlashURI .
bte:SlashURI
a owl:Class ;
rdfs:subClassOf bte:RDFNode .
bte:broader
a owl:ObjectProperty ;
rdfs:domain bte:Node ;
rdfs:range bte:Node .
bte:length
a owl:DatatypeProperty ;
rdfs:comment "The string length of the URI."@en .
bte:scheme
a owl:DatatypeProperty ;
rdfs:comment "The addressing scheme of the URL. For example, http, file, gopher, mailto, ftp, etc."@en .
bte:step
a owl:DatatypeProperty ;
rdfs:comment "The local name portion of the URI, after the slash."@en .
rdfs:comment
a owl:AnnotationProperty .