-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathexample.ttl
61 lines (42 loc) · 2.62 KB
/
example.ttl
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
@prefix : <http://www.w3id.org/smart-sensing/oshes/demo#> .
@prefix owl: <http://www.w3.org/2002/07/owl#> .
@prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> .
@prefix xml: <http://www.w3.org/XML/1998/namespace> .
@prefix xsd: <http://www.w3.org/2001/XMLSchema#> .
@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
@base <http://www.w3id.org/smart-sensing/oshes/demo#> .
<http://www.w3id.org/smart-sensing/oshes/demo> rdf:type owl:Ontology ;
owl:imports <http://www.w3id.org/smart-sensing/oshes> .
#################################################################
# Data properties
#################################################################
### http://www.w3id.org/smart-sensing/oshes/demo#coldStartTime
:coldStartTime rdf:type owl:DatatypeProperty .
### http://www.w3id.org/smart-sensing/oshes/demo#referenceLightLevel
:referenceLightLevel rdf:type owl:DatatypeProperty .
### http://www.w3id.org/smart-sensing/oshes/demo#sustainableTime
:sustainableTime rdf:type owl:DatatypeProperty .
#################################################################
# Classes
#################################################################
### http://www.w3id.org/smart-sensing/oshes/demo#SensorSpecification
:SensorSpecification rdf:type owl:Class ;
rdfs:subClassOf <http://www.w3id.org/smart-sensing/oshes#DesignSpecification> .
#################################################################
# Individuals
#################################################################
### http://www.w3id.org/smart-sensing/oshes/demo#context-room-1
:context-room-1 rdf:type owl:NamedIndividual ,
<http://www.w3id.org/smart-sensing/oshes#SystemContext> .
### http://www.w3id.org/smart-sensing/oshes/demo#sen-01
:sen-01 rdf:type owl:NamedIndividual ,
<http://www.w3id.org/smart-sensing/oshes#Sensor> ;
<http://www.w3id.org/smart-sensing/oshes#hardwareSpecification> :spec-sen-01 .
### http://www.w3id.org/smart-sensing/oshes/demo#spec-sen-01
:spec-sen-01 rdf:type owl:NamedIndividual ,
<http://www.w3id.org/smart-sensing/oshes#DesignSpecification> ;
<http://www.w3id.org/smart-sensing/oshes#energySource> <http://www.w3id.org/smart-sensing/oshes#AmbientLight> ;
<http://www.w3id.org/smart-sensing/oshes#bufferSize> 10 ;
<http://www.w3id.org/smart-sensing/oshes#expectedDailyInput> 4.5 ;
<http://www.w3id.org/smart-sensing/oshes#measuresQuantity> "T" .
### Generated by the OWL API (version 4.5.26.2023-07-17T20:34:13Z) https://github.com/owlcs/owlapi