Newer
Older
@prefix dcterms: <http://purl.org/dc/terms/> .
@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 s4ener: <https://saref.etsi.org/saref4ener/> .
@prefix saref: <https://saref.etsi.org/core/> .
@prefix vann: <http://purl.org/vocab/vann/>.
<http://www.w3.org/2006/time#DurationDescription>
rdfs:subClassOf [
rdf:type owl:Restriction ;
owl:maxCardinality "1"^^xsd:nonNegativeInteger ;
owl:onProperty s4ener:xsdDuration ;
] ;
.
<https://saref.etsi.org/saref4ener/>
owl:versionIRI <https://saref.etsi.org/saref4ener/v1.1.2/> ;
vann:preferredNamespacePrefix "s4ener" ;
vann:preferredNamespaceUri "https://saref.etsi.org/saref4ener/" ;
owl:versionInfo "v1.1.2" ;
dcterms:creator <https://www.linkedin.com/in/lauradaniele> ;
dcterms:description "SAREF4ENER is an extension of SAREF for the Energy domain that was created in collaboration with Energy@Home (http://www.energy-home.it) and EEBus (http://www.eebus.org/en), the major Italy- and Germany-based industry associations, to enable the interconnection of their (different) data models. SAREF4ENER focuses on demand response scenarios, in which customers can offer flexibility to the Smart Grid to manage their smart home devices by means of a Customer Energy Manager (CEM). The CEM is a logical function for optimizing energy consumption and/or production that can reside either in the home gateway or in the cloud. SAREF4ENER is published as an ETSI tecnical specificatoion (ETSI TS 103 410-1)."^^xsd:string ;
dcterms:modified "2016-12-13"^^xsd:date ;
dcterms:title "SAREF4ENER: an extension of SAREF for the energy domain created in collaboration with Energy@Home and EEBus associations"@en ;
owl:imports <https://saref.etsi.org/core/v3.1.1/> ;
dcterms:license <https://forge.etsi.org/etsi-software-license> ;
dcterms:publisher <https://www.etsi.org/> ;
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
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
.
s4ener:ActivationDelay
rdf:type owl:Class ;
rdfs:comment "The scheduled activation delay for a slot."^^xsd:string ;
rdfs:label "Activation delay"^^xsd:string ;
rdfs:subClassOf <http://www.w3.org/2006/time#TemporalEntity> ;
.
s4ener:ActivationDelayDurationDescription
rdf:type owl:Class ;
rdfs:comment "The duration description for the activation delay duration temporal entity"^^xsd:string ;
rdfs:label "Activation delay duration description"^^xsd:string ;
rdfs:subClassOf <http://www.w3.org/2006/time#DurationDescription> ;
.
s4ener:ActiveDurationDescription
rdf:type owl:Class ;
rdfs:comment "The duration description for the active duration (min and max, sum max and sum min) temporal entities"^^xsd:string ;
rdfs:label "Active duration description"^^xsd:string ;
rdfs:subClassOf <http://www.w3.org/2006/time#DurationDescription> ;
.
s4ener:ActiveDurationMax
rdf:type owl:Class ;
rdfs:comment "The active maximum duration a power sequence can run without interruption."^^xsd:string ;
rdfs:label "Active duration max"^^xsd:string ;
rdfs:subClassOf <http://www.w3.org/2006/time#TemporalEntity> ;
.
s4ener:ActiveDurationMin
rdf:type owl:Class ;
rdfs:comment "The active mininum duration a power sequence can run without interruption."^^xsd:string ;
rdfs:label "Active duration min"^^xsd:string ;
rdfs:subClassOf <http://www.w3.org/2006/time#TemporalEntity> ;
.
s4ener:ActiveDurationSumMax
rdf:type owl:Class ;
rdfs:comment "The active maximum duration a power sequence can run in total (summation of all active times)."^^xsd:string ;
rdfs:label "Active duration sum max"^^xsd:string ;
rdfs:subClassOf <http://www.w3.org/2006/time#TemporalEntity> ;
.
s4ener:ActiveDurationSumMin
rdf:type owl:Class ;
rdfs:comment "The active minimum duration a power sequence must run in total (summation of all active times)."^^xsd:string ;
rdfs:label "Active duration sum min"^^xsd:string ;
rdfs:subClassOf <http://www.w3.org/2006/time#TemporalEntity> ;
.
s4ener:ActuatorLevel
rdf:type owl:Class ;
rdfs:comment "Independent from the ActuatorSwitch class, the ActuatorLevel class enables a user or application to model LEVEL commands (start, up, percentageAbsolute, relative, etc.). This can be used to dim a light, set the speed of an electric motor, etc."^^xsd:string ;
rdfs:label "Actuator level"^^xsd:string ;
rdfs:subClassOf saref:Actuator ;
.
s4ener:ActuatorSwitch
rdf:type owl:Class ;
rdfs:comment "Basic on/off operations on a simple actuator can be modelled with the ActuatorSwitch class. Whether the function turns a device itself ON or OFF, or whether it switches a specific feature, depends on the implementation. For example, one could model the super freeze program of a freezer using ActuatorSwitch class. An ON command would then activate the super freeze program and an OFF command would deactivate it. This example shall just give an idea how ActuatorSwitch can be used for more purposes than only turning devices on and off."^^xsd:string ;
rdfs:label "Actuator switch"^^xsd:string ;
rdfs:subClassOf saref:Actuator ;
.
s4ener:AlternativesGroup
rdf:type owl:Class ;
rdfs:comment "A collection of power sequences for a certain profile"^^xsd:string ;
rdfs:label "Alternatives group"^^xsd:string ;
rdfs:subClassOf owl:Thing ;
rdfs:subClassOf [
rdf:type owl:Restriction ;
owl:allValuesFrom s4ener:PowerProfile ;
owl:onProperty s4ener:belongsTo ;
] ;
rdfs:subClassOf [
rdf:type owl:Restriction ;
owl:allValuesFrom s4ener:PowerSequence ;
owl:onProperty saref:consistsOf ;
] ;
rdfs:subClassOf [
rdf:type owl:Restriction ;
owl:minQualifiedCardinality "1"^^xsd:nonNegativeInteger ;
owl:onClass s4ener:PowerSequence ;
owl:onProperty saref:consistsOf ;
] ;
rdfs:subClassOf [
rdf:type owl:Restriction ;
owl:onClass s4ener:PowerProfile ;
owl:onProperty s4ener:belongsTo ;
owl:qualifiedCardinality "1"^^xsd:nonNegativeInteger ;
] ;
rdfs:subClassOf [
rdf:type owl:Restriction ;
owl:onDataRange xsd:unsignedInt ;
owl:onProperty s4ener:alternativesGroupID ;
owl:qualifiedCardinality "1"^^xsd:nonNegativeInteger ;
] ;
.
s4ener:AnticipationDurationDescription
rdf:type owl:Class ;
rdfs:comment "The duration description for the anticipation duration temporal entities"^^xsd:string ;
rdfs:label "Anticipation duration description"^^xsd:string ;
rdfs:subClassOf <http://www.w3.org/2006/time#DurationDescription> ;
.
s4ener:DefaultDuration
rdf:type owl:Class ;
rdfs:comment "The duration of a slot (SHALL be present in case of 'determined slot'). If a slot has a configurable lenght, this element SHALL reflect the currently configured lenght"^^xsd:string ;
rdfs:label "Default duration"^^xsd:string ;
rdfs:subClassOf <http://www.w3.org/2006/time#TemporalEntity> ;
.
s4ener:DefaultDurationDescription
rdf:type owl:Class ;
rdfs:comment "The duration description for the default duration temporal entity"^^xsd:string ;
rdfs:label "Default duration description"^^xsd:string ;
rdfs:subClassOf <http://www.w3.org/2006/time#DurationDescription> ;
.
s4ener:Device
rdf:type owl:Class ;
rdfs:comment "A specialization of a saref:Device that exposes a power profile with power sequences to the CEM (note that a s4ee:Device can also be called 'power sequence server'). Most of the existing devices can expose at most 1 power profile, but there are special cases in which more than one power profiles can be exposed by the same device. For example, consider the case of a combined fridge-freezer in which there are 2 logical devices (fridge and freezer) combined in 1 physical device. This combined device can expose 2 power profiles, one for the fridge and one for the freezer. A s4ee:Device (e.g. a household appliance or a smart meter) can also receive events about overload warning severity level and related load control commands (LoadControlEventData)"^^xsd:string ;
rdfs:label "Device"^^xsd:string ;
rdfs:subClassOf saref:Device ;
rdfs:subClassOf [
rdf:type owl:Restriction ;
owl:allValuesFrom s4ener:LoadControlEventData ;
owl:onProperty s4ener:receives ;
] ;
rdfs:subClassOf [
rdf:type owl:Restriction ;
owl:allValuesFrom s4ener:PowerProfile ;
owl:onProperty s4ener:exposes ;
] ;
rdfs:subClassOf [
rdf:type owl:Restriction ;
owl:maxCardinality "1"^^xsd:nonNegativeInteger ;
owl:onProperty s4ener:brandName ;
] ;
rdfs:subClassOf [
rdf:type owl:Restriction ;
owl:maxCardinality "1"^^xsd:nonNegativeInteger ;
owl:onProperty s4ener:deviceCode ;
] ;
rdfs:subClassOf [
rdf:type owl:Restriction ;
owl:maxCardinality "1"^^xsd:nonNegativeInteger ;
owl:onProperty s4ener:deviceName ;
] ;
rdfs:subClassOf [
rdf:type owl:Restriction ;
owl:maxCardinality "1"^^xsd:nonNegativeInteger ;
owl:onProperty s4ener:hardwareRevision ;
] ;
rdfs:subClassOf [
rdf:type owl:Restriction ;
owl:maxCardinality "1"^^xsd:nonNegativeInteger ;
owl:onProperty s4ener:manufacturerDescription ;
] ;
rdfs:subClassOf [
rdf:type owl:Restriction ;
owl:maxCardinality "1"^^xsd:nonNegativeInteger ;
owl:onProperty s4ener:manufacturerLabel ;
] ;
rdfs:subClassOf [
rdf:type owl:Restriction ;
owl:maxCardinality "1"^^xsd:nonNegativeInteger ;
owl:onProperty s4ener:manufacturerNodeIdentification ;
] ;
rdfs:subClassOf [
rdf:type owl:Restriction ;
owl:maxCardinality "1"^^xsd:nonNegativeInteger ;
owl:onProperty s4ener:serialNumber ;
] ;
rdfs:subClassOf [
rdf:type owl:Restriction ;
owl:maxCardinality "1"^^xsd:nonNegativeInteger ;
owl:onProperty s4ener:softwareRevision ;
] ;
rdfs:subClassOf [
rdf:type owl:Restriction ;
owl:maxCardinality "1"^^xsd:nonNegativeInteger ;
owl:onProperty s4ener:vendorCode ;
] ;
rdfs:subClassOf [
rdf:type owl:Restriction ;
owl:maxCardinality "1"^^xsd:nonNegativeInteger ;
owl:onProperty s4ener:vendorName ;
] ;
rdfs:subClassOf [
rdf:type owl:Restriction ;
owl:minCardinality "0"^^xsd:nonNegativeInteger ;
owl:onProperty s4ener:powerSource ;
] ;
rdfs:subClassOf [
rdf:type owl:Restriction ;
owl:minQualifiedCardinality "0"^^xsd:nonNegativeInteger ;
owl:onClass s4ener:LoadControlEventData ;
owl:onProperty s4ener:receives ;
] ;
rdfs:subClassOf [
rdf:type owl:Restriction ;
owl:minQualifiedCardinality "0"^^xsd:nonNegativeInteger ;
owl:onClass s4ener:PowerProfile ;
owl:onProperty s4ener:exposes ;
] ;
.
s4ener:DurationUncertainty
rdf:type owl:Class ;
rdfs:comment "The uncertainty of the duration "^^xsd:string ;
rdfs:label "Duration uncertainty"^^xsd:string ;
rdfs:subClassOf <http://www.w3.org/2006/time#TemporalEntity> ;
.
s4ener:DurationUncertaintyDescription
rdf:type owl:Class ;
rdfs:comment "The duration description for the duration uncertainty temporal entity"^^xsd:string ;
rdfs:label "Duration uncertainty description"^^xsd:string ;
rdfs:subClassOf <http://www.w3.org/2006/time#DurationDescription> ;
.
s4ener:EarliestStartTime
rdf:type owl:Class ;
rdfs:comment """The earliest possible start time for a power sequence or a slot. Only 'xs:duration' value types SHALL be used to denote a relative time which relates to 'now' as time 0.
Note: This element applies to the first repetition of the slot number only."""^^xsd:string ;
rdfs:label "Earliest start time"^^xsd:string ;
rdfs:subClassOf <http://www.w3.org/2006/time#TemporalEntity> ;
.
s4ener:ElapsedSlotTime
rdf:type owl:Class ;
rdfs:comment "If state is set to 'running' or 'paused' AND the slot is determined, this element CAN contain the time the slot has already been in 'running' state (this also means the value remains constant during a 'paused' state). Otherwise it SHALL be omitted."^^xsd:string ;
rdfs:label "Elapsed slot time"^^xsd:string ;
rdfs:subClassOf <http://www.w3.org/2006/time#TemporalEntity> ;
.
s4ener:EndTime
rdf:type owl:Class ;
rdfs:comment """The endTime of a power sequence. If the value is available, it SHALL be denoted here. Otherwise the element SHALL be omitted.
The end time of a slot MAY be stated in this element. The following equation SHALL apply: endTime - startTime = defaultDuration."""^^xsd:string ;
rdfs:label "End time"^^xsd:string ;
rdfs:subClassOf <http://www.w3.org/2006/time#TemporalEntity> ;
.
s4ener:EndTimeDurationDescription
rdf:type owl:Class ;
rdfs:comment "The duration description for the end time duration temporal entities"^^xsd:string ;
rdfs:label "End time duration Description"^^xsd:string ;
rdfs:subClassOf <http://www.w3.org/2006/time#DurationDescription> ;
.
s4ener:Energy
rdf:type owl:Class ;
rdfs:comment "Energy type and value in a slot (i.e., Energy, EnergyMin, EnergyMax, EnergyExpected, EnergyStandardDeviation, EnergySkewness); or the ResumeEnergyEstimated in a power sequence, i.e., the additional energy the device will consume before resuming its normal operation (after a pause)"^^xsd:string ;
rdfs:label "Energy"^^xsd:string ;
rdfs:subClassOf saref:Energy ;
.
s4ener:EnergyExpected
rdf:type owl:Class ;
rdfs:comment "A possible type of energy in a slot that represents the expected energy consumption and its value"^^xsd:string ;
rdfs:label "Energy expected"^^xsd:string ;
rdfs:subClassOf s4ener:Energy ;
.
s4ener:EnergyMax
rdf:type owl:Class ;
rdfs:comment "A possible type of energy in a slot that represents the maximum energy consumption and its value"^^xsd:string ;
rdfs:label "Energy max"^^xsd:string ;
rdfs:subClassOf s4ener:Energy ;
.
s4ener:EnergyMin
rdf:type owl:Class ;
rdfs:comment "A possible type of energy in a slot that represents the minimum energy consumption and its value"^^xsd:string ;
rdfs:label "Energy min"^^xsd:string ;
rdfs:subClassOf s4ener:Energy ;
.
s4ener:EnergySkewness
rdf:type owl:Class ;
rdfs:comment "A possible type of energy in a slot that represents the energy skewness and its value"^^xsd:string ;
rdfs:label "Energy skewness"^^xsd:string ;
rdfs:subClassOf s4ener:Energy ;
.
s4ener:EnergyStandardDeviation
rdf:type owl:Class ;
rdfs:comment "A possible type of energy in a slot that represents the energy standard deviation and its value"^^xsd:string ;
rdfs:label "Energy Standard Deviation"^^xsd:string ;
rdfs:subClassOf s4ener:Energy ;
.
s4ener:EventActionConsume
rdf:type owl:Class ;
rdfs:label "Event action consume"^^xsd:string ;
rdfs:subClassOf s4ener:LoadControlEventAction ;
owl:oneOf (
"s4ener:pause"^^xsd:string
"s4ener:resume"^^xsd:string
"s4ener:reduce"^^xsd:string
"s4ener:increase"^^xsd:string
"s4ener:emergency"^^xsd:string
"s4ener:normal"^^xsd:string
) ;
.
s4ener:EventActionProduce
rdf:type owl:Class ;
rdfs:label "Event action produce"^^xsd:string ;
rdfs:subClassOf s4ener:LoadControlEventAction ;
owl:oneOf (
"s4ener:pause"^^xsd:string
"s4ener:resume"^^xsd:string
"s4ener:reduce"^^xsd:string
"s4ener:increase"^^xsd:string
"s4ener:emergency"^^xsd:string
"s4ener:normal"^^xsd:string
) ;
.
s4ener:EventStateConsume
rdf:type owl:Class ;
rdfs:label "Event state consume"^^xsd:string ;
rdfs:subClassOf s4ener:LoadControlEventState ;
owl:oneOf (
"s4ener:eventAccepted"^^xsd:string
"s4ener:eventStarted"^^xsd:string
"s4ener:eventStopped"^^xsd:string
"s4ener:eventRejected"^^xsd:string
"s4ener:eventCancelled"^^xsd:string
"s4ener:eventError"^^xsd:string
) ;
.
s4ener:EventStateProduce
rdf:type owl:Class ;
rdfs:label "Event state produce"^^xsd:string ;
rdfs:subClassOf s4ener:LoadControlEventState ;
owl:oneOf (
"s4ener:eventAccepted"^^xsd:string
"s4ener:eventStarted"^^xsd:string
"s4ener:eventStopped"^^xsd:string
"s4ener:eventRejected"^^xsd:string
"s4ener:eventCancelled"^^xsd:string
"s4ener:eventError"^^xsd:string
) ;
.
s4ener:LatestEndTime
rdf:type owl:Class ;
rdfs:comment """The latest possible end time for a power sequence or a slot. Only 'xs:duration' value types SHALL be used to denote a relative time which relates to 'now' as time 0.
Note: This element applies to the first repetition of the slot number only."""^^xsd:string ;
rdfs:label "Latest end time"^^xsd:string ;
rdfs:subClassOf <http://www.w3.org/2006/time#TemporalEntity> ;
.
s4ener:LoadControlEventAction
rdf:type owl:Class ;
rdfs:comment "An action type used to express the action to be performed as a consequence of an event used to send overload warning severity level and related load control commands to a device (e.g. a household appliance or a smart meter)."^^xsd:string ;
rdfs:label "Load Control event action"^^xsd:string ;
.
s4ener:LoadControlEventData
rdf:type owl:Class ;
rdfs:comment "An event used to send overload warning severity level and related load control commands to a device (e.g. a household appliance or a smart meter)."^^xsd:string ;
rdfs:label "Load control event data"^^xsd:string ;
rdfs:subClassOf owl:Thing ;
rdfs:subClassOf [
rdf:type owl:Restriction ;
owl:allValuesFrom xsd:dateTime ;
owl:onProperty saref:hasTimestamp ;
] ;
rdfs:subClassOf [
rdf:type owl:Restriction ;
owl:allValuesFrom s4ener:Device ;
owl:onProperty s4ener:hasDevice ;
] ;
rdfs:subClassOf [
rdf:type owl:Restriction ;
owl:allValuesFrom s4ener:EventActionConsume ;
owl:onProperty s4ener:triggersEventActionConsume ;
] ;
rdfs:subClassOf [
rdf:type owl:Restriction ;
owl:allValuesFrom s4ener:EventActionProduce ;
owl:onProperty s4ener:triggersEventActionProduce ;
] ;
rdfs:subClassOf [
rdf:type owl:Restriction ;
owl:allValuesFrom s4ener:TimePeriod ;
owl:onProperty saref:hasTime ;
] ;
rdfs:subClassOf [
rdf:type owl:Restriction ;
owl:minCardinality "0"^^xsd:nonNegativeInteger ;
owl:onProperty s4ener:eventID ;
] ;
rdfs:subClassOf [
rdf:type owl:Restriction ;
owl:minQualifiedCardinality "0"^^xsd:nonNegativeInteger ;
owl:onClass s4ener:EventActionConsume ;
owl:onProperty s4ener:triggersEventActionConsume ;
] ;
rdfs:subClassOf [
rdf:type owl:Restriction ;
owl:minQualifiedCardinality "0"^^xsd:nonNegativeInteger ;
owl:onClass s4ener:EventActionProduce ;
owl:onProperty s4ener:triggersEventActionProduce ;
] ;
rdfs:subClassOf [
rdf:type owl:Restriction ;
owl:minQualifiedCardinality "1"^^xsd:nonNegativeInteger ;
owl:onClass s4ener:Device ;
owl:onProperty s4ener:hasDevice ;
] ;
rdfs:subClassOf [
rdf:type owl:Restriction ;
owl:minQualifiedCardinality "1"^^xsd:nonNegativeInteger ;
owl:onClass s4ener:TimePeriod ;
owl:onProperty saref:hasTime ;
] ;
rdfs:subClassOf [
rdf:type owl:Restriction ;
owl:minQualifiedCardinality "1"^^xsd:nonNegativeInteger ;
owl:onDataRange xsd:dateTime ;
owl:onProperty saref:hasTimestamp ;
] ;
.
s4ener:LoadControlEventState
rdf:type owl:Class ;
rdfs:comment "In the load control, it expresses the possible states of an event used to send overload warning severity level and related load control commands to a device (e.g. a household appliance or a smart meter)."^^xsd:string ;
rdfs:label "Load control event state "^^xsd:string ;
rdfs:subClassOf s4ener:State ;
.
s4ener:LoadControlStateData
rdf:type owl:Class ;
rdfs:comment "The representation of the state of an event used to send overload warning severity level and related load control commands to a device (e.g. a household appliance or a smart meter)."^^xsd:string ;
rdfs:label "Load control state data"^^xsd:string ;
rdfs:subClassOf owl:Thing ;
rdfs:subClassOf [
rdf:type owl:Restriction ;
owl:allValuesFrom xsd:dateTime ;
owl:onProperty saref:hasTimestamp ;
] ;
rdfs:subClassOf [
rdf:type owl:Restriction ;
owl:allValuesFrom s4ener:EventActionConsume ;
owl:onProperty s4ener:hasAppliedEventActionConsume ;
] ;
rdfs:subClassOf [
rdf:type owl:Restriction ;
owl:allValuesFrom s4ener:EventActionProduce ;
owl:onProperty s4ener:hasAppliedEventActionProduce ;
] ;
rdfs:subClassOf [
rdf:type owl:Restriction ;
owl:allValuesFrom s4ener:EventStateConsume ;
owl:onProperty s4ener:hasEventStateConsume ;
] ;
rdfs:subClassOf [
rdf:type owl:Restriction ;
owl:allValuesFrom s4ener:EventStateProduce ;
owl:onProperty s4ener:hasEventStateProduce ;
] ;
rdfs:subClassOf [
rdf:type owl:Restriction ;
owl:minQualifiedCardinality "0"^^xsd:nonNegativeInteger ;
owl:onClass s4ener:EventActionConsume ;
owl:onProperty s4ener:hasAppliedEventActionConsume ;
] ;
rdfs:subClassOf [
rdf:type owl:Restriction ;
owl:minQualifiedCardinality "0"^^xsd:nonNegativeInteger ;
owl:onClass s4ener:EventActionProduce ;
owl:onProperty s4ener:hasAppliedEventActionProduce ;
] ;
rdfs:subClassOf [
rdf:type owl:Restriction ;
owl:minQualifiedCardinality "0"^^xsd:nonNegativeInteger ;
owl:onClass s4ener:EventStateConsume ;
owl:onProperty s4ener:hasEventStateConsume ;
] ;
rdfs:subClassOf [
rdf:type owl:Restriction ;
owl:minQualifiedCardinality "0"^^xsd:nonNegativeInteger ;
owl:onClass s4ener:EventStateProduce ;
owl:onProperty s4ener:hasEventStateProduce ;
] ;
rdfs:subClassOf [
rdf:type owl:Restriction ;
owl:minQualifiedCardinality "0"^^xsd:nonNegativeInteger ;
owl:onDataRange xsd:unsignedInt ;
owl:onProperty s4ener:eventID ;
] ;
rdfs:subClassOf [
rdf:type owl:Restriction ;
owl:minQualifiedCardinality "1"^^xsd:nonNegativeInteger ;
owl:onDataRange xsd:dateTime ;
owl:onProperty saref:hasTimestamp ;
] ;
.
s4ener:MaxActivationDelay
rdf:type owl:Class ;
rdfs:comment "Maximum delay time between the end of the previous slot and the beginning of the current slot."^^xsd:string ;
rdfs:label "Max activation delay"^^xsd:string ;
rdfs:subClassOf <http://www.w3.org/2006/time#TemporalEntity> ;
.
s4ener:MaxAnticipation
rdf:type owl:Class ;
rdfs:comment "This field allows the anticipation of the phase if (and only if) the previous phase has the energy set to 0 Wh, each unit is a minute."^^xsd:string ;
rdfs:label "Max anticipation"^^xsd:string ;
rdfs:subClassOf <http://www.w3.org/2006/time#TemporalEntity> ;
.
s4ener:MaxDuration
rdf:type owl:Class ;
rdfs:comment "If a slot has a configurable duration, it SHALL be present and denote the maximum supported configuration. Note: This element applies to the first repetition of the slot number only"^^xsd:string ;
rdfs:label "Max duration"^^xsd:string ;
rdfs:subClassOf <http://www.w3.org/2006/time#TemporalEntity> ;
.
s4ener:MinDuration
rdf:type owl:Class ;
rdfs:comment "If a slot has a configurable duration, it SHALL be present and denote the minimum supported configuration. Note: This element applies to the first repetition of the slot number only."^^xsd:string ;
rdfs:label "Min duration"^^xsd:string ;
rdfs:subClassOf <http://www.w3.org/2006/time#TemporalEntity> ;
.
s4ener:PauseDurationDescription
rdf:type owl:Class ;
rdfs:comment "The duration description for the pause duration (max and min) temporal entities"^^xsd:string ;
rdfs:label "Pause duration description"^^xsd:string ;
rdfs:subClassOf <http://www.w3.org/2006/time#DurationDescription> ;
.
s4ener:PauseDurationMax
rdf:type owl:Class ;
rdfs:comment "The maximum duration a power sequence can pause after the end of an activity."^^xsd:string ;
rdfs:label "Pause duration max"^^xsd:string ;
rdfs:subClassOf <http://www.w3.org/2006/time#TemporalEntity> ;
.
s4ener:PauseDurationMin
rdf:type owl:Class ;
rdfs:comment "The minimum duration a power sequence can pause after the end of an activity."^^xsd:string ;
rdfs:label "Pause duration min"^^xsd:string ;
rdfs:subClassOf <http://www.w3.org/2006/time#TemporalEntity> ;
.
s4ener:PauseTime
rdf:type owl:Class ;
rdfs:comment "The pause time of a power sequence or a slot"^^xsd:string ;
rdfs:label "Pause time"^^xsd:string ;
rdfs:subClassOf <http://www.w3.org/2006/time#TemporalEntity> ;
.
s4ener:Power
rdf:type owl:Class ;
rdfs:comment "Power type and value in a slot (i.e. power, powerMin, powerMax, powerExpectedValue, powerStandardDeviation, powerSkewness)"^^xsd:string ;
rdfs:label "Power"^^xsd:string ;
rdfs:subClassOf saref:Power ;
.
s4ener:PowerExpected
rdf:type owl:Class ;
rdfs:comment "A possible type of power in a slot that represents the expected power consumption and its value"^^xsd:string ;
rdfs:label "Power expected "^^xsd:string ;
rdfs:subClassOf s4ener:Power ;
.
s4ener:PowerMax
rdf:type owl:Class ;
rdfs:comment "A possible type of power in a slot that represents the maximum power consumption and its value"^^xsd:string ;
rdfs:label "Power max"^^xsd:string ;
rdfs:subClassOf s4ener:Power ;
.
s4ener:PowerMin
rdf:type owl:Class ;
rdfs:comment "A possible type of power in a slot that represents the minimum power consumption and its value"^^xsd:string ;
rdfs:label "Power min"^^xsd:string ;
rdfs:subClassOf s4ener:Power ;
.
s4ener:PowerProfile
rdf:type owl:Class ;
rdfs:comment "A way to model curves of power and energy over time, which also provides definitions for the modelling of power scheduling including alternative plans. With a PowerProfile, a device (or power sequences server) exposes the power sequences that are potentially relevant for the CEM (or power sequences client). "^^xsd:string ;
rdfs:label "Power profile"^^xsd:string ;
rdfs:subClassOf saref:Profile ;
rdfs:subClassOf [
rdf:type owl:Restriction ;
owl:allValuesFrom s4ener:AlternativesGroup ;
owl:onProperty saref:consistsOf ;
] ;
rdfs:subClassOf [
rdf:type owl:Restriction ;
owl:allValuesFrom s4ener:Device ;
owl:onProperty s4ener:belongsTo ;
] ;
rdfs:subClassOf [
rdf:type owl:Restriction ;
owl:cardinality "1"^^xsd:nonNegativeInteger ;
owl:onProperty s4ener:alternativesCount ;
] ;
rdfs:subClassOf [
rdf:type owl:Restriction ;
owl:cardinality "1"^^xsd:nonNegativeInteger ;
owl:onProperty s4ener:nodeRemoteControllable ;
] ;
rdfs:subClassOf [
rdf:type owl:Restriction ;
owl:cardinality "1"^^xsd:nonNegativeInteger ;
owl:onProperty s4ener:supportsReselection ;
] ;
rdfs:subClassOf [
rdf:type owl:Restriction ;
owl:cardinality "1"^^xsd:nonNegativeInteger ;
owl:onProperty s4ener:supportsSingleSlotSchedulingOnly ;
] ;
rdfs:subClassOf [
rdf:type owl:Restriction ;
owl:cardinality "1"^^xsd:nonNegativeInteger ;
owl:onProperty s4ener:totalSequencesCountMax ;
] ;
rdfs:subClassOf [
rdf:type owl:Restriction ;
owl:minQualifiedCardinality "0"^^xsd:nonNegativeInteger ;
owl:onClass s4ener:AlternativesGroup ;
owl:onProperty saref:consistsOf ;
] ;
rdfs:subClassOf [
rdf:type owl:Restriction ;
owl:onClass s4ener:Device ;
owl:onProperty s4ener:belongsTo ;
owl:qualifiedCardinality "1"^^xsd:nonNegativeInteger ;
] ;
.
s4ener:PowerSequence
rdf:type owl:Class ;
rdfs:comment "The specification of a task, such as wash or tumble dry, according to user preferences and/or manufacturer's settings for a certain device. It is the most 'coarse' view, a power sequence can represent all single steps of a whole task,where the single steps are represented by slots. If the power sequence is pausable by the bound power sequences client, the property 'saref:isInterruptionPossible' SHALL be present and set to true. Otherwise it SHALL be omitted. If the power sequence is stoppable by the bound power sequences client, the property 'saref:isFlexible' SHALL be present and set to true. Otherwise it SHALL be omitted."^^xsd:string ;
rdfs:label "Power sequence"^^xsd:string ;
rdfs:subClassOf owl:Thing ;
rdfs:subClassOf [
rdf:type owl:Restriction ;
owl:allValuesFrom s4ener:AlternativesGroup ;
owl:onProperty s4ener:belongsTo ;
] ;
rdfs:subClassOf [
rdf:type owl:Restriction ;
owl:allValuesFrom s4ener:PowerSequenceState ;
owl:onProperty saref:hasState ;
] ;
rdfs:subClassOf [
rdf:type owl:Restriction ;
owl:allValuesFrom s4ener:ResumeCostEstimated ;
owl:onProperty saref:hasPrice ;
] ;
rdfs:subClassOf [
rdf:type owl:Restriction ;
owl:allValuesFrom s4ener:ResumeEnergyEstimated ;
owl:onProperty s4ener:hasEnergy ;
] ;
rdfs:subClassOf [
rdf:type owl:Restriction ;
owl:allValuesFrom s4ener:Slot ;
owl:onProperty saref:consistsOf ;
] ;
rdfs:subClassOf [
rdf:type owl:Restriction ;
owl:cardinality "1"^^xsd:nonNegativeInteger ;
owl:onProperty s4ener:sequenceID ;
] ;
rdfs:subClassOf [
rdf:type owl:Restriction ;
owl:cardinality "1"^^xsd:nonNegativeInteger ;
owl:onProperty s4ener:sequenceRemoteControllable ;
] ;
rdfs:subClassOf [
rdf:type owl:Restriction ;
owl:maxCardinality "1"^^xsd:nonNegativeInteger ;
owl:onProperty saref:hasDescription ;
] ;
rdfs:subClassOf [
rdf:type owl:Restriction ;
owl:maxCardinality "1"^^xsd:nonNegativeInteger ;
owl:onProperty s4ener:activeRepetitionNumber ;
] ;
rdfs:subClassOf [
rdf:type owl:Restriction ;
owl:maxCardinality "1"^^xsd:nonNegativeInteger ;
owl:onProperty s4ener:activeSlotNumber ;
] ;
rdfs:subClassOf [
rdf:type owl:Restriction ;
owl:maxCardinality "1"^^xsd:nonNegativeInteger ;
owl:onProperty s4ener:cheapest ;
] ;
rdfs:subClassOf [
rdf:type owl:Restriction ;
owl:maxCardinality "1"^^xsd:nonNegativeInteger ;
owl:onProperty s4ener:greenest ;
] ;
rdfs:subClassOf [
rdf:type owl:Restriction ;
owl:maxCardinality "1"^^xsd:nonNegativeInteger ;
owl:onProperty s4ener:isPausable ;
] ;
rdfs:subClassOf [
rdf:type owl:Restriction ;
owl:maxCardinality "1"^^xsd:nonNegativeInteger ;
owl:onProperty s4ener:isStoppable ;
] ;
rdfs:subClassOf [
rdf:type owl:Restriction ;
owl:maxCardinality "1"^^xsd:nonNegativeInteger ;
owl:onProperty s4ener:maxCyclesPerDay ;
] ;
rdfs:subClassOf [
rdf:type owl:Restriction ;
owl:maxCardinality "1"^^xsd:nonNegativeInteger ;
owl:onProperty s4ener:repetitionsTotal ;
] ;
rdfs:subClassOf [
rdf:type owl:Restriction ;
owl:maxQualifiedCardinality "1"^^xsd:nonNegativeInteger ;
owl:onClass s4ener:ActiveDurationMax ;
owl:onProperty saref:hasTime ;
] ;
rdfs:subClassOf [
rdf:type owl:Restriction ;
owl:maxQualifiedCardinality "1"^^xsd:nonNegativeInteger ;
owl:onClass s4ener:ActiveDurationMin ;
owl:onProperty saref:hasTime ;
] ;
rdfs:subClassOf [
rdf:type owl:Restriction ;
owl:maxQualifiedCardinality "1"^^xsd:nonNegativeInteger ;
owl:onClass s4ener:ActiveDurationSumMax ;
owl:onProperty saref:hasTime ;
] ;
rdfs:subClassOf [
rdf:type owl:Restriction ;
owl:maxQualifiedCardinality "1"^^xsd:nonNegativeInteger ;
owl:onClass s4ener:ActiveDurationSumMin ;
owl:onProperty saref:hasTime ;
] ;
rdfs:subClassOf [
rdf:type owl:Restriction ;
owl:maxQualifiedCardinality "1"^^xsd:nonNegativeInteger ;
owl:onClass s4ener:EarliestStartTime ;
owl:onProperty saref:hasTime ;
] ;
rdfs:subClassOf [
rdf:type owl:Restriction ;
owl:maxQualifiedCardinality "1"^^xsd:nonNegativeInteger ;
owl:onClass s4ener:ElapsedSlotTime ;
owl:onProperty saref:hasTime ;
] ;
rdfs:subClassOf [
rdf:type owl:Restriction ;
owl:maxQualifiedCardinality "1"^^xsd:nonNegativeInteger ;
owl:onClass s4ener:EndTime ;
owl:onProperty saref:hasTime ;
] ;
rdfs:subClassOf [
rdf:type owl:Restriction ;
owl:maxQualifiedCardinality "1"^^xsd:nonNegativeInteger ;
owl:onClass s4ener:LatestEndTime ;
owl:onProperty saref:hasTime ;
] ;
rdfs:subClassOf [
rdf:type owl:Restriction ;
owl:maxQualifiedCardinality "1"^^xsd:nonNegativeInteger ;
owl:onClass s4ener:PauseDurationMax ;
owl:onProperty saref:hasTime ;
] ;
rdfs:subClassOf [
rdf:type owl:Restriction ;
owl:maxQualifiedCardinality "1"^^xsd:nonNegativeInteger ;
owl:onClass s4ener:PauseDurationMin ;
owl:onProperty saref:hasTime ;
] ;
rdfs:subClassOf [
rdf:type owl:Restriction ;
owl:maxQualifiedCardinality "1"^^xsd:nonNegativeInteger ;
owl:onClass s4ener:RemainingSlotTime ;
owl:onProperty saref:hasTime ;
] ;
rdfs:subClassOf [
rdf:type owl:Restriction ;
owl:maxQualifiedCardinality "1"^^xsd:nonNegativeInteger ;
owl:onClass s4ener:ResumeCostEstimated ;
owl:onProperty saref:hasPrice ;
] ;
rdfs:subClassOf [
rdf:type owl:Restriction ;
owl:maxQualifiedCardinality "1"^^xsd:nonNegativeInteger ;
owl:onClass s4ener:ResumeEnergyEstimated ;
owl:onProperty s4ener:hasEnergy ;
] ;
rdfs:subClassOf [
rdf:type owl:Restriction ;
owl:minCardinality "0"^^xsd:nonNegativeInteger ;
owl:onProperty s4ener:taskIdentifier ;
] ;
rdfs:subClassOf [
rdf:type owl:Restriction ;
owl:minCardinality "0"^^xsd:nonNegativeInteger ;
owl:onProperty s4ener:valueSource ;
] ;
rdfs:subClassOf [
rdf:type owl:Restriction ;
owl:minQualifiedCardinality "1"^^xsd:nonNegativeInteger ;
owl:onClass s4ener:PowerSequenceState ;
owl:onProperty saref:hasState ;
] ;
rdfs:subClassOf [
rdf:type owl:Restriction ;
owl:minQualifiedCardinality "1"^^xsd:nonNegativeInteger ;
owl:onClass s4ener:Slot ;
owl:onProperty saref:consistsOf ;
] ;
rdfs:subClassOf [
rdf:type owl:Restriction ;
owl:minQualifiedCardinality "1"^^xsd:nonNegativeInteger ;
owl:onClass s4ener:StartTime ;
owl:onProperty saref:hasTime ;
] ;
rdfs:subClassOf [
rdf:type owl:Restriction ;
owl:onClass s4ener:AlternativesGroup ;
owl:onProperty s4ener:belongsTo ;
owl:qualifiedCardinality "1"^^xsd:nonNegativeInteger ;
] ;
.
s4ener:PowerSequenceState
rdf:type owl:Class ;
rdfs:comment "The current state of the power sequence. It can assume one of the values 'running', 'paused', 'scheduled', 'scheduled paused', 'pending', 'inactive', 'completed', or 'invalid'."^^xsd:string ;
rdfs:label "Power sequence state"^^xsd:string ;
rdfs:subClassOf s4ener:State ;
owl:oneOf (
"s4ener:running"^^xsd:string
"s4ener:paused"^^xsd:string
"s4ener:scheduled"^^xsd:string
"s4ener:scheduledPaused"^^xsd:string
"s4ener:pending"^^xsd:string
"s4ener:inactive"^^xsd:string
"s4ener:completed"^^xsd:string
"s4ener:invalid"^^xsd:string
) ;
.
s4ener:PowerSkewness
rdf:type owl:Class ;
rdfs:comment "A possible type of power in a slot that represents the power skewness and its value"^^xsd:string ;
rdfs:label "Power skewness"^^xsd:string ;
rdfs:subClassOf s4ener:Power ;
.
s4ener:PowerStandardDeviation
rdf:type owl:Class ;
rdfs:comment "A possible type of power in a slot that represents the power standard deviation and its value"^^xsd:string ;
rdfs:label "Power standard deviation"^^xsd:string ;
rdfs:subClassOf s4ener:Power ;
.
s4ener:RemainingPauseTime
rdf:type owl:Class ;
rdfs:comment "The duration that the current slot (s4ee:activeSlotNumber) permits being paused. This element SHALL ONLY be present if the power sequence is interruptible. Otherwise, it SHALL be omitted. In case the power sequence is interruptible the following rules apply: If the element is absent this means there is no explicit pause duration restriction for the current slot; a value of 0s denoted the slot does not permit being paused."^^xsd:string ;
rdfs:label "Remaining pause time"^^xsd:string ;
rdfs:subClassOf <http://www.w3.org/2006/time#TemporalEntity> ;
.
s4ener:RemainingSlotTime
rdf:type owl:Class ;
rdfs:comment "If state is set to 'running' or 'paused' AND the slot is determined, this element SHALL contain the time the slot still needs to be in 'running' state (this also means the value remains constant during a 'paused' state). Otherwise it SHALL be omitted."^^xsd:string ;
rdfs:label "Remaining slot time"^^xsd:string ;
rdfs:subClassOf <http://www.w3.org/2006/time#TemporalEntity> ;
.
s4ener:ResumeCostEstimated
rdf:type owl:Class ;
rdfs:comment "In a power sequence the additional costs for the resumption of a device to its normal operation (after a pause)."^^xsd:string ;
rdfs:label "Resume cost estimated"^^xsd:string ;
rdfs:subClassOf saref:Price ;
.
s4ener:ResumeEnergyEstimated
rdf:type owl:Class ;
rdfs:comment "In a power sequence, the additional energy the device will consume before resuming its normal operation (after a pause). This is only an estimated value which will not be added to the value stated in any slot value information."^^xsd:string ;
rdfs:label "Resume energy estimated"^^xsd:string ;
rdfs:subClassOf s4ener:Energy ;
.
s4ener:Slot
rdf:type owl:Class ;
rdfs:comment "The single steps of a power sequence are represented by slots. A slot is associated with a slot number (while a power sequence is associated with a power sequence identifier). The slot numbers of two power sequences should be considered independent from each other, i.e., slot number 7 of sequence 1 describes a different slot than slot number 7 of sequence 2. Therefore a slot is only uniquely identified in combination with a sequence ID. "^^xsd:string ;
rdfs:label "Slot"^^xsd:string ;
rdfs:subClassOf owl:Thing ;
rdfs:subClassOf [
rdf:type owl:Restriction ;
owl:allValuesFrom saref:Time ;
owl:onProperty saref:hasTime ;
] ;
rdfs:subClassOf [
rdf:type owl:Restriction ;
owl:allValuesFrom s4ener:Energy ;
owl:onProperty s4ener:hasEnergyValueType ;
] ;
rdfs:subClassOf [
rdf:type owl:Restriction ;
owl:allValuesFrom s4ener:Power ;
owl:onProperty s4ener:hasPowerValueType ;
] ;
rdfs:subClassOf [
rdf:type owl:Restriction ;
owl:allValuesFrom s4ener:PowerSequence ;
owl:onProperty s4ener:belongsTo ;
] ;
rdfs:subClassOf [
rdf:type owl:Restriction ;
owl:cardinality "1"^^xsd:nonNegativeInteger ;
owl:onProperty s4ener:slotNumber ;
] ;
rdfs:subClassOf [
rdf:type owl:Restriction ;
owl:maxCardinality "1"^^xsd:nonNegativeInteger ;
owl:onProperty saref:hasDescription ;
] ;
rdfs:subClassOf [
rdf:type owl:Restriction ;
owl:maxCardinality "1"^^xsd:nonNegativeInteger ;
owl:onProperty s4ener:optionalSlot ;
] ;
rdfs:subClassOf [
rdf:type owl:Restriction ;
owl:maxCardinality "1"^^xsd:nonNegativeInteger ;
owl:onProperty s4ener:slotActivated ;
] ;
rdfs:subClassOf [
rdf:type owl:Restriction ;
owl:maxQualifiedCardinality "1"^^xsd:nonNegativeInteger ;
owl:onClass s4ener:DefaultDuration ;
owl:onProperty saref:hasTime ;
] ;
rdfs:subClassOf [
rdf:type owl:Restriction ;
owl:maxQualifiedCardinality "1"^^xsd:nonNegativeInteger ;
owl:onClass s4ener:DurationUncertainty ;
owl:onProperty saref:hasTime ;
] ;
rdfs:subClassOf [
rdf:type owl:Restriction ;
owl:maxQualifiedCardinality "1"^^xsd:nonNegativeInteger ;
owl:onClass s4ener:EarliestStartTime ;
owl:onProperty saref:hasTime ;
] ;
rdfs:subClassOf [
rdf:type owl:Restriction ;
owl:maxQualifiedCardinality "1"^^xsd:nonNegativeInteger ;
owl:onClass s4ener:EndTime ;
owl:onProperty saref:hasTime ;
] ;
rdfs:subClassOf [
rdf:type owl:Restriction ;
owl:maxQualifiedCardinality "1"^^xsd:nonNegativeInteger ;
owl:onClass s4ener:LatestEndTime ;
owl:onProperty saref:hasTime ;
] ;
rdfs:subClassOf [
rdf:type owl:Restriction ;
owl:maxQualifiedCardinality "1"^^xsd:nonNegativeInteger ;
owl:onClass s4ener:MaxDuration ;
owl:onProperty saref:hasTime ;
] ;
rdfs:subClassOf [
rdf:type owl:Restriction ;
owl:maxQualifiedCardinality "1"^^xsd:nonNegativeInteger ;
owl:onClass s4ener:MinDuration ;
owl:onProperty saref:hasTime ;
] ;
rdfs:subClassOf [
rdf:type owl:Restriction ;
owl:maxQualifiedCardinality "1"^^xsd:nonNegativeInteger ;
owl:onClass s4ener:RemainingPauseTime ;
owl:onProperty saref:hasTime ;
] ;
rdfs:subClassOf [
rdf:type owl:Restriction ;
owl:maxQualifiedCardinality "1"^^xsd:nonNegativeInteger ;
owl:onClass s4ener:StartTime ;
owl:onProperty saref:hasTime ;
] ;
rdfs:subClassOf [
rdf:type owl:Restriction ;
owl:minQualifiedCardinality "1"^^xsd:nonNegativeInteger ;
owl:onClass [
rdf:type owl:Class ;
owl:unionOf (
s4ener:Energy
s4ener:Power
) ;
] ;
owl:onProperty s4ener:hasValueType ;
] ;
rdfs:subClassOf [
rdf:type owl:Restriction ;
owl:onClass s4ener:PowerSequence ;
owl:onProperty s4ener:belongsTo ;
owl:qualifiedCardinality "1"^^xsd:nonNegativeInteger ;
] ;
.
s4ener:SlotTimeDurationDescription
rdf:type owl:Class ;
rdfs:comment "The duration description for the slot time duration temporal entities"^^xsd:string ;
rdfs:label "Slot time duration description"^^xsd:string ;
rdfs:subClassOf <http://www.w3.org/2006/time#DurationDescription> ;