-
Notifications
You must be signed in to change notification settings - Fork 0
/
afsgs.ttl
39 lines (30 loc) · 1015 Bytes
/
afsgs.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
@base <http://andrefs.com/graph-summ/v1> .
@prefix ngont: <http://andrefs.com/graph-summ/v1/ontology> .
@prefix ngns: <http://andrefs.com/graph-summ/v1/instance> .
@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#>
@prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
<#Namespace>
a rdfs:Class ;
rdfs:label "a namespace" .
<#UserNamespace>
a <#Namespace> ;
rdfs:label "a namespace defined by the user" .
<#CommunityNamespace>
a <#Namespace> ;
rdfs:label "a namespace defined by the community" .
<#GraphFileNamespace>
a <#Namespace> ;
rdfs:label "a namespace explicitly defined on the knowledge graph's files" .
<#InferredNamespace>
a <#Namespace> ;
rdfs:label "a namespace inferred by chilon_rs" .
<#namespacePrefix>
a rdf:Property ;
rdfs:label "the IRI prefix of the namespace" .
rdfs:domain <#Namespace> .
<#GroupsLink>
a rdfs:Class ;
rdfs:label "a normalized triple" .
<#DataTypeLink>
a rdfs:Class ;
rdfs:label "a normalized triple for a datatype edge" .