forked from apache/jena
-
Notifications
You must be signed in to change notification settings - Fork 0
/
dataset.ttl
27 lines (22 loc) · 887 Bytes
/
dataset.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
# Dataset which has named graphs and a default graph.
@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
@prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> .
@prefix xsd: <http://www.w3.org/2001/XMLSchema#> .
@prefix ja: <http://jena.hpl.hp.com/2005/11/Assembler#> .
@prefix : <#> .
## Datatset
<> rdf:type ja:RDFDataset ;
ja:defaultGraph
[ rdf:type ja:MemoryModel ;
ja:content [ja:externalContent <D.ttl>] ] ;
ja:namedGraph [ ja:graphName <http://example/graph1> ;
ja:graph :data1 ] ;
ja:namedGraph [ ja:graphName <http://example/graph2> ;
ja:graph :data2 ] ;
.
:data1 rdf:type ja:MemoryModel ;
ja:content [ja:externalContent <D1.ttl>] ;
.
:data2 rdf:type ja:MemoryModel ;
ja:content [ja:externalContent <D2.ttl>] ;
.