nativeOWL.ttl
2.55 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
# 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 .