nativeOWL.ttl 2.04 KB
# Saved by TopBraid on Thu Aug 04 15:12:00 BST 2011
# baseURI: http://www.reportinghub.no/iso15926/nativeOWL
# imports: http://purl.org/dc/elements/1.1/
# imports: http://www.w3.org/2004/02/skos/core
# imports: http://purl.org/dc/terms/

@prefix :        <http://www.reportinghub.no/iso15926/nativeOWL#> .
@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#> .

<http://www.reportinghub.no/iso15926/nativeOWL>
      rdf:type owl:Ontology ;
      owl:imports <http://www.w3.org/2004/02/skos/core> , <http://purl.org/dc/terms/> , <http://purl.org/dc/elements/1.1/> ;
      owl:versionInfo "Created with TopBraid Composer"^^xsd:string .

:Activity
      rdf:type owl:Class ;
      rdfs:label "activity"^^xsd:string ;
      rdfs:subClassOf :PossibleIndividual .

:PossibleIndividual
      rdf:type owl:Class ;
      rdfs:label "possible individual"^^xsd:string ;
      rdfs:subClassOf owl:Thing .

:hasPart
      rdf:type owl:TransitiveProperty ;
      rdfs:domain :PossibleIndividual ;
      rdfs:label "has part"^^xsd:string ;
      rdfs:range :PossibleIndividual ;
      owl:inverseOf :partOf .

:hasTemporalPart
      rdf:type owl:TransitiveProperty ;
      rdfs:domain :PossibleIndividual ;
      rdfs:label "has temporal part"^^xsd:string ;
      rdfs:range :PossibleIndividual ;
      rdfs:subPropertyOf :hasPart ;
      owl:inverseOf :temporalPartOf .

:partOf
      rdf:type owl:TransitiveProperty , owl:ObjectProperty ;
      rdfs:domain :PossibleIndividual ;
      rdfs:label "part of"^^xsd:string ;
      rdfs:range :PossibleIndividual ;
      owl:inverseOf :hasPart .

:temporalPartOf
      rdf:type owl:TransitiveProperty , owl:ObjectProperty ;
      rdfs:domain :PossibleIndividual ;
      rdfs:label "temporal part of"^^xsd:string ;
      rdfs:range :PossibleIndividual ;
      rdfs:subPropertyOf :partOf ;
      owl:inverseOf :hasTemporalPart .