-
Notifications
You must be signed in to change notification settings - Fork 12
/
Copy pathtest_api_importexport_data.ttl
53 lines (42 loc) · 1.44 KB
/
test_api_importexport_data.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
@prefix : <http://example.org/test-ontology#> .
@prefix owl: <http://www.w3.org/2002/07/owl#> .
@prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> .
@prefix xml: <http://www.w3.org/XML/1998/namespace> .
@prefix xsd: <http://www.w3.org/2001/XMLSchema#> .
@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
@prefix skos: <http://www.w3.org/2004/02/skos/core#> .
@base <http://example.org/test-ontology> .
#################################################################
# Individuals
#################################################################
### http://example.org/test-ontology#x_1
:x_1 rdf:type owl:NamedIndividual ,
:Block ,
:Forest ;
:isLeftOf :x_2 ;
:isNextTo :x_2 ;
:x 1 ;
skos:prefLabel "x1"@en .
### http://example.org/test-ontology#x_2
:x_2 rdf:type owl:NamedIndividual ,
:Block ,
:Forest ;
:isLeftOf :x_3 ;
:isNextTo :x_3 ;
:x 2 ;
skos:prefLabel "x2"@en .
### http://example.org/test-ontology#x_3
:x_3 rdf:type owl:NamedIndividual ,
:Block ,
:Water ;
:isLeftOf :x_4 ;
:isNextTo :x_4 ;
:x 3 ;
skos:prefLabel "x3"@en .
### http://example.org/test-ontology#x_4
:x_4 rdf:type owl:NamedIndividual ,
:Block ,
:Forest ;
:x 4 ;
skos:prefLabel "x4"@en .
### Generated by the OWL API (version 4.5.9.2019-02-01T07:24:44Z) https://github.com/owlcs/owlapi