-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathdataset.trig
More file actions
49 lines (41 loc) · 1.66 KB
/
Copy pathdataset.trig
File metadata and controls
49 lines (41 loc) · 1.66 KB
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
@base <http://localhost:8080/blog/> .
@prefix ns: <ns#> .
@prefix core: <https://www.w3.org/ns/ldt/core/domain#> .
@prefix dh: <https://www.w3.org/ns/ldt/document-hierarchy/domain#> .
@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 skos: <http://www.w3.org/2004/02/skos/core#> .
@prefix dct: <http://purl.org/dc/terms/> .
@prefix void: <http://rdfs.org/ns/void#> .
@prefix sioc: <http://rdfs.org/sioc/ns#> .
@prefix foaf: <http://xmlns.com/foaf/0.1/> .
<> a dh:Container ;
dct:title "Blog" ;
dct:description "Sample web application built on AtomGraph Web-Node" ;
foaf:maker <http://atomgraph.com/#company> ;
rdfs:seeAlso <sparql>, <http://atomgraph.com> .
<posts/> a dh:Container ;
sioc:has_parent <> ;
dct:title "Posts" ;
dct:description "A container with all blog posts" .
<posts/hello-world> a dh:Item ;
sioc:has_container <posts/> ;
dct:title "Hello world!" ;
dct:description "This is a sample post" ;
dct:subject <categories/samples#this> .
<categories/> a dh:Container ;
sioc:has_parent <> ;
dct:title "Categories" ;
dct:description "A container with all categories" .
<categories/samples> a dh:Item ;
sioc:has_container <categories/> ;
foaf:primaryTopic <categories/samples#this> ;
dct:title "Samples" .
<categories/samples#this> a skos:Concept ;
foaf:isPrimaryTopicOf <categories/samples> ;
dct:title "Samples" ;
dct:description "This is a category of sample posts" .
<sparql> a core:SPARQLEndpoint ;
sioc:has_space <> ;
dct:title "SPARQL endpoint" .