Showing
1 changed file
with
62 additions
and
0 deletions
mainOntology.ttl
0 → 100644
| 1 | +# baseURI: http://data.posccaesar.org/ilap/ | ||
| 2 | + | ||
| 3 | +# c14n-version: 3 | ||
| 4 | +@prefix : <http://data.posccaesar.org/ilap/> . | ||
| 5 | +@prefix owl: <http://www.w3.org/2002/07/owl#> . | ||
| 6 | +@prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> . | ||
| 7 | +@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> . | ||
| 8 | +@prefix xsd: <http://www.w3.org/2001/XMLSchema#> . | ||
| 9 | +: | ||
| 10 | + rdf:type owl:Ontology ; | ||
| 11 | + owl:versionInfo "Created with TopBraid Composer"^^xsd:string ; | ||
| 12 | +. | ||
| 13 | +:Acitivity | ||
| 14 | + rdf:type owl:Class ; | ||
| 15 | + rdfs:label "Acitivity"^^xsd:string ; | ||
| 16 | + rdfs:subClassOf owl:Thing ; | ||
| 17 | +. | ||
| 18 | +:Data | ||
| 19 | + rdf:type owl:Class ; | ||
| 20 | + rdfs:label "Data"^^xsd:string ; | ||
| 21 | + rdfs:subClassOf owl:Thing ; | ||
| 22 | + rdfs:subClassOf [ | ||
| 23 | + rdf:type owl:Restriction ; | ||
| 24 | + owl:onClass :Project ; | ||
| 25 | + owl:onProperty :hasProject ; | ||
| 26 | + owl:qualifiedCardinality "1"^^xsd:nonNegativeInteger ; | ||
| 27 | + ] ; | ||
| 28 | +. | ||
| 29 | +:Plan | ||
| 30 | + rdf:type owl:Class ; | ||
| 31 | + rdfs:label "Plan"^^xsd:string ; | ||
| 32 | + rdfs:subClassOf owl:Thing ; | ||
| 33 | + rdfs:subClassOf [ | ||
| 34 | + rdf:type owl:Restriction ; | ||
| 35 | + owl:minQualifiedCardinality "0"^^xsd:nonNegativeInteger ; | ||
| 36 | + owl:onClass :Acitivity ; | ||
| 37 | + owl:onProperty :hasAcitivity ; | ||
| 38 | + ] ; | ||
| 39 | +. | ||
| 40 | +:Project | ||
| 41 | + rdf:type owl:Class ; | ||
| 42 | + rdfs:label "Project"^^xsd:string ; | ||
| 43 | + rdfs:subClassOf owl:Thing ; | ||
| 44 | + rdfs:subClassOf [ | ||
| 45 | + rdf:type owl:Restriction ; | ||
| 46 | + owl:minQualifiedCardinality "0"^^xsd:nonNegativeInteger ; | ||
| 47 | + owl:onClass :Plan ; | ||
| 48 | + owl:onProperty :hasPlan ; | ||
| 49 | + ] ; | ||
| 50 | +. | ||
| 51 | +:hasAcitivity | ||
| 52 | + rdf:type rdf:Property ; | ||
| 53 | + rdfs:label "has acitivity"^^xsd:string ; | ||
| 54 | +. | ||
| 55 | +:hasPlan | ||
| 56 | + rdf:type rdf:Property ; | ||
| 57 | + rdfs:label "has plan"^^xsd:string ; | ||
| 58 | +. | ||
| 59 | +:hasProject | ||
| 60 | + rdf:type rdf:Property ; | ||
| 61 | + rdfs:label "has project"^^xsd:string ; | ||
| 62 | +. |
-
Please register or login to post a comment