mainOntology.ttl
1.58 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
50
51
52
53
54
55
56
57
58
59
60
61
62
# baseURI: http://data.posccaesar.org/ilap/
# c14n-version: 3
@prefix : <http://data.posccaesar.org/ilap/> .
@prefix owl: <http://www.w3.org/2002/07/owl#> .
@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#> .
:
rdf:type owl:Ontology ;
owl:versionInfo "Created with TopBraid Composer"^^xsd:string ;
.
:Acitivity
rdf:type owl:Class ;
rdfs:label "Acitivity"^^xsd:string ;
rdfs:subClassOf owl:Thing ;
.
:Data
rdf:type owl:Class ;
rdfs:label "Data"^^xsd:string ;
rdfs:subClassOf owl:Thing ;
rdfs:subClassOf [
rdf:type owl:Restriction ;
owl:onClass :Project ;
owl:onProperty :hasProject ;
owl:qualifiedCardinality "1"^^xsd:nonNegativeInteger ;
] ;
.
:Plan
rdf:type owl:Class ;
rdfs:label "Plan"^^xsd:string ;
rdfs:subClassOf owl:Thing ;
rdfs:subClassOf [
rdf:type owl:Restriction ;
owl:minQualifiedCardinality "0"^^xsd:nonNegativeInteger ;
owl:onClass :Acitivity ;
owl:onProperty :hasAcitivity ;
] ;
.
:Project
rdf:type owl:Class ;
rdfs:label "Project"^^xsd:string ;
rdfs:subClassOf owl:Thing ;
rdfs:subClassOf [
rdf:type owl:Restriction ;
owl:minQualifiedCardinality "0"^^xsd:nonNegativeInteger ;
owl:onClass :Plan ;
owl:onProperty :hasPlan ;
] ;
.
:hasAcitivity
rdf:type rdf:Property ;
rdfs:label "has acitivity"^^xsd:string ;
.
:hasPlan
rdf:type rdf:Property ;
rdfs:label "has plan"^^xsd:string ;
.
:hasProject
rdf:type rdf:Property ;
rdfs:label "has project"^^xsd:string ;
.