-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtest (1).ttl
38 lines (27 loc) · 1.61 KB
/
test (1).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
@prefix : <https://matonto.org/ontologies/6/2017/NewOntology#> .
@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#> .
@base <https://matonto.org/ontologies/6/2017/NewOntology> .
<https://matonto.org/ontologies/6/2017/NewOntology> rdf:type owl:Ontology ;
<http://purl.org/dc/terms/title> "New Ontology"^^xsd:string .
#################################################################
# Annotation properties
#################################################################
### http://purl.org/dc/terms/title
<http://purl.org/dc/terms/title> rdf:type owl:AnnotationProperty .
#################################################################
# Object Properties
#################################################################
### https://matonto.org/ontologies/6/2017/NewOntology#objectProperty
:objectProperty rdf:type owl:ObjectProperty ;
<http://purl.org/dc/terms/title> "Object Property"^^xsd:string .
#################################################################
# Data properties
#################################################################
### https://matonto.org/ontologies/6/2017/NewOntology#dataProperty
:dataProperty rdf:type owl:DatatypeProperty ;
<http://purl.org/dc/terms/title> "Data Property"^^xsd:string .
### Generated by the OWL API (version 5.0.3.20160910-2120) https://github.com/owlcs/owlapi/