nativeOWL.ttl 2.55 KB
# baseURI: http://www.reportinghub.no/iso15926/nativeOWL
# imports: http://purl.org/dc/elements/1.1/
# imports: http://purl.org/dc/terms/
# imports: http://www.reportinghub.no/ep/schema/1.0/core
# imports: http://www.w3.org/2004/02/skos/core

@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/ep/schema/core#hasPart>
      rdf:type owl:TransitiveProperty ;
      rdfs:domain :PossibleIndividual ;
      rdfs:label "has part"^^xsd:string ;
      rdfs:range :PossibleIndividual ;
      owl:inverseOf <http://www.reportinghub.no/ep/schema/core#partOf> .

<http://www.reportinghub.no/ep/schema/core#hasTemporalPart>
      rdf:type owl:TransitiveProperty ;
      rdfs:domain :PossibleIndividual ;
      rdfs:label "has temporal part"^^xsd:string ;
      rdfs:range :PossibleIndividual ;
      rdfs:subPropertyOf <http://www.reportinghub.no/ep/schema/core#hasPart> ;
      owl:inverseOf <http://www.reportinghub.no/ep/schema/core#temporalPartOf> .

<http://www.reportinghub.no/ep/schema/core#partOf>
      rdf:type owl:TransitiveProperty , owl:ObjectProperty ;
      rdfs:domain :PossibleIndividual ;
      rdfs:label "part of"^^xsd:string ;
      rdfs:range :PossibleIndividual ;
      owl:inverseOf <http://www.reportinghub.no/ep/schema/core#hasPart> .

<http://www.reportinghub.no/ep/schema/core#temporalPartOf>
      rdf:type owl:TransitiveProperty , owl:ObjectProperty ;
      rdfs:domain :PossibleIndividual ;
      rdfs:label "temporal part of"^^xsd:string ;
      rdfs:range :PossibleIndividual ;
      rdfs:subPropertyOf <http://www.reportinghub.no/ep/schema/core#partOf> ;
      owl:inverseOf <http://www.reportinghub.no/ep/schema/core#hasTemporalPart> .

<http://www.reportinghub.no/iso15926/nativeOWL>
      rdf:type owl:Ontology ;
      owl:imports <http://www.reportinghub.no/ep/schema/1.0/core> , <http://purl.org/dc/elements/1.1/> , <http://purl.org/dc/terms/> , <http://www.w3.org/2004/02/skos/core> ;
      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:comment "something that exists or could exist in the universe"^^xsd:string ;
      rdfs:label "possible individual"^^xsd:string ;
      rdfs:subClassOf owl:Thing .