Newer
Older
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
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
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
1738
1739
1740
1741
1742
1743
1744
1745
1746
1747
1748
1749
1750
1751
1752
1753
1754
1755
1756
1757
1758
1759
1760
1761
1762
1763
1764
1765
1766
1767
1768
1769
1770
1771
1772
1773
1774
1775
1776
1777
1778
1779
1780
1781
1782
1783
1784
1785
1786
1787
1788
1789
1790
1791
1792
1793
1794
1795
1796
1797
1798
1799
1800
1801
1802
1803
1804
1805
1806
1807
1808
1809
1810
1811
1812
1813
1814
1815
1816
1817
1818
1819
1820
1821
1822
1823
1824
1825
1826
1827
1828
1829
1830
1831
1832
1833
1834
1835
1836
1837
1838
1839
1840
1841
1842
1843
1844
1845
1846
1847
1848
1849
1850
1851
1852
1853
1854
1855
1856
1857
1858
1859
1860
1861
1862
1863
1864
1865
1866
1867
1868
1869
1870
1871
1872
1873
1874
1875
1876
1877
1878
1879
1880
1881
1882
1883
1884
1885
1886
1887
1888
1889
1890
1891
1892
1893
1894
1895
1896
1897
1898
1899
1900
1901
1902
1903
1904
1905
1906
1907
1908
1909
1910
1911
1912
1913
1914
1915
1916
1917
1918
1919
1920
1921
1922
1923
1924
1925
1926
1927
1928
1929
1930
1931
1932
1933
1934
1935
1936
1937
1938
1939
1940
1941
1942
1943
1944
1945
1946
1947
1948
1949
1950
1951
1952
1953
1954
1955
1956
1957
1958
1959
1960
1961
1962
1963
1964
1965
1966
1967
1968
1969
1970
1971
1972
1973
1974
1975
1976
1977
1978
1979
1980
1981
1982
1983
1984
1985
1986
1987
1988
1989
1990
1991
1992
1993
1994
1995
1996
1997
1998
1999
2000
2001
2002
2003
2004
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
2025
2026
2027
2028
2029
2030
2031
2032
2033
2034
2035
2036
2037
2038
2039
2040
2041
2042
2043
2044
2045
2046
2047
2048
2049
2050
2051
2052
2053
2054
2055
2056
2057
2058
2059
2060
2061
2062
2063
2064
2065
2066
2067
2068
2069
2070
2071
2072
2073
2074
2075
2076
2077
2078
2079
2080
2081
2082
2083
2084
2085
2086
2087
2088
2089
2090
2091
2092
2093
2094
2095
2096
2097
2098
2099
2100
2101
2102
2103
2104
2105
2106
2107
2108
2109
2110
2111
2112
2113
2114
2115
2116
2117
2118
2119
2120
2121
2122
2123
2124
2125
2126
2127
2128
2129
2130
2131
2132
2133
2134
2135
2136
2137
2138
2139
2140
2141
2142
2143
2144
2145
2146
2147
2148
2149
2150
2151
2152
2153
2154
2155
2156
2157
2158
2159
2160
2161
2162
2163
2164
2165
2166
2167
2168
2169
2170
2171
2172
2173
2174
2175
2176
2177
2178
2179
2180
2181
2182
2183
2184
2185
2186
2187
2188
2189
2190
2191
2192
2193
2194
2195
2196
2197
2198
2199
2200
2201
2202
2203
2204
2205
2206
2207
2208
2209
2210
2211
2212
2213
2214
2215
2216
2217
2218
2219
2220
2221
2222
2223
2224
2225
2226
2227
2228
2229
2230
2231
2232
2233
2234
2235
2236
2237
2238
2239
2240
2241
2242
2243
2244
2245
2246
2247
2248
2249
2250
2251
2252
2253
2254
2255
2256
2257
2258
2259
2260
2261
2262
2263
2264
2265
2266
2267
2268
2269
2270
2271
2272
2273
2274
2275
2276
2277
2278
2279
2280
2281
2282
2283
2284
2285
2286
2287
2288
2289
2290
2291
2292
2293
2294
2295
2296
2297
2298
2299
2300
2301
2302
2303
2304
2305
2306
2307
2308
2309
2310
2311
2312
2313
2314
2315
2316
2317
2318
2319
2320
2321
2322
2323
2324
2325
2326
2327
2328
2329
2330
2331
2332
2333
2334
2335
2336
2337
2338
2339
2340
2341
2342
2343
2344
2345
2346
2347
2348
2349
2350
2351
2352
2353
2354
2355
2356
2357
2358
2359
2360
2361
2362
2363
2364
2365
2366
2367
2368
2369
2370
2371
2372
2373
2374
2375
2376
2377
2378
2379
2380
2381
2382
2383
2384
2385
2386
2387
2388
2389
2390
2391
2392
2393
2394
2395
2396
2397
2398
2399
2400
2401
2402
2403
2404
2405
2406
2407
2408
2409
2410
2411
2412
2413
2414
2415
2416
2417
2418
2419
2420
2421
2422
2423
2424
2425
2426
2427
2428
2429
2430
2431
2432
2433
2434
2435
2436
2437
2438
2439
2440
2441
2442
2443
2444
2445
2446
2447
2448
2449
2450
2451
2452
2453
2454
2455
2456
2457
2458
2459
2460
2461
2462
2463
2464
2465
2466
2467
2468
2469
2470
2471
2472
2473
2474
2475
2476
2477
2478
2479
2480
2481
2482
2483
2484
2485
2486
2487
2488
2489
2490
2491
2492
2493
2494
2495
2496
2497
2498
2499
2500
2501
2502
2503
2504
2505
2506
2507
2508
2509
2510
2511
2512
2513
2514
2515
2516
2517
2518
2519
2520
2521
2522
2523
2524
2525
2526
2527
2528
2529
2530
2531
2532
2533
2534
2535
2536
2537
2538
2539
2540
2541
2542
2543
2544
2545
2546
2547
2548
2549
2550
2551
2552
2553
2554
2555
2556
2557
2558
2559
2560
2561
2562
2563
2564
2565
2566
2567
2568
2569
2570
2571
2572
2573
2574
2575
2576
2577
2578
2579
2580
2581
2582
2583
2584
2585
2586
2587
2588
2589
2590
2591
2592
2593
2594
2595
2596
2597
2598
2599
2600
2601
2602
2603
2604
2605
2606
2607
2608
2609
2610
2611
2612
2613
2614
2615
2616
2617
2618
2619
2620
2621
2622
2623
2624
2625
2626
2627
2628
2629
2630
2631
2632
2633
2634
2635
2636
2637
2638
2639
2640
2641
2642
2643
2644
2645
2646
2647
2648
2649
2650
2651
2652
2653
2654
2655
2656
2657
2658
2659
2660
2661
2662
2663
2664
2665
2666
2667
2668
2669
2670
2671
2672
2673
2674
2675
2676
2677
2678
2679
2680
2681
2682
2683
2684
2685
2686
2687
2688
2689
2690
2691
2692
2693
2694
2695
2696
2697
2698
2699
2700
2701
2702
2703
2704
2705
2706
2707
2708
2709
2710
2711
2712
2713
2714
2715
2716
2717
2718
2719
2720
2721
2722
2723
2724
2725
2726
2727
2728
2729
2730
2731
2732
2733
2734
2735
2736
2737
2738
2739
2740
2741
2742
2743
2744
2745
2746
2747
2748
2749
2750
2751
2752
2753
2754
2755
2756
2757
2758
2759
2760
2761
2762
2763
2764
2765
2766
2767
2768
2769
2770
2771
2772
2773
2774
2775
2776
2777
2778
2779
2780
2781
2782
2783
2784
2785
2786
2787
2788
2789
2790
2791
2792
2793
2794
2795
2796
2797
2798
2799
2800
2801
2802
2803
2804
2805
2806
2807
2808
2809
2810
2811
2812
2813
2814
2815
2816
2817
2818
2819
2820
2821
2822
2823
2824
2825
2826
2827
2828
2829
2830
2831
2832
2833
2834
2835
2836
2837
2838
2839
2840
2841
2842
2843
2844
2845
2846
2847
2848
2849
2850
2851
2852
2853
2854
2855
2856
2857
2858
2859
2860
2861
2862
2863
2864
2865
2866
2867
2868
2869
2870
2871
2872
2873
2874
2875
2876
2877
2878
2879
2880
2881
2882
2883
2884
2885
2886
2887
2888
2889
2890
2891
2892
2893
2894
2895
2896
2897
2898
2899
2900
2901
2902
2903
2904
2905
2906
2907
2908
2909
2910
2911
2912
2913
2914
2915
2916
2917
2918
2919
2920
2921
2922
2923
2924
2925
2926
2927
2928
2929
2930
2931
2932
2933
2934
2935
2936
2937
2938
2939
2940
2941
2942
2943
2944
2945
2946
2947
2948
2949
2950
2951
2952
2953
2954
2955
2956
2957
2958
2959
2960
2961
2962
2963
2964
2965
2966
2967
2968
2969
2970
2971
2972
2973
2974
2975
2976
2977
2978
2979
2980
2981
2982
2983
2984
2985
2986
2987
2988
2989
2990
2991
2992
2993
2994
2995
2996
2997
2998
2999
3000
3001
3002
3003
3004
3005
3006
3007
3008
3009
3010
3011
3012
3013
3014
3015
3016
3017
3018
3019
3020
3021
3022
3023
3024
3025
3026
3027
3028
3029
3030
3031
3032
3033
3034
3035
3036
3037
3038
3039
3040
3041
3042
3043
3044
3045
3046
3047
3048
3049
3050
3051
3052
3053
3054
3055
3056
3057
3058
3059
3060
3061
3062
3063
3064
3065
3066
3067
3068
3069
3070
3071
3072
3073
3074
3075
3076
3077
3078
3079
3080
3081
3082
3083
3084
3085
3086
3087
3088
3089
3090
3091
3092
3093
3094
3095
3096
3097
3098
3099
3100
3101
3102
3103
3104
3105
3106
3107
3108
3109
3110
3111
3112
3113
3114
3115
3116
3117
3118
3119
3120
3121
3122
3123
3124
3125
3126
3127
3128
3129
3130
3131
3132
3133
3134
3135
3136
3137
3138
3139
3140
3141
3142
3143
3144
3145
3146
3147
3148
3149
3150
3151
3152
3153
3154
3155
3156
3157
3158
3159
3160
3161
3162
3163
3164
3165
3166
3167
3168
3169
3170
3171
3172
3173
3174
3175
3176
3177
3178
3179
3180
3181
3182
3183
3184
3185
3186
3187
3188
3189
3190
3191
3192
3193
3194
3195
3196
3197
3198
3199
3200
3201
3202
3203
3204
3205
3206
3207
3208
3209
3210
3211
3212
3213
3214
3215
3216
3217
3218
3219
3220
3221
3222
3223
3224
3225
3226
3227
3228
3229
3230
3231
3232
3233
3234
3235
3236
3237
3238
3239
3240
3241
3242
3243
3244
3245
3246
3247
3248
3249
3250
3251
3252
3253
3254
3255
3256
3257
3258
3259
3260
3261
3262
3263
3264
3265
3266
3267
3268
3269
3270
3271
3272
3273
3274
3275
3276
3277
3278
3279
3280
3281
3282
3283
3284
3285
3286
3287
3288
3289
3290
3291
3292
3293
3294
3295
3296
3297
3298
3299
3300
3301
3302
3303
3304
3305
3306
3307
3308
3309
3310
3311
3312
3313
3314
3315
3316
3317
3318
3319
3320
3321
3322
3323
3324
3325
3326
3327
3328
3329
3330
3331
3332
3333
3334
3335
3336
3337
3338
3339
3340
3341
3342
3343
3344
3345
3346
3347
3348
3349
3350
3351
3352
3353
3354
3355
3356
3357
3358
3359
3360
3361
3362
3363
3364
3365
3366
3367
3368
3369
3370
3371
3372
3373
3374
3375
3376
3377
3378
3379
3380
3381
3382
3383
3384
3385
3386
3387
3388
3389
3390
3391
3392
3393
3394
3395
3396
3397
3398
3399
3400
3401
3402
3403
3404
3405
3406
3407
3408
3409
3410
3411
3412
3413
3414
3415
3416
3417
3418
3419
3420
3421
3422
3423
3424
3425
3426
3427
3428
3429
3430
3431
3432
3433
3434
3435
3436
3437
3438
3439
3440
3441
3442
3443
3444
3445
3446
3447
3448
3449
3450
3451
3452
3453
3454
3455
3456
3457
3458
3459
3460
3461
3462
3463
3464
3465
3466
3467
3468
3469
3470
3471
3472
3473
3474
3475
3476
3477
3478
3479
3480
3481
3482
3483
3484
3485
3486
3487
3488
3489
3490
3491
3492
3493
3494
3495
3496
3497
3498
3499
3500
3501
3502
3503
3504
3505
3506
3507
3508
3509
3510
3511
3512
3513
3514
3515
3516
3517
3518
3519
3520
3521
3522
3523
3524
3525
3526
3527
3528
3529
3530
@prefix dcterms: <http://purl.org/dc/terms/> .
@prefix foaf: <http://xmlns.com/foaf/0.1/> .
@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 time: <http://www.w3.org/2006/time#> .
@prefix vann: <http://purl.org/vocab/vann/> .
@prefix xsd: <http://www.w3.org/2001/XMLSchema#> .
s4ener:
a owl:Ontology ;
dcterms:contributor <https://www.linkedin.com/in/mente-konsman-b0a1711/> ;
dcterms:creator <https://www.linkedin.com/in/bouterca/> ;
dcterms:creator <https://www.linkedin.com/in/giulia-biagioni> ;
dcterms:creator <https://www.linkedin.com/in/lauradaniele> ;
dcterms:description """The flexibility ontology module (ic-flex) is by design tightly integrated with SAREF,
SAREF4ENER and the following InterConnect modules: power limit (ic-pwlm),
incentive table (ic-inc), S2 (ic-s2), data-point (ic-data) and forecast (ic-fc)
The main concept of the ic-flex module is the s4ener:FlexOffer, which allows to
represent a flexibility offer (or schedule) as a combination of multiple time-series, data-points and forecasts.
It also allows to specify a creation time (s4ener:hasCreationTime), validity
period (s4ener:hasEffectivePeriod) and provenance (s4ener:producedBy) for
the offer, on top of the creation time, validity period and provenance already specified for the time-series and data-points included in the offer.
The additional key aspect captured in the ic-flex module is that a flex offer can also include various categories of flexibility, which are modelled as subclasses of the s4ener:FlexibilityProfile class, as follows:
- Power Profile flexibilty is modelled as s4ener:PowerProfile based on the EEBUS spec
- Tariff based flexibility (s4ener:TariffBased) is implemented using the incentive table (ic-inc) ontology based on the EEBUS spec (note that tariif-based felxibility does note exist in S2)
- Power limit flexibility (ic-pwlm:PowerLimit) is implemented using thepower limit (ic-pwlm) ontology based on the EEBUS spec (and compliant also with S2)
- Power Envelope flexibility (s4ener:PowerEnvelope) is implemented using theS2 (ic-s2) that follows the S2 specification (and compliant also with EEBUS)
- Demand driven flexibility (s4ener:DemandDriven) flexibility (s4ener:PowerEnvelope) is implemented using theS2 (ic-s2) that follows the S2 specification (and compliant also with EEBUS)
- Operation mode flexibility (s4ener:OperationMode) is implemented using theS2 (ic-s2) that follows the S2 specification (and compliant also with S2)
- Fill rate based flexibility (s4ener:FillRateBased is implemented using theS2 (ic-s2) that follows the S2 specification (and compliant also with S2)"""@en ;
dcterms:license <https://forge.etsi.org/etsi-software-license> ;
dcterms:modified "2023-03-29"^^xsd:date ;
dcterms:publisher <https://www.etsi.org/> ;
dcterms:source <https://saref.etsi.org/sources/saref4ener/> ;
dcterms:title "SAREF for Energy Flexibility"@en ;
vann:preferredNamespacePrefix "s4ener" ;
vann:preferredNamespaceUri "https://saref.etsi.org/saref4ener/" ;
owl:imports <https://saref.etsi.org/core/v3.1.1/> ;
owl:versionIRI <https://saref.etsi.org/saref4ener/v1.2.1/> ;
owl:versionInfo "v1.2.1" ;
.
s4ener:Aborted
a owl:NamedIndividual ;
a s4ener:InstructionStatus ;
a s4ener:PowerSequenceStatus ;
rdfs:comment "Instruction was aborted." ;
rdfs:comment "The selected PPBC.PowerSequence was aborted by the device and will not continue" ;
rdfs:label "Aborted"@en ;
.
s4ener:AbsoluteCost
a owl:NamedIndividual ;
a s4ener:IncentiveType ;
rdfs:comment "The incentive type ''absolute cost'' defined in the incentive table."@en ;
rdfs:label "Absolute cost"@en ;
.
s4ener:Accepted
a owl:NamedIndividual ;
a s4ener:InstructionStatus ;
rdfs:comment "Instruction has been accepted" ;
rdfs:label "Accepted"@en ;
.
s4ener:ActivationDelayDurationDescription
a owl:Class ;
rdfs:comment "The duration description for the activation delay duration temporal entity"@en ;
rdfs:label "Activation delay duration description"@en ;
rdfs:subClassOf time:DurationDescription ;
owl:deprecated true ;
.
s4ener:ActiveDurationDescription
a owl:Class ;
rdfs:comment "The duration description for the active duration (min and max, sum max and sum min) temporal entities"@en ;
rdfs:label "Active duration description"@en ;
rdfs:subClassOf time:DurationDescription ;
owl:deprecated true ;
.
s4ener:ActiveDurationMax
a owl:Class ;
rdfs:comment "The active maximum duration a power sequence can run without interruption."@en ;
rdfs:label "Active duration max"@en ;
rdfs:subClassOf time:TemporalEntity ;
owl:deprecated true ;
.
s4ener:ActiveDurationMin
a owl:Class ;
rdfs:comment "The active mininum duration a power sequence can run without interruption."@en ;
rdfs:label "Active duration min"@en ;
rdfs:subClassOf time:TemporalEntity ;
owl:deprecated true ;
.
s4ener:ActiveDurationSumMax
a owl:Class ;
rdfs:comment "The active maximum duration a power sequence can run in total (summation of all active times)."@en ;
rdfs:label "Active duration sum max"@en ;
rdfs:subClassOf time:TemporalEntity ;
owl:deprecated true ;
.
s4ener:ActiveDurationSumMin
a owl:Class ;
rdfs:comment "The active minimum duration a power sequence must run in total (summation of all active times)."@en ;
rdfs:label "Active duration sum min"@en ;
rdfs:subClassOf time:TemporalEntity ;
owl:deprecated true ;
.
s4ener:ActuatorLevel
a 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."@en ;
rdfs:label "Actuator level"@en ;
rdfs:subClassOf saref:Actuator ;
.
s4ener:ActuatorSwitch
a 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."@en ;
rdfs:label "Actuator switch"@en ;
rdfs:subClassOf saref:Actuator ;
.
s4ener:AllowedLimitRange
a rdfs:Class ;
rdfs:comment "The actual constraints of an Power Envelope Based Profile." ;
rdfs:label "Allowed limit range"@en ;
rdfs:subClassOf owl:Thing ;
.
s4ener:AlternativesGroup
a owl:Class ;
rdfs:comment "A collection of power sequences for a certain profile"@en ;
rdfs:label "Alternatives group"@en ;
rdfs:subClassOf [
a owl:Restriction ;
owl:allValuesFrom s4ener:PowerProfile ;
owl:onProperty s4ener:belongsTo ;
] ;
rdfs:subClassOf [
a owl:Restriction ;
owl:allValuesFrom s4ener:PowerSequence ;
owl:onProperty saref:consistsOf ;
] ;
rdfs:subClassOf [
a owl:Restriction ;
owl:minQualifiedCardinality "1"^^xsd:nonNegativeInteger ;
owl:onClass s4ener:PowerSequence ;
owl:onProperty saref:consistsOf ;
] ;
rdfs:subClassOf [
a owl:Restriction ;
owl:onClass s4ener:PowerProfile ;
owl:onProperty s4ener:belongsTo ;
owl:qualifiedCardinality "1"^^xsd:nonNegativeInteger ;
] ;
rdfs:subClassOf [
a owl:Restriction ;
owl:onDataRange xsd:unsignedInt ;
owl:onProperty s4ener:alternativesGroupID ;
owl:qualifiedCardinality "1"^^xsd:nonNegativeInteger ;
] ;
.
s4ener:AnticipationDurationDescription
a owl:Class ;
rdfs:comment "The duration description for the anticipation duration temporal entities"@en ;
rdfs:label "Anticipation duration description"@en ;
rdfs:subClassOf time:DurationDescription ;
owl:deprecated true ;
.
s4ener:Average
a owl:NamedIndividual ;
a s4ener:Usage ;
rdfs:comment "The datapoint indicates an average value aggregated over a number of values." ;
rdfs:label "Average"@en ;
.
s4ener:BaseLine
a owl:NamedIndividual ;
a s4ener:Usage ;
rdfs:comment "This datapoint indicates the baseline." ;
rdfs:label "Baseline"@en ;
.
s4ener:BatteryPowerSource
a s4ener:PowerSource ;
rdfs:comment "This Power Source codelist element indicates that a battery is the power source of this device." ;
rdfs:label "Battery power source"@en ;
.
s4ener:CO2Emission
a owl:NamedIndividual ;
a s4ener:IncentiveType ;
rdfs:comment "The incentive type ''CO2 Emission'' defined in the incentive table."@en ;
rdfs:label "CO2 Emission"@en ;
.
s4ener:Calculated
a s4ener:ValueSource ;
rdfs:comment "This value source codelist element indicates that this measurement has been calculated instead of measured or empirical." ;
rdfs:label "Calculated"@en ;
.
s4ener:Committed
a owl:NamedIndividual ;
a s4ener:ScopeType ;
rdfs:comment "The committed version of this concept, usually an incentive table or power plan"@en ;
rdfs:label "Committed"@en ;
.
s4ener:CommodityQuantity
a owl:Class ;
rdfs:comment "The various commodity quantities introduced by the S2 standard." ;
rdfs:label "Commodity Quantity"@en ;
.
s4ener:Completed
a owl:NamedIndividual ;
a s4ener:PowerSequenceState ;
rdfs:comment "Power sequence state with value 'completed'"@en ;
rdfs:label "Completed"@en ;
.
s4ener:Consumption
a owl:NamedIndividual ;
a s4ener:Usage ;
rdfs:comment "This datapoint indicates the consumption." ;
rdfs:label "Consumption"@en ;
.
s4ener:ContractualPowerLimit
a owl:Class ;
rdfs:comment "The contractual power limit of a device"@en ;
rdfs:label "Contractual Power Limit"@en ;
rdfs:subClassOf s4ener:PowerLimit ;
.
s4ener:DCPowerSource
a s4ener:PowerSource ;
rdfs:comment "This Power Source codelist element indicates that the type of power source is DC." ;
rdfs:label "DC Power source"@en ;
.
s4ener:DDBCInstruction
a owl:Class ;
rdfs:comment "An Instruction as specified for an Demand Driven Based Control Profile." ;
rdfs:label "Demand Driven Based Control Instruction"@en ;
rdfs:subClassOf s4ener:FlexibilityInstruction ;
.
s4ener:DataPoint
a owl:Class ;
rdfs:comment """A data point is a quantity that is extended with various pieces of process information, namely
- A creation time (instant). This is the point in time when the data point was created, which is not necessarily the time for which it is valid. In the case of soft-sensors or forecasters, a data point might have been created ahead of time, in the case of a direcet measurement a data point might created at its time of validity (or at the end of its validity time interval) and in the case of an archived value the data point might have been created after the fact.
- A validity time (temporal entity) which will be named \"time stamp\". The validity time is the instant or interval in time in which a specific quantity is in effect. For example a room temperature might be measured at 12:00, which means it is in effect at this very instant. A specific amount of energy might me expended within the time-slot between 12:30 and 12:45, which means that the energy measurement is in effect during this time interval.
- A location or topological association. For example, a measurement might be taken in a specific room, a power avarage might have been measured by a specific meter, a forecast might be valid for a specific region or grid segment. This association is therefore not always a location."""@en ;
rdfs:label "Data point"@en ;
rdfs:subClassOf saref:Measurement ;
rdfs:subClassOf [
a owl:Restriction ;
owl:allValuesFrom s4ener:Usage ;
owl:onProperty s4ener:hasUsage ;
] ;
rdfs:subClassOf [
a owl:Restriction ;
owl:maxCardinality "1"^^xsd:nonNegativeInteger ;
owl:onProperty s4ener:hasCreationTime ;
] ;
rdfs:subClassOf [
a owl:Restriction ;
owl:maxCardinality "1"^^xsd:nonNegativeInteger ;
owl:onProperty s4ener:hasQuantile ;
] ;
rdfs:subClassOf [
a owl:Restriction ;
owl:maxCardinality "1"^^xsd:nonNegativeInteger ;
owl:onProperty s4ener:hasUpdateRate ;
] ;
rdfs:subClassOf [
a owl:Restriction ;
owl:onClass time:Interval ;
owl:onProperty s4ener:hasEffectivePeriod ;
owl:qualifiedCardinality "1"^^xsd:nonNegativeInteger ;
] ;
.
s4ener:DefaultDuration
a 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"@en ;
rdfs:label "Default duration"@en ;
rdfs:subClassOf time:TemporalEntity ;
owl:deprecated true ;
.
s4ener:DefaultDurationDescription
a owl:Class ;
rdfs:comment "The duration description for the default duration temporal entity"@en ;
rdfs:label "Default duration description"@en ;
rdfs:subClassOf time:DurationDescription ;
owl:deprecated true ;
.
s4ener:Defer
a owl:NamedIndividual ;
a s4ener:PowerEnvelopeConsequenceType ;
rdfs:comment "Indicating that the limited load or generation will be postponed to a later moment " ;
rdfs:label "Defer"@en ;
.
s4ener:DemandDrivenProfile
a owl:Class ;
rdfs:comment "The Flexibility Profile following the Demand Driven strategy." ;
rdfs:label "Demand driven control"@en ;
rdfs:subClassOf s4ener:FlexibilityProfile ;
.
s4ener:Device
a 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)"@en ;
rdfs:label "Device"@en ;
rdfs:subClassOf saref:Device ;
rdfs:subClassOf [
a owl:Restriction ;
owl:allValuesFrom s4ener:LoadControlEventData ;
owl:onProperty s4ener:receives ;
] ;
rdfs:subClassOf [
a owl:Restriction ;
owl:maxCardinality "1"^^xsd:nonNegativeInteger ;
owl:onProperty s4ener:brandName ;
] ;
rdfs:subClassOf [
a owl:Restriction ;
owl:maxCardinality "1"^^xsd:nonNegativeInteger ;
owl:onProperty s4ener:deviceCode ;
] ;
rdfs:subClassOf [
a owl:Restriction ;
owl:maxCardinality "1"^^xsd:nonNegativeInteger ;
owl:onProperty s4ener:deviceName ;
] ;
rdfs:subClassOf [
a owl:Restriction ;
owl:maxCardinality "1"^^xsd:nonNegativeInteger ;
owl:onProperty s4ener:hardwareRevision ;
] ;
rdfs:subClassOf [
a owl:Restriction ;
owl:maxCardinality "1"^^xsd:nonNegativeInteger ;
owl:onProperty s4ener:manufacturerDescription ;
] ;
rdfs:subClassOf [
a owl:Restriction ;
owl:maxCardinality "1"^^xsd:nonNegativeInteger ;
owl:onProperty s4ener:manufacturerLabel ;
] ;
rdfs:subClassOf [
a owl:Restriction ;
owl:maxCardinality "1"^^xsd:nonNegativeInteger ;
owl:onProperty s4ener:manufacturerNodeIdentification ;
] ;
rdfs:subClassOf [
a owl:Restriction ;
owl:maxCardinality "1"^^xsd:nonNegativeInteger ;
owl:onProperty s4ener:serialNumber ;
] ;
rdfs:subClassOf [
a owl:Restriction ;
owl:maxCardinality "1"^^xsd:nonNegativeInteger ;
owl:onProperty s4ener:softwareRevision ;
] ;
rdfs:subClassOf [
a owl:Restriction ;
owl:maxCardinality "1"^^xsd:nonNegativeInteger ;
owl:onProperty s4ener:vendorCode ;
] ;
rdfs:subClassOf [
a owl:Restriction ;
owl:maxCardinality "1"^^xsd:nonNegativeInteger ;
owl:onProperty s4ener:vendorName ;
] ;
rdfs:subClassOf [
a owl:Restriction ;
owl:minCardinality "0"^^xsd:nonNegativeInteger ;
owl:onProperty s4ener:hasPowerSource ;
] ;
rdfs:subClassOf [
a owl:Restriction ;
owl:minQualifiedCardinality "0"^^xsd:nonNegativeInteger ;
owl:onClass s4ener:LoadControlEventData ;
owl:onProperty s4ener:receives ;
] ;
.
s4ener:Downflex
a owl:NamedIndividual ;
a s4ener:Usage ;
rdfs:comment "This datapoint indicates the down flexibility." ;
rdfs:label "Downflex"@en ;
.
s4ener:DurationUncertainty
a owl:Class ;
rdfs:comment "The uncertainty of the duration "@en ;
rdfs:label "Duration uncertainty"@en ;
rdfs:subClassOf time:TemporalEntity ;
owl:deprecated true ;
.
s4ener:DurationUncertaintyDescription
a owl:Class ;
rdfs:comment "The duration description for the duration uncertainty temporal entity"@en ;
rdfs:label "Duration uncertainty description"@en ;
rdfs:subClassOf time:DurationDescription ;
owl:deprecated true ;
.
s4ener:EarliestStartTime
a 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."""@en ;
rdfs:label "Earliest start time"@en ;
rdfs:subClassOf time:TemporalEntity ;
.
s4ener:ElapsedSlotTime
a 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."@en ;
rdfs:label "Elapsed slot time"@en ;
rdfs:subClassOf time:TemporalEntity ;
.
s4ener:ElectricPower3PhaseSymmetric
a s4ener:CommodityQuantity ;
rdfs:comment "Electric power described in Watt on when power is equally shared among the three phases. Only applicable for 3 phase devices." ;
rdfs:label "Electric Power 3 Phase Symmetric"@en ;
.
s4ener:ElectricPowerL1
a s4ener:CommodityQuantity ;
rdfs:comment "Electric power described in Watt on phase 1. If a device utilizes only one phase it should always use L1." ;
rdfs:label "Electric Power L1"@en ;
.
s4ener:ElectricPowerL2
a s4ener:CommodityQuantity ;
rdfs:comment "Electric power described in Watt on phase 2. Only applicable for 3 phase devices." ;
rdfs:label "Electric Power L2"@en ;
.
s4ener:ElectricPowerL3
a s4ener:CommodityQuantity ;
rdfs:comment "Electric power described in Watt on phase 3. Only applicable for 3 phase devices." ;
rdfs:label "Electric Power L3"@en ;
.
s4ener:Electricity
a saref:Electricity ;
rdfs:comment "Identifier for Commodity ELECTRICITY" ;
rdfs:label "Electricity"@en ;
.
s4ener:Emergency
a owl:NamedIndividual ;
a s4ener:EventActionConsume ;
a s4ener:EventActionProduce ;
rdfs:comment "Load control event action with value 'emergency'"@en ;
rdfs:label "Emergency"@en ;
.
s4ener:Empirical
a s4ener:ValueSource ;
rdfs:comment "This value source codelist element indicates this value is an empirical value instead of a calculated or measured value." ;
rdfs:label "Empirical"@en ;
.
s4ener:EndInterruptionInstruction
a owl:Class ;
rdfs:comment "An Instruction message indicating when an interruption can end." ;
rdfs:label "End Interruption Instruction"@en ;
rdfs:subClassOf s4ener:InterruptionInstruction ;
.
s4ener:EndTime
a 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."""@en ;
rdfs:label "End time"@en ;
rdfs:subClassOf time:TemporalEntity ;
.
s4ener:EndTimeDurationDescription
a owl:Class ;
rdfs:comment "The duration description for the end time duration temporal entities"@en ;
rdfs:label "End time duration Description"@en ;
rdfs:subClassOf time:DurationDescription ;
.
s4ener:Energy
a 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)"@en ;
rdfs:label "Energy"@en ;
rdfs:subClassOf saref:Energy ;
.
s4ener:EnergyConstraint
a owl:Class ;
rdfs:comment "The energy constraint described in the Allowed Limit Range or Power Limit." ;
rdfs:label "Energy Constraint"@en ;
.
s4ener:EnergyConsumer
a owl:NamedIndividual ;
a s4ener:RoleType ;
rdfs:comment "Identifier for RoleType Consumer" ;
rdfs:label "Energy Consumer"@en ;
.
s4ener:EnergyExpected
a owl:Class ;
rdfs:comment "A possible type of energy in a slot that represents the expected energy consumption and its value"@en ;
rdfs:label "Energy expected"@en ;
rdfs:subClassOf s4ener:Energy ;
.
s4ener:EnergyMax
a owl:Class ;
rdfs:comment "A possible type of energy in a slot that represents the maximum energy consumption and its value"@en ;
rdfs:label "Energy max"@en ;
rdfs:subClassOf s4ener:Energy ;
.
s4ener:EnergyMin
a owl:Class ;
rdfs:comment "A possible type of energy in a slot that represents the minimum energy consumption and its value"@en ;
rdfs:label "Energy min"@en ;
rdfs:subClassOf s4ener:Energy ;
.
s4ener:EnergyProducer
a owl:NamedIndividual ;
a s4ener:RoleType ;
rdfs:comment "Identifier for RoleType Producer" ;
rdfs:label "Energy Producer"@en ;
.
s4ener:EnergySkewness
a owl:Class ;
rdfs:comment "A possible type of energy in a slot that represents the energy skewness and its value"@en ;
rdfs:label "Energy skewness"@en ;
rdfs:subClassOf s4ener:Energy ;
.
s4ener:EnergyStandardDeviation
a owl:Class ;
rdfs:comment "A possible type of energy in a slot that represents the energy standard deviation and its value"@en ;
rdfs:label "Energy Standard Deviation"@en ;
rdfs:subClassOf s4ener:Energy ;
.
s4ener:EnergyStorage
a owl:NamedIndividual ;
a s4ener:RoleType ;
rdfs:comment "Identifier for RoleType Storage" ;
rdfs:label "Energy Storage"@en ;
.
s4ener:EuroPerKilowattHour
a saref:UnitOfMeasure ;
rdfs:comment "Unit of Measure to represent euro's per kilowatt per hour" ;
rdfs:label "Euro per kilo watt hour"@en ;
.
s4ener:EventAccepted
a owl:NamedIndividual ;
a s4ener:EventStateConsume ;
a s4ener:EventStateProduce ;
rdfs:comment "Load control state with value 'event accepted'"@en ;
rdfs:label "Event accepted"@en ;
.
s4ener:EventActionConsume
a owl:Class ;
rdfs:comment "An action type used to express a consume 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)."@en ;
rdfs:label "Event action consume"@en ;
rdfs:subClassOf s4ener:LoadControlEventAction ;
owl:oneOf (
s4ener:Pause
s4ener:Resume
s4ener:Reduce
s4ener:Increase
s4ener:Emergency
s4ener:Normal
) ;
.
s4ener:EventActionProduce
a owl:Class ;
rdfs:comment "An action type used to express a produce 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)."@en ;
rdfs:label "Event action produce"@en ;
rdfs:subClassOf s4ener:LoadControlEventAction ;
owl:oneOf (
s4ener:Pause
s4ener:Resume
s4ener:Reduce
s4ener:Increase
s4ener:Emergency
s4ener:Normal
) ;
.
s4ener:EventCancelled
a owl:NamedIndividual ;
a s4ener:EventStateConsume ;
a s4ener:EventStateProduce ;
rdfs:comment "Load control state with value 'event cancelled'"@en ;
rdfs:label "Event cancelled"@en ;
.
s4ener:EventError
a owl:NamedIndividual ;
a s4ener:EventStateConsume ;
a s4ener:EventStateProduce ;
rdfs:comment "Load control state with value 'event error'"@en ;
rdfs:label "Event error"@en ;
.
s4ener:EventRejected
a owl:NamedIndividual ;
a s4ener:EventStateConsume ;
a s4ener:EventStateProduce ;
rdfs:comment "Load control state with value 'event rejected'"@en ;
rdfs:label "Event rejected"@en ;
.
s4ener:EventStarted
a owl:NamedIndividual ;
a s4ener:EventStateConsume ;
a s4ener:EventStateProduce ;
rdfs:comment "Load control state with value 'event started'"@en ;
rdfs:label "Event started"@en ;
.
s4ener:EventStateConsume
a owl:Class ;
rdfs:comment "In the load control, it expresses a consume 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)."@en ;
rdfs:label "Event state consume"@en ;
rdfs:subClassOf s4ener:LoadControlEventState ;
owl:oneOf (
s4ener:EventAccepted
s4ener:EventStarted
s4ener:EventStopped
s4ener:EventRejected
s4ener:EventCancelled
s4ener:EventError
) ;
.
s4ener:EventStateProduce
a owl:Class ;
rdfs:comment "In the load control, it expresses a produce state of an event 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)."@en ;
rdfs:label "Event state produce"@en ;
rdfs:subClassOf s4ener:LoadControlEventState ;
owl:oneOf (
s4ener:EventAccepted
s4ener:EventStarted
s4ener:EventStopped
s4ener:EventRejected
s4ener:EventCancelled
s4ener:EventError
) ;
.
s4ener:EventStopped
a owl:NamedIndividual ;
a s4ener:EventStateConsume ;
a s4ener:EventStateProduce ;
rdfs:comment "Load control state with value 'event stopped'"@en ;
rdfs:label "Event stopped"@en ;
.
s4ener:Executing
a s4ener:PowerSequenceStatus ;
rdfs:comment "The selected PPBC.PowerSequence is currently being executed" ;
rdfs:label "EXECUTING"@en ;
.
s4ener:FRBCInstruction
a owl:Class ;
rdfs:comment "A Fill Rate Based Instruction message. " ;
rdfs:label "Fill Rate Based Control Instruction"@en ;
rdfs:subClassOf s4ener:FlexibilityInstruction ;
.
s4ener:FailsafePowerLimit
a owl:Class ;
rdfs:comment "In case the communication between a device and the energy manager is interrupted, fail-safe values apply and the device enters fail-safe state until the communication is re-established."@en ;
rdfs:label "Failsafe Power Limit"@en ;
rdfs:subClassOf s4ener:PowerLimit ;
.
s4ener:FailsafeState
a owl:Class ;
rdfs:comment "State that indicates that the device currently is in its Fail-safe state. This means that it has lost its connection to a central energy manager. This may result in the device following stricter power limits." ;
rdfs:label "Fail-safe state"@en ;
.
s4ener:Falling
a s4ener:ValueTendency ;
rdfs:comment "This value tendency codelist element indicates that the tendency of this measurement indicates that the value is decreasing (i.e., falling)." ;
rdfs:label "Falling"@en ;
.
s4ener:FillLevelTargetProfile
a owl:Class ;
rdfs:comment "The target profile that a fill rate based control flexibility profile tries to follow." ;
rdfs:label "Fill level target profile"@en ;
rdfs:subClassOf owl:Thing ;
.
s4ener:FillLevelTargetProfileElement
a owl:Class ;
rdfs:comment "A description of the various Elements detailing the Fill Level Target Profile consists." ;
rdfs:label "Fill level target profile element"@en ;
rdfs:subClassOf owl:Thing ;
.
s4ener:FillRateProfile
a owl:Class ;
rdfs:comment "A flexibility profile specified through a Fill Rate Based Profile." ;
rdfs:label "Fill rate control"@en ;
rdfs:subClassOf s4ener:FlexibilityProfile ;
.
s4ener:Finished
a s4ener:PowerSequenceStatus ;
rdfs:comment "The selected PPBC.PowerSequence was executed and finished successfully" ;
rdfs:label "Finished"@en ;
.
s4ener:FlexOffer
a owl:Class ;
rdfs:comment "It allows to represent a flexibility offer (or schedule) as a combination of multiple time-series, data-points and forecasts. For example, we can create a flexibility offer that includes a time-series ex:T-power of power values, combined with a time-series ex:T-costs of associated costs."@en ;
rdfs:label "Flex offer"@en ;
rdfs:subClassOf [
a owl:Restriction ;
owl:allValuesFrom [
a owl:Class ;
owl:unionOf (
foaf:Agent
saref:Device
) ;
] ;
owl:onProperty s4ener:hasRecipient ;
] ;
rdfs:subClassOf [
a owl:Restriction ;
owl:allValuesFrom [
a owl:Class ;
owl:unionOf (
foaf:Agent
saref:Device
) ;
] ;
owl:onProperty s4ener:producedBy ;
] ;
rdfs:subClassOf [
a owl:Restriction ;
owl:allValuesFrom [
a owl:Class ;
owl:unionOf (
s4ener:DataPoint
s4ener:TimeSeries
s4ener:FlexibilityProfile
) ;
] ;
owl:onProperty s4ener:includes ;
] ;
rdfs:subClassOf [
a owl:Restriction ;
owl:maxCardinality "1"^^xsd:nonNegativeInteger ;
owl:onProperty s4ener:hasCreationTime ;
] ;
rdfs:subClassOf [
a owl:Restriction ;
owl:maxQualifiedCardinality "1"^^xsd:nonNegativeInteger ;
owl:onClass time:Interval ;
owl:onProperty s4ener:hasEffectivePeriod ;
] ;
.
s4ener:FlexRequest
a owl:Class ;
rdfs:comment "The flexibility request"@en ;
rdfs:label "Flex request"@en ;
rdfs:subClassOf owl:Thing ;
rdfs:subClassOf [
a owl:Restriction ;
owl:allValuesFrom xsd:dateTime ;
owl:onProperty s4ener:hasCreationTime ;
] ;
rdfs:subClassOf [
a owl:Restriction ;
owl:allValuesFrom time:Interval ;
owl:onProperty s4ener:hasEffectivePeriod ;
] ;
rdfs:subClassOf [
a owl:Restriction ;
owl:allValuesFrom [
a owl:Class ;
owl:unionOf (
foaf:Agent
saref:Device
) ;
] ;
owl:onProperty s4ener:hasRecipient ;
] ;
rdfs:subClassOf [
a owl:Restriction ;
owl:allValuesFrom [
a owl:Class ;
owl:unionOf (
foaf:Agent
saref:Device
) ;
] ;
owl:onProperty s4ener:producedBy ;
] ;
rdfs:subClassOf [
a owl:Restriction ;
owl:allValuesFrom [
a owl:Class ;
owl:unionOf (
s4ener:DataPoint
s4ener:TimeSeries
s4ener:FlexibilityProfile
s4ener:IncentiveTableBasedProfile
) ;
] ;
owl:onProperty s4ener:includes ;
] ;
.
s4ener:FlexibilityInstruction
a owl:Class ;
rdfs:comment "The various types of instructions Flexibility Sources can send and/or receive." ;
rdfs:label "Flexibility Instruction"@en ;
.
s4ener:FlexibilityProfile
a owl:Class ;
rdfs:comment """Different control types to describe the energy flexibility that a device has to offer. Charging of an EV for instance, may be controlled by power profile-based control or fill-rate -based control. It is not allowed to mix different control types at the same time, but different control types may be used sequentially.
Control Types dictates flexibility instructions. Control Type provides Flexibility options.""" ;
rdfs:label "Flexibility Profile"@en ;
rdfs:subClassOf saref:Profile ;
.
s4ener:Gas
a saref:Gas ;
rdfs:comment "Identifier for Commodity GAS" ;
rdfs:label "Gas"@en ;
.
s4ener:GaussianDataPoint
a owl:Class ;
rdfs:comment "A data point whose quantity is a standard deviation."@en ;
rdfs:label "Gaussian data point"@en ;
rdfs:subClassOf s4ener:DataPoint ;
rdfs:subClassOf [
a owl:Restriction ;
owl:onProperty s4ener:hasStandardDeviation ;
owl:someValuesFrom xsd:decimal ;
] ;
.
s4ener:Heat
a saref:Commodity ;
rdfs:comment "Identifier for Commodity Heat" ;
rdfs:label "Heat"@en ;
.
s4ener:HeatFlowRate
a s4ener:CommodityQuantity ;
rdfs:comment "Flow rate of heat carrying gas or liquid in liters per second" ;
rdfs:label "Heat Flow Rate"@en ;
.
s4ener:HeatTemperature
a s4ener:CommodityQuantity ;
rdfs:comment "Heat described in degrees Celsius" ;
rdfs:label "Heat Temperature"@en ;
.
s4ener:HeatThermalPower
a s4ener:CommodityQuantity ;
rdfs:comment "Thermal power in Watt" ;
rdfs:label "Heat Thermal Power"@en ;
.
s4ener:HydrogenFlowRate
a s4ener:CommodityQuantity ;
rdfs:comment "Gas flow rate described in grams per second" ;
rdfs:label "Hydrogen Flow Rate"@en ;
.
s4ener:Inactive
a owl:NamedIndividual ;
a s4ener:PowerSequenceState ;
rdfs:comment "Power sequence state with value 'inactive'"@en ;
rdfs:label "Inactive"@en ;
.
s4ener:Incentive
a owl:Class ;
rdfs:comment "An Incentive indicates the intersection of a tier with a slot. In this particular combination of slot and tier there are a particular costs to draw this type of energy. For example, drawing power from the grid costs 0.30 euro per kilowatthour during the afternoon, but will only be activated from a lower boundary of 3000W." ;
rdfs:label "Incentive"@en ;
rdfs:subClassOf s4ener:DataPoint ;
.
s4ener:IncentiveTableBasedProfile
a owl:Class ;
rdfs:comment "This flexibility profile describes the usage of an incentive table to describe an incentive type in the form of costs (relative or absolute), CO2 emissions or renewable energy percentage that can be associated to power values (expressed as a time-series of power data-points)."@en ;
rdfs:label "Incentive table based profile"@en ;
rdfs:subClassOf s4ener:FlexibilityProfile ;
rdfs:subClassOf [
a owl:Restriction ;
owl:allValuesFrom xsd:boolean ;
owl:onProperty s4ener:isChangeable ;
] ;
rdfs:subClassOf [
a owl:Restriction ;
owl:allValuesFrom xsd:boolean ;
owl:onProperty s4ener:requiresUpdate ;
] ;
rdfs:subClassOf [
a owl:Restriction ;
owl:allValuesFrom s4ener:ScopeType ;
owl:onProperty s4ener:hasScopeType ;
] ;
.
s4ener:IncentiveTableSlot
a owl:Class ;
rdfs:comment "This concept describes a slot that belongs to a Incentive Table. Each slot of the Incentive Table consists of a series of (lower) boundaries, each indicating the power at which a change to another incentive takes place. Additionally, each boundary is associated with a IncentiveTableTier." ;
rdfs:label "Incentive table slot"@en ;
rdfs:subClassOf s4ener:Slot ;
.
s4ener:IncentiveTableTier
a owl:Class ;
rdfs:comment "This concept specifies a Tier that an Incentive Table consists of. Each Tier indicates through a series of Boundaries the price per kilowatthour this incentive costs. For example, a tier may describe grid power, solar panel power, or surplus power." ;
rdfs:label "Incentive table tier"@en ;
rdfs:subClassOf s4ener:TimeSeries ;
.
s4ener:IncentiveType
a owl:Class ;
rdfs:comment "In the incentive table, an incentive type is defined in the form of costs (relative or absolute), CO2 emissions or renewable energy percentage."@en ;
rdfs:label "Incentive Type"@en ;
.
s4ener:Increase
a owl:NamedIndividual ;
a s4ener:EventActionConsume ;
a s4ener:EventActionProduce ;
rdfs:comment "Load control event action with value 'increase'"@en ;
rdfs:label "Increase"@en ;
.
s4ener:InstructionStatus
a owl:Class ;
rdfs:comment "The status an instruction has at a specific moment." ;
rdfs:label "Instruction Status"@en ;
rdfs:subClassOf owl:Thing ;
.
s4ener:Interrupted
a s4ener:PowerSequenceStatus ;
rdfs:comment "The selected PPBC.PowerSequence is being executed, but is currently interrupted and will continue afterwards" ;
rdfs:label "Interrupted"@en ;
.
s4ener:InterruptionInstruction
a owl:Class ;
rdfs:comment "An instruction indicating an interruption to the process." ;
rdfs:label "Interruption Instruction"@en ;
rdfs:subClassOf s4ener:PPBCInstruction ;
.
s4ener:Invalid
a owl:NamedIndividual ;
a s4ener:PowerSequenceState ;
rdfs:comment "Power sequence state with value 'invalid'"@en ;
rdfs:label "Invalid"@en ;
.
s4ener:LatestEndTime
a 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."""@en ;
rdfs:label "Latest end time"@en ;
rdfs:subClassOf time:TemporalEntity ;
owl:deprecated true ;
.
s4ener:LeakageBehaviour
a owl:Class ;
rdfs:comment "A description of the Leakage Behaviour associated with this Fill Rate Flexibility Profile." ;
rdfs:label "Leakage behaviour"@en ;
rdfs:subClassOf owl:Thing ;
.
s4ener:LeakageBehaviourElement
a owl:Class ;
rdfs:comment "An element detailing the leakage behaviour of a storage." ;
rdfs:label "Leakage behaviour element"@en ;
rdfs:subClassOf owl:Thing ;
.
s4ener:LoadControlEventAction
a 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)."@en ;
rdfs:label "Load Control event action"@en ;
.
s4ener:LoadControlEventData
a 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)."@en ;
rdfs:label "Load control event data"@en ;
rdfs:subClassOf [
a owl:Restriction ;
owl:allValuesFrom xsd:dateTime ;
owl:onProperty saref:hasTimestamp ;
] ;
rdfs:subClassOf [
a owl:Restriction ;
owl:allValuesFrom s4ener:Device ;
owl:onProperty s4ener:hasDevice ;
] ;
rdfs:subClassOf [
a owl:Restriction ;
owl:allValuesFrom s4ener:EventActionConsume ;
owl:onProperty s4ener:triggersEventActionConsume ;
] ;
rdfs:subClassOf [
a owl:Restriction ;
owl:allValuesFrom s4ener:EventActionProduce ;
owl:onProperty s4ener:triggersEventActionProduce ;
] ;
rdfs:subClassOf [
a owl:Restriction ;
owl:allValuesFrom s4ener:TimePeriod ;
owl:onProperty saref:hasTime ;
] ;
rdfs:subClassOf [
a owl:Restriction ;
owl:minCardinality "0"^^xsd:nonNegativeInteger ;
owl:onProperty s4ener:eventID ;
] ;
rdfs:subClassOf [
a owl:Restriction ;
owl:minQualifiedCardinality "0"^^xsd:nonNegativeInteger ;
owl:onClass s4ener:EventActionConsume ;
owl:onProperty s4ener:triggersEventActionConsume ;
] ;
rdfs:subClassOf [
a owl:Restriction ;
owl:minQualifiedCardinality "0"^^xsd:nonNegativeInteger ;
owl:onClass s4ener:EventActionProduce ;
owl:onProperty s4ener:triggersEventActionProduce ;
] ;
rdfs:subClassOf [
a owl:Restriction ;
owl:minQualifiedCardinality "1"^^xsd:nonNegativeInteger ;
owl:onClass s4ener:Device ;
owl:onProperty s4ener:hasDevice ;
] ;
rdfs:subClassOf [
a owl:Restriction ;
owl:minQualifiedCardinality "1"^^xsd:nonNegativeInteger ;
owl:onClass s4ener:TimePeriod ;
owl:onProperty saref:hasTime ;
] ;
rdfs:subClassOf [
a owl:Restriction ;
owl:minQualifiedCardinality "1"^^xsd:nonNegativeInteger ;
owl:onDataRange xsd:dateTime ;
owl:onProperty saref:hasTimestamp ;
] ;
.
s4ener:LoadControlEventState
a 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)."@en ;
rdfs:label "Load control event state "@en ;
rdfs:subClassOf s4ener:State ;
.
s4ener:LoadControlStateData
a 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)."@en ;
rdfs:label "Load control state data"@en ;
rdfs:subClassOf [
a owl:Restriction ;
owl:allValuesFrom xsd:dateTime ;
owl:onProperty saref:hasTimestamp ;
] ;
rdfs:subClassOf [
a owl:Restriction ;
owl:allValuesFrom s4ener:EventActionConsume ;
owl:onProperty s4ener:hasAppliedEventActionConsume ;
] ;
rdfs:subClassOf [
a owl:Restriction ;
owl:allValuesFrom s4ener:EventActionProduce ;
owl:onProperty s4ener:hasAppliedEventActionProduce ;
] ;
rdfs:subClassOf [
a owl:Restriction ;
owl:allValuesFrom s4ener:EventStateConsume ;
owl:onProperty s4ener:hasEventStateConsume ;
] ;
rdfs:subClassOf [
a owl:Restriction ;
owl:allValuesFrom s4ener:EventStateProduce ;
owl:onProperty s4ener:hasEventStateProduce ;
] ;
rdfs:subClassOf [
a owl:Restriction ;
owl:minQualifiedCardinality "0"^^xsd:nonNegativeInteger ;
owl:onClass s4ener:EventActionConsume ;
owl:onProperty s4ener:hasAppliedEventActionConsume ;
] ;
rdfs:subClassOf [
a owl:Restriction ;
owl:minQualifiedCardinality "0"^^xsd:nonNegativeInteger ;
owl:onClass s4ener:EventActionProduce ;
owl:onProperty s4ener:hasAppliedEventActionProduce ;
] ;
rdfs:subClassOf [
a owl:Restriction ;
owl:minQualifiedCardinality "0"^^xsd:nonNegativeInteger ;
owl:onClass s4ener:EventStateConsume ;
owl:onProperty s4ener:hasEventStateConsume ;
] ;
rdfs:subClassOf [
a owl:Restriction ;
owl:minQualifiedCardinality "0"^^xsd:nonNegativeInteger ;
owl:onClass s4ener:EventStateProduce ;
owl:onProperty s4ener:hasEventStateProduce ;
] ;
rdfs:subClassOf [
a owl:Restriction ;
owl:minQualifiedCardinality "0"^^xsd:nonNegativeInteger ;
owl:onDataRange xsd:unsignedInt ;
owl:onProperty s4ener:eventID ;
] ;
rdfs:subClassOf [
a owl:Restriction ;
owl:minQualifiedCardinality "1"^^xsd:nonNegativeInteger ;
owl:onDataRange xsd:dateTime ;
owl:onProperty saref:hasTimestamp ;
] ;
.
s4ener:LowerLimit
a owl:NamedIndividual ;
a s4ener:PowerEnvelopeLimitType ;
a s4ener:Usage ;
rdfs:comment "The PowerEnvelopeLimitType codelist element indicating the lower limit." ;
rdfs:comment "This data point indicates the lower limit." ;
rdfs:label "Lower Limit"@en ;
rdfs:label "Lower limit"@en ;
.
s4ener:Mains3Phase
a s4ener:PowerSource ;
rdfs:comment "This Power Source codelist element indicates that the power source of this device is Mains 3 Phase." ;
rdfs:label "Mains3Phase"@en ;
.
s4ener:MainsSinglePhase
a s4ener:PowerSource ;
rdfs:comment "This codelist element of power source indicates that the power source is the mains single phase." ;
rdfs:label "Mains single phase"@en ;
.
s4ener:MaxActivationDelay
a owl:Class ;
rdfs:comment "Maximum delay time between the end of the previous slot and the beginning of the current slot."@en ;
rdfs:label "Max activation delay"@en ;
rdfs:subClassOf time:TemporalEntity ;
owl:deprecated true ;
.
s4ener:MaxAnticipation
a 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."@en ;
rdfs:label "Max anticipation"@en ;
rdfs:subClassOf time:TemporalEntity ;
owl:deprecated true ;
.
s4ener:MaxDuration
a 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"@en ;
rdfs:label "Max duration"@en ;
rdfs:subClassOf time:TemporalEntity ;
owl:deprecated true ;
.
s4ener:Maximum
a owl:NamedIndividual ;
a s4ener:Usage ;
rdfs:comment "The usage of this datapoint is the Maximum value." ;
rdfs:label "Maximum"@en ;
.
s4ener:Measured
a s4ener:ValueSource ;
rdfs:comment "The value source type indicates that this data point has been measured by a device." ;
rdfs:label "Measured"@en ;
.
s4ener:MinDuration
a 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."@en ;
rdfs:label "Min duration"@en ;
rdfs:subClassOf time:TemporalEntity ;
owl:deprecated true ;
.
s4ener:Minimum
a owl:NamedIndividual ;
a s4ener:Usage ;
rdfs:comment "The usage of this datapoint is the Minimum value." ;
rdfs:label "Minimum"@en ;
.
s4ener:NaturalGasFlowRate
a s4ener:CommodityQuantity ;
rdfs:comment "Gas flow rate described in liters per second" ;
rdfs:label "Natural Gas Flow Rate"@en ;
.
s4ener:New
a owl:NamedIndividual ;
a s4ener:InstructionStatus ;
rdfs:comment "Instruction was newly created" ;
rdfs:label "New"@en ;
.
s4ener:NominalPowerLimit
a owl:Class ;
rdfs:comment "A device may have nominal power consumption and/or production values that are defined by the manufacturer and must not be exceeded, so that the power limit must stay within these constraints."@en ;
rdfs:label "Nominal Power Limit"@en ;
rdfs:subClassOf s4ener:PowerLimit ;
.
s4ener:Normal
a owl:NamedIndividual ;
a s4ener:EventActionConsume ;
a s4ener:EventActionProduce ;
rdfs:comment "The value NORMAL used to instantiate the Load Control Event Action class and MeasurandState class"@en ;
rdfs:label "Normal"@en ;
.
s4ener:NotScheduled
a s4ener:PowerSequenceStatus ;
rdfs:comment "No PPBC.PowerSequence within the PPBC.PowerSequenceContainer is scheduled" ;
rdfs:label "NotScheduled"@en ;
.
s4ener:NumberRange
a owl:Class ;
rdfs:comment "This class describes a range via a datatype property indicating the start of the range and another datatype property indicating the end of the range." ;
rdfs:label "Number range"@en ;
rdfs:subClassOf owl:Thing ;
.
s4ener:OMBCInstruction
a owl:Class ;
rdfs:comment "An instruction following the Operation Mode Based Profile." ;
rdfs:label "Operation Mode Based Control Instruction"@en ;
rdfs:subClassOf s4ener:FlexibilityInstruction ;
.
s4ener:Oil
a saref:Commodity ;
rdfs:comment "Identifier for Commodity OIL" ;
rdfs:label "Oil"@en ;
.
s4ener:OilFlowRate
a s4ener:CommodityQuantity ;
rdfs:comment "Oil flow rate described in liters per hour" ;
rdfs:label "Oil Flow Rate"@en ;
.
s4ener:OperationMode
a owl:Class ;
rdfs:comment "A resource manager can declare multiple operation modes for a device. An operation mode is a mode/state that a device can find itself in, that is associated with a specific power value." ;
rdfs:label "Operation Mode"@en ;
rdfs:subClassOf saref:State ;
.
s4ener:OperationModeElement
a owl:Class ;
rdfs:comment "Operation Mode Elements of a Fill Rate Based Control" ;
rdfs:label "Operation Mode Element"@en ;
rdfs:subClassOf owl:Thing ;
.
s4ener:OperationModeProfile
a owl:Class ;
rdfs:comment "A resource manager can declare multiple operation modes for a device. An operation mode is a mode/state that a device can find itself in, that is associated with a specific power value." ;
rdfs:label "Operation mode control"@en ;
rdfs:subClassOf s4ener:FlexibilityProfile ;
.
s4ener:PEBCInstruction
a owl:Class ;
rdfs:comment "An instruction for the Power Envelope Based Profile." ;
rdfs:label "Power Envelop Based Control Instruction"@en ;
rdfs:subClassOf s4ener:FlexibilityInstruction ;
.
s4ener:PPBCInstruction
a owl:Class ;
rdfs:comment "An instruction for a Power Profile Based Flexibility Profile." ;
rdfs:label "Power Profile Based Control Instruction"@en ;
rdfs:subClassOf s4ener:FlexibilityInstruction ;
.
s4ener:Pause
a owl:NamedIndividual ;
a s4ener:EventActionConsume ;
a s4ener:EventActionProduce ;
rdfs:comment "Load control event action with value 'pause'"@en ;
rdfs:label "Pause"@en ;
.
s4ener:PauseDurationDescription
a owl:Class ;
rdfs:comment "The duration description for the pause duration (max and min) temporal entities"@en ;
rdfs:label "Pause duration description"@en ;
rdfs:subClassOf time:DurationDescription ;
owl:deprecated true ;
.
s4ener:PauseDurationMax
a owl:Class ;
rdfs:comment "The maximum duration a power sequence can pause after the end of an activity."@en ;
rdfs:label "Pause duration max"@en ;
rdfs:subClassOf time:TemporalEntity ;
owl:deprecated true ;
.
s4ener:PauseDurationMin
a owl:Class ;
rdfs:comment "The minimum duration a power sequence can pause after the end of an activity."@en ;
rdfs:label "Pause duration min"@en ;
rdfs:subClassOf time:TemporalEntity ;
owl:deprecated true ;
.
s4ener:PauseTime
a owl:Class ;
rdfs:comment "The pause time of a power sequence or a slot"@en ;
rdfs:label "Pause time"@en ;
rdfs:subClassOf time:TemporalEntity ;
owl:deprecated true ;
.
s4ener:Paused
a owl:NamedIndividual ;
a s4ener:PowerSequenceState ;
rdfs:comment "Power sequence state or sensor state with value 'paused'"@en ;
rdfs:label "Paused"@en ;
.
s4ener:Pending
a owl:NamedIndividual ;
a s4ener:PowerSequenceState ;
rdfs:comment "Power sequence state with value 'pending'"@en ;
rdfs:label "Pending"@en ;
.
s4ener:Power
a owl:Class ;
rdfs:comment "Power type and value in a slot (i.e. power, powerMin, powerMax, powerExpectedValue, powerStandardDeviation, powerSkewness)"@en ;
rdfs:label "Power"@en ;
rdfs:subClassOf saref:Power ;
.
s4ener:PowerConstraint
a owl:Class ;
rdfs:comment "The actual power constraint contained in the Allowed Limit Range or Power limit." ;
rdfs:label "Power constraint"@en ;
rdfs:subClassOf owl:Thing ;
.
s4ener:PowerEnvelope
a owl:Class ;
rdfs:comment "A specific Power Envelope to be followed by an energy manager" ;
rdfs:label "Power Envelope"@en ;
rdfs:subClassOf owl:Thing ;
.
s4ener:PowerEnvelopeConsequenceType
a owl:Class ;
rdfs:comment "The type of consequence of limiting power, which can be Defer or Vanish." ;
rdfs:label "Power Envelope Consequence Type"@en ;
rdfs:subClassOf owl:Thing ;
.
s4ener:PowerEnvelopeLimitType
a owl:Class ;
rdfs:comment "An enumeration containing the codelist for Power Envelope Limit Types, which may be Lower limit or Upper limit." ;
rdfs:label "Power Envelope Limit Type"@en ;
rdfs:subClassOf owl:Thing ;
.
s4ener:PowerEnvelopeProfile
a owl:Class ;
rdfs:comment "A Flexibility Profile described through a Power Envelope Profile." ;
rdfs:label "Power envelope control"@en ;
rdfs:subClassOf s4ener:FlexibilityProfile ;
.
s4ener:PowerExpected
a owl:Class ;
rdfs:comment "A possible type of power in a slot that represents the expected power consumption and its value"@en ;
rdfs:label "Power expected "@en ;
rdfs:subClassOf s4ener:Power ;
.
s4ener:PowerLimit
a owl:Class ;
rdfs:comment "A power limit is defined as the maximum value for power consumption and/or production that must not be exceeded by e.g. a (group of) device(s), a building, or also a district."@en ;
rdfs:label "Power Limit"@en ;
rdfs:subClassOf s4ener:AllowedLimitRange ;
rdfs:subClassOf [
a owl:Restriction ;
owl:allValuesFrom xsd:boolean ;
owl:onProperty s4ener:isChangeable ;
] ;
rdfs:subClassOf [
a owl:Restriction ;
owl:allValuesFrom xsd:boolean ;
owl:onProperty s4ener:isObligatory ;
] ;
.
s4ener:PowerLimitProfile
a owl:Class ;
rdfs:comment "This profile describes the energy flexibility of a device via a set of power limits, following the SPINE documentation" ;
rdfs:label "Power limit profile"@en ;
rdfs:subClassOf s4ener:FlexibilityProfile ;
.
s4ener:PowerMax
a owl:Class ;
rdfs:comment "A possible type of power in a slot that represents the maximum power consumption and its value"@en ;
rdfs:label "Power max"@en ;
rdfs:subClassOf s4ener:Power ;
.
s4ener:PowerMin
a owl:Class ;
rdfs:comment "A possible type of power in a slot that represents the minimum power consumption and its value"@en ;
rdfs:label "Power min"@en ;
rdfs:subClassOf s4ener:Power ;
.
s4ener:PowerPlan
a owl:Class ;
rdfs:comment "The Power Plan that an energy manager creates for a device. It contains three timeseries indicating the minimum, average, and maximum respectively." ;
rdfs:label "Power plan"@en ;
rdfs:subClassOf s4ener:TimeSeries ;
rdfs:subClassOf [
a owl:Restriction ;
owl:maxQualifiedCardinality "3"^^xsd:nonNegativeInteger ;
owl:onClass s4ener:TimeSeries ;
owl:onProperty saref:consistsOf ;
] ;
rdfs:subClassOf [
a owl:Restriction ;
owl:minQualifiedCardinality "3"^^xsd:nonNegativeInteger ;
owl:onClass s4ener:TimeSeries ;
owl:onProperty saref:consistsOf ;
] ;
.
s4ener:PowerProfile
a 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). "@en ;
rdfs:comment "PPBC.PowerProfileDefinition" ;
rdfs:label "Power profile control"@en ;
rdfs:subClassOf saref:Profile ;
rdfs:subClassOf [
a owl:Restriction ;
owl:allValuesFrom s4ener:AlternativesGroup ;
owl:onProperty saref:consistsOf ;
] ;
rdfs:subClassOf [
a owl:Restriction ;
owl:allValuesFrom s4ener:Device ;
owl:onProperty s4ener:belongsTo ;
] ;
rdfs:subClassOf [
a owl:Restriction ;
owl:cardinality "1"^^xsd:nonNegativeInteger ;
owl:onProperty s4ener:alternativesCount ;
] ;
rdfs:subClassOf [
a owl:Restriction ;
owl:cardinality "1"^^xsd:nonNegativeInteger ;
owl:onProperty s4ener:nodeRemoteControllable ;
] ;
rdfs:subClassOf [
a owl:Restriction ;
owl:cardinality "1"^^xsd:nonNegativeInteger ;
owl:onProperty s4ener:supportsReselection ;
] ;
rdfs:subClassOf [
a owl:Restriction ;
owl:cardinality "1"^^xsd:nonNegativeInteger ;
owl:onProperty s4ener:supportsSingleSlotSchedulingOnly ;
] ;
rdfs:subClassOf [
a owl:Restriction ;
owl:cardinality "1"^^xsd:nonNegativeInteger ;
owl:onProperty s4ener:totalSequencesCountMax ;
] ;
rdfs:subClassOf [
a owl:Restriction ;
owl:minQualifiedCardinality "0"^^xsd:nonNegativeInteger ;
owl:onClass s4ener:AlternativesGroup ;
owl:onProperty saref:consistsOf ;
] ;
rdfs:subClassOf [
a owl:Restriction ;
owl:onClass s4ener:Device ;
owl:onProperty s4ener:belongsTo ;
owl:qualifiedCardinality "1"^^xsd:nonNegativeInteger ;
] ;
.
s4ener:PowerRange
a owl:Class ;
rdfs:comment "A class describing a power range, containing a start of range, an end of range, and a saref:Property indicating the type of power involved." ;
rdfs:label "Power range"@en ;
rdfs:subClassOf owl:Thing ;
.
s4ener:PowerSequence
a owl:Class ;
rdfs:comment "A Power Sequence following S2 is a container containing one or more PowerSequenceElements among which the EMS can choose the Element with the best fit to the current energy demands." ;
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."@en ;
rdfs:label "Power sequence"@en ;
rdfs:subClassOf owl:Thing ;
rdfs:subClassOf [
a owl:Restriction ;
owl:allValuesFrom s4ener:AlternativesGroup ;
owl:onProperty s4ener:belongsTo ;
] ;
rdfs:subClassOf [
a owl:Restriction ;
owl:allValuesFrom s4ener:PowerSequenceState ;
owl:onProperty saref:hasState ;
] ;
rdfs:subClassOf [
a owl:Restriction ;
owl:allValuesFrom s4ener:ResumeCostEstimated ;
owl:onProperty saref:hasPrice ;
] ;
rdfs:subClassOf [
a owl:Restriction ;
owl:allValuesFrom s4ener:ResumeEnergyEstimated ;
owl:onProperty s4ener:hasEnergy ;
] ;
rdfs:subClassOf [
a owl:Restriction ;
owl:allValuesFrom s4ener:Slot ;
owl:onProperty saref:consistsOf ;
] ;
rdfs:subClassOf [
a owl:Restriction ;
owl:cardinality "1"^^xsd:nonNegativeInteger ;
owl:onProperty s4ener:sequenceID ;
] ;
rdfs:subClassOf [
a owl:Restriction ;
owl:cardinality "1"^^xsd:nonNegativeInteger ;
owl:onProperty s4ener:sequenceRemoteControllable ;
] ;
rdfs:subClassOf [
a owl:Restriction ;
owl:maxCardinality "1"^^xsd:nonNegativeInteger ;
owl:onProperty saref:hasDescription ;
] ;
rdfs:subClassOf [
a owl:Restriction ;
owl:maxCardinality "1"^^xsd:nonNegativeInteger ;
owl:onProperty s4ener:activeRepetitionNumber ;
] ;
rdfs:subClassOf [
a owl:Restriction ;
owl:maxCardinality "1"^^xsd:nonNegativeInteger ;
owl:onProperty s4ener:activeSlotNumber ;
] ;
rdfs:subClassOf [
a owl:Restriction ;
owl:maxCardinality "1"^^xsd:nonNegativeInteger ;
owl:onProperty s4ener:cheapest ;
] ;
rdfs:subClassOf [
a owl:Restriction ;
owl:maxCardinality "1"^^xsd:nonNegativeInteger ;
owl:onProperty s4ener:greenest ;
] ;
rdfs:subClassOf [
a owl:Restriction ;
owl:maxCardinality "1"^^xsd:nonNegativeInteger ;
owl:onProperty s4ener:isPausable ;
] ;
rdfs:subClassOf [
a owl:Restriction ;
owl:maxCardinality "1"^^xsd:nonNegativeInteger ;
owl:onProperty s4ener:isStoppable ;
] ;
rdfs:subClassOf [
a owl:Restriction ;
owl:maxCardinality "1"^^xsd:nonNegativeInteger ;
owl:onProperty s4ener:maxCyclesPerDay ;
] ;
rdfs:subClassOf [
a owl:Restriction ;
owl:maxCardinality "1"^^xsd:nonNegativeInteger ;
owl:onProperty s4ener:repetitionsTotal ;
] ;
rdfs:subClassOf [
a owl:Restriction ;
owl:maxQualifiedCardinality "1"^^xsd:nonNegativeInteger ;
owl:onClass s4ener:ActiveDurationMax ;
owl:onProperty saref:hasTime ;
] ;
rdfs:subClassOf [
a owl:Restriction ;
owl:maxQualifiedCardinality "1"^^xsd:nonNegativeInteger ;
owl:onClass s4ener:ActiveDurationMin ;
owl:onProperty saref:hasTime ;
] ;
rdfs:subClassOf [
a owl:Restriction ;
owl:maxQualifiedCardinality "1"^^xsd:nonNegativeInteger ;
owl:onClass s4ener:ActiveDurationSumMax ;
owl:onProperty saref:hasTime ;
] ;
rdfs:subClassOf [
a owl:Restriction ;
owl:maxQualifiedCardinality "1"^^xsd:nonNegativeInteger ;
owl:onClass s4ener:ActiveDurationSumMin ;
owl:onProperty saref:hasTime ;
] ;
rdfs:subClassOf [
a owl:Restriction ;
owl:maxQualifiedCardinality "1"^^xsd:nonNegativeInteger ;
owl:onClass s4ener:EarliestStartTime ;
owl:onProperty saref:hasTime ;
] ;
rdfs:subClassOf [
a owl:Restriction ;
owl:maxQualifiedCardinality "1"^^xsd:nonNegativeInteger ;
owl:onClass s4ener:ElapsedSlotTime ;
owl:onProperty saref:hasTime ;
] ;
rdfs:subClassOf [
a owl:Restriction ;
owl:maxQualifiedCardinality "1"^^xsd:nonNegativeInteger ;
owl:onClass s4ener:EndTime ;
owl:onProperty saref:hasTime ;
] ;
rdfs:subClassOf [
a owl:Restriction ;
owl:maxQualifiedCardinality "1"^^xsd:nonNegativeInteger ;
owl:onClass s4ener:LatestEndTime ;
owl:onProperty saref:hasTime ;
] ;
rdfs:subClassOf [
a owl:Restriction ;
owl:maxQualifiedCardinality "1"^^xsd:nonNegativeInteger ;
owl:onClass s4ener:PauseDurationMax ;
owl:onProperty saref:hasTime ;
] ;
rdfs:subClassOf [
a owl:Restriction ;
owl:maxQualifiedCardinality "1"^^xsd:nonNegativeInteger ;
owl:onClass s4ener:PauseDurationMin ;
owl:onProperty saref:hasTime ;
] ;
rdfs:subClassOf [
a owl:Restriction ;
owl:maxQualifiedCardinality "1"^^xsd:nonNegativeInteger ;
owl:onClass s4ener:RemainingSlotTime ;
owl:onProperty saref:hasTime ;
] ;
rdfs:subClassOf [
a owl:Restriction ;
owl:maxQualifiedCardinality "1"^^xsd:nonNegativeInteger ;
owl:onClass s4ener:ResumeCostEstimated ;
owl:onProperty saref:hasPrice ;
] ;
rdfs:subClassOf [
a owl:Restriction ;
owl:maxQualifiedCardinality "1"^^xsd:nonNegativeInteger ;
owl:onClass s4ener:ResumeEnergyEstimated ;
owl:onProperty s4ener:hasEnergy ;
] ;
rdfs:subClassOf [
a owl:Restriction ;
owl:minCardinality "0"^^xsd:nonNegativeInteger ;
owl:onProperty s4ener:hasValueSource ;
] ;
rdfs:subClassOf [
a owl:Restriction ;
owl:minCardinality "0"^^xsd:nonNegativeInteger ;
owl:onProperty s4ener:taskIdentifier ;
] ;
rdfs:subClassOf [
a owl:Restriction ;
owl:minQualifiedCardinality "1"^^xsd:nonNegativeInteger ;
owl:onClass s4ener:PowerSequenceState ;
owl:onProperty saref:hasState ;
] ;
rdfs:subClassOf [
a owl:Restriction ;
owl:minQualifiedCardinality "1"^^xsd:nonNegativeInteger ;
owl:onClass s4ener:Slot ;
owl:onProperty saref:consistsOf ;
] ;
rdfs:subClassOf [
a owl:Restriction ;
owl:minQualifiedCardinality "1"^^xsd:nonNegativeInteger ;
owl:onClass s4ener:StartTime ;
owl:onProperty saref:hasTime ;
] ;
rdfs:subClassOf [
a owl:Restriction ;
owl:onClass s4ener:AlternativesGroup ;
owl:onProperty s4ener:belongsTo ;
owl:qualifiedCardinality "1"^^xsd:nonNegativeInteger ;
] ;
.
s4ener:PowerSequenceContainer
a owl:Class ;
rdfs:comment "A container containing the various Power Sequences among which the EMS may choose for the appropriate Power Sequence at a given time." ;
rdfs:label "Power profile container"@en ;
rdfs:subClassOf owl:Thing ;
.
s4ener:PowerSequenceElement
a owl:Class ;
rdfs:comment "An element of a power sequence, roughly equivalent to slots in the existing S4ener." ;
rdfs:label "Power sequence element"@en ;
rdfs:subClassOf owl:Thing ;
.
s4ener:PowerSequenceState
a 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'."@en ;
rdfs:label "Power sequence state"@en ;
rdfs:subClassOf s4ener:State ;
owl:oneOf (
s4ener:Running
s4ener:Paused
s4ener:Scheduled
s4ener:ScheduledPaused
s4ener:Pending
s4ener:Inactive
s4ener:Completed
s4ener:Invalid
) ;
.
s4ener:PowerSequenceStatus
a owl:Class ;
rdfs:comment "A codelist for the various Power Sequence statuses." ;
rdfs:label "Power sequence status"@en ;
rdfs:subClassOf owl:Thing ;
.
s4ener:PowerSkewness
a owl:Class ;
rdfs:comment "A possible type of power in a slot that represents the power skewness and its value"@en ;
rdfs:label "Power skewness"@en ;
rdfs:subClassOf s4ener:Power ;
.
s4ener:PowerSource
a owl:Class ;
rdfs:comment "Indicates the power source of a device. Possible values are e.g. mainsSinglePhase or battery"@en ;
rdfs:label "Power source"@en ;
rdfs:subClassOf owl:Thing ;
.
s4ener:PowerStandardDeviation
a owl:Class ;
rdfs:comment "A possible type of power in a slot that represents the power standard deviation and its value"@en ;
rdfs:label "Power standard deviation"@en ;
rdfs:subClassOf s4ener:Power ;
.
s4ener:Preliminary
a owl:NamedIndividual ;
a s4ener:ScopeType ;
rdfs:comment "The preliminary version of this concept, usually an incentive table or power plan"@en ;
rdfs:label "Preliminary"@en ;
.
s4ener:Production
a owl:NamedIndividual ;
a s4ener:Usage ;
rdfs:comment "This datapoint indicates the energy production." ;
rdfs:label "Production"@en ;
.
s4ener:Reduce
a owl:NamedIndividual ;
a s4ener:EventActionConsume ;
a s4ener:EventActionProduce ;
rdfs:comment "Load control event action with value 'reduce'"@en ;
rdfs:label "Reduce"@en ;
.
s4ener:Rejected
a owl:NamedIndividual ;
a s4ener:InstructionStatus ;
rdfs:comment "Instruction was rejected" ;
rdfs:label "Rejected"@en ;
.
s4ener:RelativeCost
a owl:NamedIndividual ;
a s4ener:IncentiveType ;
rdfs:comment "The incentive type ''relative cost'' defined in the incentive table."@en ;
rdfs:label "Relative cost"@en ;
.
s4ener:RemainingPauseTime
a 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."@en ;
rdfs:label "Remaining pause time"@en ;
rdfs:subClassOf time:TemporalEntity ;
owl:deprecated true ;
.
s4ener:RemainingSlotTime
a 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."@en ;
rdfs:label "Remaining slot time"@en ;
rdfs:subClassOf time:TemporalEntity ;
owl:deprecated true ;
.
s4ener:RenewableEnergyPercentage
a owl:NamedIndividual ;
a s4ener:IncentiveType ;
rdfs:comment "The incentive type ''renewable energy percentage'' defined in the incentive table."@en ;
rdfs:label "Renewable energy percentage"@en ;
.
s4ener:Resume
a owl:NamedIndividual ;
a s4ener:EventActionConsume ;
a s4ener:EventActionProduce ;
rdfs:comment "Load control event action with value 'resume'"@en ;
rdfs:label "Resume"@en ;
.
s4ener:ResumeCostEstimated
a owl:Class ;
rdfs:comment "In a power sequence the additional costs for the resumption of a device to its normal operation (after a pause)."@en ;
rdfs:label "Resume cost estimated"@en ;
rdfs:subClassOf saref:Price ;
.
s4ener:ResumeEnergyEstimated
a 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."@en ;
rdfs:label "Resume energy estimated"@en ;
rdfs:subClassOf s4ener:Energy ;
.
s4ener:Revoked
a owl:NamedIndividual ;
a s4ener:InstructionStatus ;
rdfs:comment "Instruction was revoked" ;
rdfs:label "Revoked"@en ;
.
s4ener:Rising
a s4ener:ValueTendency ;
rdfs:comment "This value tendency codelist element indicates that the tendency of this measurement indicates that the value is increasing (i.e., rising)." ;
rdfs:label "Rising"@en ;
.
s4ener:Role
a owl:Class ;
rdfs:comment "A codelist containing the various roles a device can take: producer, consumer, and storage." ;
rdfs:label "Role"@en ;
rdfs:subClassOf owl:Thing ;
.
s4ener:RoleType
a owl:Class ;
rdfs:comment "An enumeration containing the various roles a device can take up: consumer, producer, or storage." ;
rdfs:label "Role Type"@en ;
.
s4ener:Running
a owl:NamedIndividual ;
a s4ener:PowerSequenceState ;
rdfs:comment "Power sequence state with value 'running'"@en ;
rdfs:label "Running"@en ;
.
s4ener:ScheduleInstruction
a owl:Class ;
rdfs:comment "Schedule instruction for a power profile flexibility profile." ;
rdfs:label "Schedule Instruction"@en ;
rdfs:subClassOf s4ener:PPBCInstruction ;
.
s4ener:Scheduled
a owl:NamedIndividual ;
a s4ener:PowerSequenceState ;
rdfs:comment "Power sequence state with value 'scheduled'"@en ;
rdfs:label "Scheduled"@en ;
.
s4ener:ScheduledPaused
a owl:NamedIndividual ;
a s4ener:PowerSequenceState ;
rdfs:comment "Power sequence state with value 'scheduled paused'"@en ;
rdfs:label "Scheduled paused"@en ;
.
s4ener:ScopeType
a owl:Class ;
rdfs:comment "An incentive table may additionally define a scope type to indicate whether it is a preliminary or committed version."@en ;
rdfs:label "Scope Type"@en ;
.
s4ener:SetPoint
a owl:NamedIndividual ;
a s4ener:Usage ;
rdfs:comment "This datapoint indicates a setpoint." ;
rdfs:label "Setpoint"@en ;
.
s4ener:Slot
a 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. "@en ;
rdfs:label "Slot"@en ;
rdfs:subClassOf [
a owl:Restriction ;
owl:allValuesFrom saref:Time ;
owl:onProperty saref:hasTime ;
] ;
rdfs:subClassOf [
a owl:Restriction ;
owl:allValuesFrom s4ener:Energy ;
owl:onProperty s4ener:hasEnergyValueType ;
] ;
rdfs:subClassOf [
a owl:Restriction ;
owl:allValuesFrom s4ener:Power ;
owl:onProperty s4ener:hasPowerValueType ;
] ;
rdfs:subClassOf [
a owl:Restriction ;
owl:allValuesFrom s4ener:PowerSequence ;
owl:onProperty s4ener:belongsTo ;
] ;
rdfs:subClassOf [
a owl:Restriction ;
owl:cardinality "1"^^xsd:nonNegativeInteger ;
owl:onProperty s4ener:slotNumber ;
] ;
rdfs:subClassOf [
a owl:Restriction ;
owl:maxCardinality "1"^^xsd:nonNegativeInteger ;
owl:onProperty saref:hasDescription ;
] ;
rdfs:subClassOf [
a owl:Restriction ;
owl:maxCardinality "1"^^xsd:nonNegativeInteger ;
owl:onProperty s4ener:optionalSlot ;
] ;
rdfs:subClassOf [
a owl:Restriction ;
owl:maxCardinality "1"^^xsd:nonNegativeInteger ;
owl:onProperty s4ener:slotActivated ;
] ;
rdfs:subClassOf [
a owl:Restriction ;
owl:maxQualifiedCardinality "1"^^xsd:nonNegativeInteger ;
owl:onClass s4ener:DefaultDuration ;
owl:onProperty saref:hasTime ;
] ;
rdfs:subClassOf [
a owl:Restriction ;
owl:maxQualifiedCardinality "1"^^xsd:nonNegativeInteger ;
owl:onClass s4ener:DurationUncertainty ;
owl:onProperty saref:hasTime ;
] ;
rdfs:subClassOf [
a owl:Restriction ;
owl:maxQualifiedCardinality "1"^^xsd:nonNegativeInteger ;
owl:onClass s4ener:EarliestStartTime ;
owl:onProperty saref:hasTime ;
] ;
rdfs:subClassOf [
a owl:Restriction ;
owl:maxQualifiedCardinality "1"^^xsd:nonNegativeInteger ;
owl:onClass s4ener:EndTime ;
owl:onProperty saref:hasTime ;
] ;
rdfs:subClassOf [
a owl:Restriction ;
owl:maxQualifiedCardinality "1"^^xsd:nonNegativeInteger ;
owl:onClass s4ener:LatestEndTime ;
owl:onProperty saref:hasTime ;
] ;
rdfs:subClassOf [
a owl:Restriction ;
owl:maxQualifiedCardinality "1"^^xsd:nonNegativeInteger ;
owl:onClass s4ener:MaxDuration ;
owl:onProperty saref:hasTime ;
] ;
rdfs:subClassOf [
a owl:Restriction ;
owl:maxQualifiedCardinality "1"^^xsd:nonNegativeInteger ;
owl:onClass s4ener:MinDuration ;
owl:onProperty saref:hasTime ;
] ;
rdfs:subClassOf [
a owl:Restriction ;
owl:maxQualifiedCardinality "1"^^xsd:nonNegativeInteger ;
owl:onClass s4ener:RemainingPauseTime ;
owl:onProperty saref:hasTime ;
] ;
rdfs:subClassOf [
a owl:Restriction ;
owl:maxQualifiedCardinality "1"^^xsd:nonNegativeInteger ;
owl:onClass s4ener:StartTime ;
owl:onProperty saref:hasTime ;
] ;
rdfs:subClassOf [
a owl:Restriction ;
owl:minQualifiedCardinality "1"^^xsd:nonNegativeInteger ;
owl:onClass [
a owl:Class ;
owl:unionOf (
s4ener:Energy
s4ener:Power
) ;
] ;
owl:onProperty s4ener:hasValueType ;
] ;
rdfs:subClassOf [
a owl:Restriction ;
owl:onClass s4ener:PowerSequence ;
owl:onProperty s4ener:belongsTo ;
owl:qualifiedCardinality "1"^^xsd:nonNegativeInteger ;
] ;
.
s4ener:SlotTimeDurationDescription
a owl:Class ;
rdfs:comment "The duration description for the slot time duration temporal entities"@en ;
rdfs:label "Slot time duration description"@en ;
rdfs:subClassOf time:DurationDescription ;
owl:deprecated true ;
.
s4ener:Stable
a s4ener:ValueTendency ;
rdfs:comment "This value tendency codelist element indicates that the tendency this measurement has is to stay stable, instead of rising or falling." ;
rdfs:label "Stable"@en ;
.
s4ener:StartInterruptionInstruction
a owl:Class ;
rdfs:comment "An instruction or message indicating the start of an interruption." ;
rdfs:label "Start Interruption Instruction"@en ;
rdfs:subClassOf s4ener:InterruptionInstruction ;
.
s4ener:StartTime
a owl:Class ;
rdfs:comment "The startTime of a power sequence or slot. SHALL be present"@en ;
rdfs:label "Start time"@en ;
rdfs:subClassOf time:TemporalEntity ;
owl:deprecated true ;
.
s4ener:StartTimeDurationDescription
a owl:Class ;
rdfs:comment "The duration description for the start time duration temporal entities"@en ;
rdfs:label "Start time duration description"@en ;
rdfs:subClassOf time:DurationDescription ;
owl:deprecated true ;
.
s4ener:Started
a owl:NamedIndividual ;
a s4ener:InstructionStatus ;
rdfs:comment "Instruction was executed" ;
rdfs:label "Started"@en ;
.
s4ener:State
a owl:Class ;
rdfs:comment "An entity that represents the possible states in SAREF4EE"@en ;
rdfs:label "State"@en ;
rdfs:subClassOf saref:State ;
.
s4ener:Storage
a owl:Class ;
rdfs:comment "storage device which is the main component of Fill Rate Based Control type.). In the context of flexibility control and instructuons, a device shall be able to inform the CEM about its fill level, a measure of how full the storage is, and the lower and upper boundaries that the fill level should remain within. " ;
rdfs:label "Storage"@en ;
rdfs:subClassOf owl:Thing ;
rdfs:subClassOf s4ener:Device ;
.
s4ener:Succeeded
a owl:NamedIndividual ;
a s4ener:InstructionStatus ;
rdfs:comment "Instruction finished successfully" ;
rdfs:label "Succeeded"@en ;
.
s4ener:TimePeriod
a owl:Class ;
rdfs:comment "The time period associated with load control event data"@en ;
rdfs:label "Time period"@en ;
rdfs:subClassOf time:TemporalEntity ;
owl:deprecated true ;
.
s4ener:TimePeriodDurationDescription
a owl:Class ;
rdfs:comment "The duration description for the time period duration temporal entities"@en ;
rdfs:label "Time period duration description"@en ;
rdfs:subClassOf time:DurationDescription ;
owl:deprecated true ;
.
s4ener:TimeSeries
a owl:Class ;
rdfs:comment "An ordered sequence of data points of a quantity observed at spaced time intervals is referred to as a time series. Time series can be a result of prediction algorithm."@en ;
rdfs:label "Time Series"@en ;
rdfs:subClassOf [
a owl:Restriction ;
owl:allValuesFrom time:Interval ;
owl:onProperty s4ener:hasEffectivePeriod ;
] ;
rdfs:subClassOf [
a owl:Restriction ;
owl:allValuesFrom s4ener:Usage ;
owl:onProperty s4ener:hasUsage ;
] ;
rdfs:subClassOf [
a owl:Restriction ;
owl:maxCardinality "1"^^xsd:nonNegativeInteger ;
owl:onProperty s4ener:hasCreationTime ;
] ;
rdfs:subClassOf [
a owl:Restriction ;
owl:maxCardinality "1"^^xsd:nonNegativeInteger ;
owl:onProperty s4ener:hasTemporalResolution ;
] ;
rdfs:subClassOf [
a owl:Restriction ;
owl:maxCardinality "1"^^xsd:nonNegativeInteger ;
owl:onProperty s4ener:hasUpdateRate ;
] ;
rdfs:subClassOf [
a owl:Restriction ;
owl:minQualifiedCardinality "0"^^xsd:nonNegativeInteger ;
owl:onClass s4ener:DataPoint ;
owl:onProperty s4ener:hasDataPoint ;
] ;
.
s4ener:Timer
a owl:Class ;
rdfs:comment "A timer for time-based operation mode and transition constraints." ;
rdfs:label "Timer"@en ;
rdfs:subClassOf owl:Thing ;
.
s4ener:Transition
a owl:Class ;
rdfs:comment "Possible transitions to switch from one Operation Mode to another or to set new parameters." ;
rdfs:label "Transition"@en ;
rdfs:subClassOf owl:Thing ;
.
s4ener:Upflex
a owl:NamedIndividual ;
a s4ener:Usage ;
rdfs:comment "This datapoint indicates the upper flexibility." ;
rdfs:label "Upflex"@en ;
.
s4ener:UpperLimit
a owl:NamedIndividual ;
a s4ener:PowerEnvelopeLimitType ;
a s4ener:Usage ;
rdfs:comment "The PowerEnvelopeLimitType enumeration for the upper limit." ;
rdfs:comment "This datapoint indicates the upperlimit." ;
rdfs:label "Upper Limit"@en ;
rdfs:label "Upper limit"@en ;
.
s4ener:Usage
a owl:Class ;
rdfs:comment "The usage of a datapoint, time series or message."@en ;
rdfs:label "Usage"@en ;
.
s4ener:ValueSource
a owl:Class ;
rdfs:comment "Indicates the source (origin/foundation) of the measurement forecasted values for a power sequence. If absent, the source is undefined. Remark: This element shall express the reliability of the forecast." ;
rdfs:label "Value source"@en ;
rdfs:subClassOf owl:Thing ;
.
s4ener:ValueTendency
a owl:Class ;
rdfs:comment "This type indicates a codelist for the s4ener:valueTendency property about whether the tendency of a measurement is rising, stable or falling." ;
rdfs:label "Value tendency"@en ;
rdfs:subClassOf owl:Thing ;
.
s4ener:Vanish
a owl:NamedIndividual ;
a s4ener:PowerEnvelopeConsequenceType ;
rdfs:comment "The load or generation that is limited will vanish. This is for example the case with curtailing production from solar panels; the potentially generated energy is lost and will never reappear." ;
rdfs:label "Vanish"@en ;
.
s4ener:abnormalCondition
a owl:DatatypeProperty ;
rdfs:comment "Indicates if this is an instruction during an abnormal condition" ;
rdfs:domain s4ener:FlexibilityInstruction ;
rdfs:label "abnormal condition"@en ;
rdfs:range xsd:boolean ;
.
s4ener:abnormalConditionOnly
a owl:DatatypeProperty ;
rdfs:comment """Indicates if this element can only be used during an abnormal condition.
In SAREF4ENER this property is intended to be used on the following properties:
- s4ener:OperationMode
- s4ener:Transition
- s4ener:AllowedLimitRange
- s4ener:PowerSequence""" ;
rdfs:label "Abnormal Condition Only"@en ;
rdfs:range xsd:boolean ;
.
s4ener:activateSlot
a owl:DatatypeProperty ;
rdfs:comment "Indicates whether a slot is used (activateSlot = true) or not (activateSlot = false). SHALL be present if a slot is optional (i.e., the property s4ee:optionalSlot is TRUE), otherwise SHALL be absent (i.e. in case the slot is mandatory)."@en ;
rdfs:label "activate slot"@en ;
rdfs:range xsd:boolean ;
.
s4ener:activeRepetitionNumber
a owl:DatatypeProperty ;
rdfs:comment "Indicates the current repetition of the sequence of slots. SHALL be present if a power sequence can repeat its sequence of slots (i.e., if s4ee:repetitionTotal is present and has a value > 1). Otherwise, it SHALL be absent. "@en ;
rdfs:label "active repetition number"@en ;
rdfs:range xsd:unsignedInt ;
.
s4ener:activeSlotNumber
a owl:DatatypeProperty ;
rdfs:comment "Indicates the currently active slot number, if the power sequence state is set to 'running' or 'paused'. Otherwise it SHALL be omitted."@en ;
rdfs:label "active slot number"@en ;
rdfs:range xsd:unsignedInt ;
.
s4ener:allowedLimitRange
a owl:ObjectProperty ;
rdfs:comment "This property indicates the various AllowedLimitRanges or PowerLimits that this PowerConstraint object consists of." ;
rdfs:domain [
a owl:Class ;
owl:unionOf (
s4ener:PowerConstraint
s4ener:EnergyConstraint
) ;
] ;
rdfs:label "allowed limit range"@en ;
rdfs:range s4ener:AllowedLimitRange ;
.
s4ener:alternativesCount
a owl:DatatypeProperty ;
rdfs:comment "Indicates the number of alternatives groups provided by a power profile"@en ;
rdfs:label "alternatives count"@en ;
rdfs:range xsd:integer ;
.
s4ener:alternativesGroupID
a owl:DatatypeProperty ;
rdfs:comment "The endpoint-wide unique identifier for the alternatives group instances provided by a power profile"@en ;
rdfs:label "alternatives group ID"@en ;
rdfs:range xsd:integer ;
owl:deprecated true ;
.
s4ener:belongsTo
a owl:ObjectProperty ;
rdfs:comment "A relationship identifying the ownership of an entity. In particular, a slot belongs to a power sequence, a power sequence belongs to an alternative, an alternative belongs to a power profile, a power profile belongs to a device. "@en ;
rdfs:label "belongs to"@en ;
.
s4ener:belongsToTimeSeries
a owl:ObjectProperty ;
rdfs:comment "The relationship that connects a data point to a time series."@en ;
rdfs:domain s4ener:DataPoint ;
rdfs:label "belongs to time series"@en ;
rdfs:range s4ener:TimeSeries ;
owl:inverseOf s4ener:hasDataPoint ;
.
s4ener:brandName
a owl:DatatypeProperty ;
rdfs:comment "Provides the name of the brand of a device. Useful where the name of the brand and the vendor differs."@en ;
rdfs:label "brand name"@en ;
rdfs:range xsd:string ;
.
s4ener:cheapest
a owl:DatatypeProperty ;
rdfs:comment "Indicates whether a power sequence applies a configuration that minimises the user's energy bill (if set to TRUE). MAY be present. Absence of this element is equal to the presence with value FALSE. "@en ;
rdfs:label "cheapest"@en ;
rdfs:range xsd:boolean ;
.
s4ener:deviceCode
a owl:DatatypeProperty ;
rdfs:comment "Provides a device code for the device as defined by the manufacturer."@en ;
rdfs:label "device code"@en ;
rdfs:range xsd:string ;
.
s4ener:deviceName
a owl:DatatypeProperty ;
rdfs:comment "Provides the name of the device as defined by the manufacturer."@en ;
rdfs:label "device name"@en ;
rdfs:range xsd:string ;
.
s4ener:endOfRange
a owl:ObjectProperty ;
rdfs:comment "This property indicates the end of a number range." ;
rdfs:domain s4ener:NumberRange ;
rdfs:label "end of range"@en ;
rdfs:range saref:Measurement ;
.
s4ener:eventID
a owl:DatatypeProperty ;
rdfs:comment "Used in the Demand Response use case to identify an event"@en ;
rdfs:label "event ID"@en ;
rdfs:range xsd:unsignedInt ;
owl:deprecated true ;
.
s4ener:fillRate
a owl:ObjectProperty ;
rdfs:comment "Indicates the change in fill_level per second. The lower_boundary of the NumberRange is associated with an operation_mode_factor of 0, the upper_boundary is associated with an operation_mode_factor of 1." ;
rdfs:domain [
a owl:Class ;
owl:unionOf (
s4ener:Storage
s4ener:OperationModeElement
) ;
] ;
rdfs:label "Fill Rate Level"@en ;
rdfs:range s4ener:NumberRange ;
.
s4ener:firmwareVersion
a owl:DatatypeProperty ;
rdfs:comment "Version identifier of the firmware used in the device (provided by the manufacturer)" ;
rdfs:domain s4ener:Device ;
rdfs:label "has firmware version"@en ;
rdfs:range xsd:string ;
.
s4ener:fromOperationMode
a owl:ObjectProperty ;
rdfs:comment "ID of the OperationMode (exact type differs per ControlType) that should be switched from." ;
rdfs:domain s4ener:Transition ;
rdfs:label "from operation mode"@en ;
rdfs:range s4ener:OperationMode ;
.
s4ener:greenest
a owl:DatatypeProperty ;
rdfs:comment "Indicates whether a power sequence optimises the configuration towards the maximum availability of renewable energy (if set to TRUE). MAY be present. Absence of this element is equal to the presence with value FALSE. "@en ;
rdfs:label "greenest"@en ;
rdfs:range xsd:boolean ;
.
s4ener:hardwareRevision
a owl:DatatypeProperty ;
rdfs:comment "Indicates the hardware revision of the device as defined by the manufacturer."@en ;
rdfs:label "hardware revision "@en ;
rdfs:range xsd:string ;
.
s4ener:hasActivationDelay
a owl:DatatypeProperty ;
rdfs:comment """The scheduled activation delay for a slot.
This property is suggested to be added in SAREF4Ener_v2 to replace the subclasses of time:TemporalEntity and/or time:DurationDescription""" ;
rdfs:label "delay"@en ;
rdfs:range xsd:duration ;
rdfs:subPropertyOf s4ener:hasDuration ;
.
s4ener:hasActivationDelayMax
a owl:DatatypeProperty ;
rdfs:comment """Maximum delay time between the end of the previous slot and the beginning of the current slot.
This property is suggested to be added to SAREF4Ener_v2 to replace the time:TemporalEntity and/or time:DurationDescription.""" ;
rdfs:label "activation delay max"@en ;
rdfs:range xsd:duration ;
rdfs:subPropertyOf s4ener:hasDuration ;
.
s4ener:hasActivationPlan
a owl:ObjectProperty ;
rdfs:comment "The relationship between the s4ener:FlexibilityInstruction and s4ener:TimeSeries."@en ;
rdfs:domain s4ener:FlexibilityInstruction ;
rdfs:label "has activation plan"@en ;
rdfs:range s4ener:TimeSeries ;
.
s4ener:hasActiveDurationMax
a owl:DatatypeProperty ;
rdfs:comment """The active maximum duration a power sequence can run without interruption.
This property is suggested to be added to SAREF4Ener_v2 to replace the time:TemporalEntity and/or time:DurationDescription.""" ;
rdfs:label "active duration max"@en ;
rdfs:range xsd:duration ;
rdfs:subPropertyOf s4ener:hasDuration ;
.
s4ener:hasActiveDurationMin
a owl:DatatypeProperty ;
rdfs:comment """The active mininum duration a power sequence can run without interruption.
This property is suggested to be added to SAREF4Ener_v2 to replace the time:TemporalEntity and/or time:DurationDescription.""" ;
rdfs:label "active duration min"@en ;
rdfs:range xsd:duration ;
rdfs:subPropertyOf s4ener:hasDuration ;
.
s4ener:hasActiveDurationSumMax
a owl:DatatypeProperty ;
rdfs:comment """The active maximum duration a power sequence can run in total (summation of all active times).
This property is suggested to be added to SAREF4Ener_v2 to replace the time:TemporalEntity and/or time:DurationDescription.""" ;
rdfs:label "active duration sum max"@en ;
rdfs:range xsd:duration ;
rdfs:subPropertyOf s4ener:hasDuration ;
.
s4ener:hasActiveDurationSumMin
a owl:DatatypeProperty ;
rdfs:comment """The active minimum duration a power sequence must run in total (summation of all active times).
This property is suggested to be added to SAREF4Ener_v2 to replace the time:TemporalEntity and/or time:DurationDescription.""" ;
rdfs:label "active duration sum min"@en ;
rdfs:range xsd:duration ;
rdfs:subPropertyOf s4ener:hasDuration ;
.
s4ener:hasActiveOperationMode
a owl:ObjectProperty ;
rdfs:comment "A reference to the OperationMode that is presently active" ;
rdfs:domain [
a owl:Class ;
owl:unionOf (
s4ener:OperationMode
saref:Actuator
) ;
] ;
rdfs:label "has active operation mode"@en ;
rdfs:range s4ener:OperationMode ;
.
s4ener:hasAppliedEventActionConsume
a owl:ObjectProperty ;
rdfs:comment "A relationship between the state of a load control event consume and the action to be performed as a consequence of this event."@en ;
rdfs:label "has applied event action consume"@en ;
.
s4ener:hasAppliedEventActionProduce
a owl:ObjectProperty ;
rdfs:comment "A relationship between the state of a load control event produce and the action to be performed as a consequence of this event."@en ;
rdfs:label "has applied event action produce"@en ;
.
s4ener:hasCommodity
a owl:ObjectProperty ;
rdfs:comment "An indication of which commodity this Role is a consumer, producer, or storer of." ;
rdfs:domain s4ener:Role ;
rdfs:label "Uses commodity"@en ;
rdfs:range saref:Commodity ;
.
s4ener:hasConnection
a owl:ObjectProperty ;
rdfs:comment "In the Remote Network Management (RemoteNWM) use case, a relationship between a node in a network (i.e., a s4ee:Device) and its connections (i.e., a s4ee:DeviceConnections). The same s4ee:Device (or node) can have multiple device connections as it can be connected to several networks at the same time."@en ;
rdfs:label "has connection"@en ;
owl:deprecated true ;
.
s4ener:hasConsequenceType
a owl:ObjectProperty ;
rdfs:comment "The consequence type associated with this Power Constraint, which can be Defer or Vanish." ;
rdfs:domain s4ener:PowerConstraint ;
rdfs:label "Has Consequence Type"@en ;
rdfs:range s4ener:PowerEnvelopeConsequenceType ;
.
s4ener:hasConstraints
a owl:ObjectProperty ;
rdfs:comment "This property relates a Power Envelop Instruction or Profile to the constraints it needs to follow. There are two types of constraints modelled: Power constraints and energy constraints." ;
rdfs:domain [
a owl:Class ;
owl:unionOf (
s4ener:PEBCInstruction
s4ener:PowerEnvelopeProfile
) ;
] ;
rdfs:label "has constraints"@en ;
rdfs:range [
a owl:Class ;
owl:unionOf (
s4ener:PowerConstraint
s4ener:EnergyConstraint
) ;
] ;
.
s4ener:hasContractualConsumptionMax
a owl:ObjectProperty ;
rdfs:comment "The relationship between the contractual power limit and the value indicating the max limit consumption."@en ;
rdfs:domain s4ener:ContractualPowerLimit ;
rdfs:label "has contractual consumption Max"@en ;
rdfs:range saref:Measurement ;
rdfs:subPropertyOf s4ener:hasPowerLimitConsumptionMax ;
.
s4ener:hasContractualProductionMax
a owl:ObjectProperty ;
rdfs:comment "The relationship between the contractual power limit and the value indicating the max limit production."@en ;
rdfs:domain s4ener:ContractualPowerLimit ;
rdfs:label "has contractual production Max"@en ;
rdfs:range saref:Measurement ;
rdfs:subPropertyOf s4ener:hasPowerLimitProductionMax ;
.
s4ener:hasCost
a owl:ObjectProperty ;
rdfs:comment " Additional costs per second (e.g. wear, services) associated with this operation mode in the currency defined by the ResourceManagerDetails , excluding the commodity cost. The range is expressing uncertainty and is not linked to the operation_mode_factor." ;
rdfs:comment "The relationship between the s4ener:FlexibilityInstruction and s4ener:DataPoint"@en ;
rdfs:domain s4ener:FlexibilityInstruction ;
rdfs:domain s4ener:OperationMode ;
rdfs:label "has cost"@en ;
rdfs:label "hasCost"@en ;
rdfs:range s4ener:DataPoint ;
.
s4ener:hasCreationTime
a owl:DatatypeProperty ;
rdfs:comment """The time instant that defines the creation time of a data point or quantity or forecast or similar entities. This is not the same as the time at which the quantity is in effect. For example, if a temperature is forecasted today at 12:30 (creation time of the forecast) for the following day at 14:45 (time when the temperature is expected to be in effect), the this instant should be 12:30 of today.
A creation time (instant). This is the point in time when the data point was created, which is not necessarily the time for which it is valid. In the case of soft-sensors or forecasters, a data point might have been created ahead of time, in the case of a direcet measurement a data point might created at its time of validity (or at the end of its validity time interval) and in the case of an archived value the data point might have been created after the fact."""@en ;
rdfs:label "has creation time"@en ;
rdfs:range xsd:dateTimeStamp ;
.
s4ener:hasDataPoint
a owl:ObjectProperty ;
rdfs:comment "This relationship connects a time series to data point."@en ;
rdfs:domain s4ener:TimeSeries ;
rdfs:label "has data point"@en ;
rdfs:range s4ener:DataPoint ;
.
s4ener:hasDemandRate
a owl:ObjectProperty ;
rdfs:comment "The present demand rate that needs to be satisfied by the system" ;
rdfs:domain s4ener:DemandDrivenProfile ;
rdfs:label "has demand rate"@en ;
rdfs:range s4ener:NumberRange ;
.
s4ener:hasDemandRateForecast
a owl:ObjectProperty ;
rdfs:comment "This property relates a Demand Driven Profile to a TimeSeries object that indicates a forecast of the average demand rate." ;
rdfs:domain s4ener:DemandDrivenProfile ;
rdfs:label "has average demand rate forecast"@en ;
rdfs:range s4ener:TimeSeries ;
.
s4ener:hasDevice
a owl:ObjectProperty ;
rdfs:comment "A relationship between a load control event (used to send overload warning severity level and related load control commands) and the device interested by this event."@en ;
rdfs:label "has device"@en ;
.
s4ener:hasDuration
a owl:DatatypeProperty ;
rdfs:comment """This property is added to the time:DurationDescription class to allow to express time duration also as xsd:duration. This is necessary because in the EEBus/E@h model time is always expressed as xsd:duration. We use this property to express the following time information in the EEBus/E@h model:
- the startTime of the power sequence (in the PowerSequence class). SHALL be present
- the endTime of the power sequence (in the PowerSequence class). If the value is available, it SHALL be denoted here. Otherwise the element SHALL be omitted.
- the startTime of measurement as absolute or relative value (in the Measurement class).
- the endTime of measurement as absolute or relative value (in the Measurement class).
The duration is expected to be described as in xsd:duration"""@en ;
rdfs:comment """This property specifies that the componenrt has a duration attribute further specified in the subproperty
This property is suggested to be added to SAREF4Ener_v2 to replace the time:TemporalEntity and/or time:DurationDescription.""" ;
rdfs:label "duration in xsd "@en ;
rdfs:range xsd:duration ;
.
s4ener:hasDurationDefault
a owl:DatatypeProperty ;
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
This property is suggested to be added to SAREF4Ener_v2 to replace the time:TemporalEntity and/or time:DurationDescription.""" ;
rdfs:label "duration default"@en ;
rdfs:range xsd:duration ;
rdfs:subPropertyOf s4ener:hasDuration ;
.
s4ener:hasDurationMin
a owl:DatatypeProperty ;
rdfs:comment """The minimum duration for some component
This property is suggested to be added in SAREF4ENER_V2""" ;
rdfs:label "duration minimum"@en ;
rdfs:range xsd:duration ;
rdfs:subPropertyOf s4ener:hasDuration ;
.
s4ener:hasEarliestStartTime
a owl:DatatypeProperty ;
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.
This property is suggested to be added to SAREF4Ener_v2 to replace the time:TemporalEntity and/or time:DurationDescription.""" ;
rdfs:label "has earliest start time"@en ;
rdfs:range xsd:dateTimeStamp ;
rdfs:subPropertyOf saref:hasTimestamp ;
.
s4ener:hasEffectivePeriod
a owl:ObjectProperty ;
rdfs:comment """This connects to the temporal entity which describes when (time interval) the quantity of this data point was, is, or will be in effect. This is the time interval which is covered by the forecast.
This should be equivalent to the time interval covered by the time-series that express the forecast. *A potential application of SHACL?*""" ;
rdfs:label "has effective period"@en ;
rdfs:range time:Interval ;
.
s4ener:hasEndTime
a owl:DatatypeProperty ;
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."""@en ;
rdfs:label "end time"@en ;
rdfs:range xsd:duration ;
rdfs:subPropertyOf saref:hasTimestamp ;
.
s4ener:hasEnergy
a owl:ObjectProperty ;
rdfs:comment "A relationship between a power sequence and its energy (in terms of value and unit of measure)"@en ;
rdfs:label "has energy"@en ;
rdfs:range s4ener:Energy ;
.
s4ener:hasEnergyValueType
a owl:ObjectProperty ;
rdfs:comment "A relationship representing an energy value type"@en ;
rdfs:label "has energy value type"@en ;
rdfs:subPropertyOf s4ener:hasValueType ;
.
s4ener:hasEnvelope
a owl:ObjectProperty ;
rdfs:comment "This property relates a Power Envelope to the Timeseries object that describes the envelope" ;
rdfs:domain s4ener:PowerEnvelope ;
rdfs:label "has envelope"@en ;
rdfs:range s4ener:TimeSeries ;
.
s4ener:hasEventStateConsume
a owl:ObjectProperty ;
rdfs:comment "A relationship between the specification of the state of a load control event consume and the value that this state can assume."@en ;
rdfs:label "has event state consume"@en ;
rdfs:subPropertyOf saref:hasState ;
.
s4ener:hasEventStateProduce
a owl:ObjectProperty ;
rdfs:comment "A relationship between the specification of the state of a load control event produce and the value that this state can assume."@en ;
rdfs:label "has event state produce"@en ;
rdfs:subPropertyOf saref:hasState ;
.
s4ener:hasExecutionTime
a owl:DatatypeProperty ;
rdfs:comment "Start time of the instruction" ;
rdfs:domain s4ener:FlexibilityInstruction ;
rdfs:label "has execution time"@en ;
rdfs:range xsd:dateTimeStamp ;
rdfs:subPropertyOf saref:hasTimestamp ;
.
s4ener:hasExpression
a owl:ObjectProperty ;
rdfs:comment "A relationship between an appliance parameter compatibility action and the associated expressions"@en ;
rdfs:label "has expression"@en ;
owl:deprecated true ;
.
s4ener:hasFailsafeConsumptionMax
a owl:ObjectProperty ;
rdfs:comment "The relationship between the failsafe power limit and the value indicating its consumption."@en ;
rdfs:domain s4ener:FailsafePowerLimit ;
rdfs:label "has failsafe consumption max"@en ;
rdfs:range saref:Measurement ;
rdfs:subPropertyOf s4ener:hasPowerLimitConsumptionMax ;
.
s4ener:hasFailsafeDuration
a owl:DatatypeProperty ;
rdfs:comment "The relationship between the failsafe power limit and its duration. This property indicates the minimum duration the fail safe state will take once a device has entered that state."@en ;
rdfs:domain s4ener:FailsafeState ;
rdfs:label "has failsafe duration"@en ;
rdfs:range xsd:duration ;
rdfs:subPropertyOf s4ener:hasDuration ;
.
s4ener:hasFailsafeProductionMax
a owl:ObjectProperty ;
rdfs:comment "The relationship between the failsafe power limit and the value indicating its production."@en ;
rdfs:domain s4ener:FailsafePowerLimit ;
rdfs:label "has failsafe production max"@en ;
rdfs:range saref:Measurement ;
rdfs:subPropertyOf s4ener:hasPowerLimitProductionMax ;
.
s4ener:hasFillLevelRange
a owl:ObjectProperty ;
rdfs:comment """The range of the fill level for which this FRBC.OperationModeElement applies.
If this concept is applied on a Storage it indicated the range in which a storage should remain.""" ;
rdfs:domain [
a owl:Class ;
owl:unionOf (
s4ener:Storage
s4ener:OperationModeElement
s4ener:LeakageBehaviourElement
s4ener:FillLevelTargetProfileElement
) ;
] ;
rdfs:label "Fill Level Range"@en ;
rdfs:range s4ener:NumberRange ;
.
s4ener:hasFillLevelTargetProfile
a owl:ObjectProperty ;
rdfs:comment """The Fill Level Target Profile of the storage that the current Fill Rate Profile tries to accomodate for.
NB. This cannot be modelled as a TimeSeries, since the x-axis is not time.""" ;
rdfs:domain s4ener:Storage ;
rdfs:label "has fill level target profile"@en ;
rdfs:range s4ener:FillLevelTargetProfile ;
.
s4ener:hasFillLevelTargetProfileElement
a owl:ObjectProperty ;
rdfs:comment "The various Fill Level Target Profile Elements detailing the Fill Level Target Profile that the current Fill Level Based Profile tries to accomodate for." ;
rdfs:domain s4ener:FillLevelTargetProfile ;
rdfs:label "has fill level target profile element"@en ;
rdfs:range s4ener:FillLevelTargetProfileElement ;
.
s4ener:hasFunction
a owl:ObjectProperty ;
rdfs:comment "A relationship identifying the functions performed by an actuator level and an actuator switch"@en ;
rdfs:label "has function"@en ;
owl:deprecated true ;
.
s4ener:hasIncentive
a owl:ObjectProperty ;
rdfs:comment "This property relates an IncentiveTable element, such as an IncentiveTableSlot or an IncentiveTableTier to the boundaries that it consists of." ;
rdfs:domain [
a owl:Class ;
owl:unionOf (
s4ener:IncentiveTableSlot
s4ener:IncentiveTableTier
) ;
] ;
rdfs:label "has incentive"@en ;
rdfs:range s4ener:Incentive ;
.
s4ener:hasIncentiveType
a owl:ObjectProperty ;
rdfs:comment "The relationship between the tier and its incentive type"@en ;
rdfs:domain s4ener:IncentiveTableTier ;
rdfs:label "has incentive type"@en ;
rdfs:range s4ener:IncentiveType ;
.
s4ener:hasIndex
a owl:DatatypeProperty ;
rdfs:comment "Gives the index for elements that are an array in the S2 specification. Can be used regularly as well as in RDF* manner on properties." ;
rdfs:label "has index"@en ;
rdfs:range xsd:integer ;
.
s4ener:hasInstructionStatus
a owl:ObjectProperty ;
rdfs:comment "Present status of this instruction." ;
rdfs:label "has Instruction Status"@en ;
rdfs:range s4ener:InstructionStatus ;
.
s4ener:hasInterruptionEndTime
a owl:DatatypeProperty ;
rdfs:comment "The end time included in an Interruption Instruction message indicating when the interruption should end." ;
rdfs:domain s4ener:InterruptionInstruction ;
rdfs:label "has end time Interruption"@en ;
rdfs:range xsd:dateTimeStamp ;
rdfs:subPropertyOf saref:hasTimestamp ;
.
s4ener:hasInterruptionStartTime
a owl:DatatypeProperty ;
rdfs:comment "The start time included in an Interruption Instruction message indicating when the interruption should start." ;
rdfs:domain s4ener:InterruptionInstruction ;
rdfs:label "Has Interruption Start Time"@en ;
rdfs:range xsd:dateTimeStamp ;
rdfs:subPropertyOf saref:hasTimestamp ;
.
s4ener:hasLatestEndTime
a owl:DatatypeProperty ;
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.
This property is suggested to be added to SAREF4Ener_v2 to replace the time:TemporalEntity and/or time:DurationDescription.""" ;
rdfs:label "has latest end time"@en ;
rdfs:subPropertyOf saref:hasTimestamp ;
.
s4ener:hasLeakageBehaviour
a owl:ObjectProperty ;
rdfs:comment "The Leakage Behaviour associated with this storage." ;
rdfs:domain s4ener:Storage ;
rdfs:label "has leakage behaviour"@en ;
rdfs:range s4ener:LeakageBehaviour ;
.
s4ener:hasLeakageBehaviourElement
a owl:ObjectProperty ;
rdfs:comment "This property relates the LeakageBehaviour description to the LeakageBehaviourElements indicating the detailed description." ;
rdfs:domain s4ener:LeakageBehaviour ;
rdfs:label "has leakage behaviour element"@en ;
rdfs:range s4ener:LeakageBehaviourElement ;
.
s4ener:hasLowerAveragePower
a owl:DatatypeProperty ;
rdfs:comment "The lower average power associated with this Energy constraint." ;
rdfs:domain s4ener:EnergyConstraint ;
rdfs:label "has lower average power"@en ;
rdfs:range xsd:integer ;
.
s4ener:hasLowerBoundary
a owl:ObjectProperty ;
rdfs:comment "This property relates an IncentiveTableBoundary to the datapoint describing its lower boundary or starting point at which this boundary becomes active." ;
rdfs:domain s4ener:Incentive ;
rdfs:label "has lower boundary"@en ;
rdfs:range s4ener:DataPoint ;
.
s4ener:hasMaxPauseBefore
a owl:DatatypeProperty ;
rdfs:comment "The maximum duration for which a device can be paused between the end of the previous running sequence and the start of this one" ;
rdfs:domain s4ener:PowerSequence ;
rdfs:label "max pause before"@en ;
rdfs:range xsd:duration ;
rdfs:subPropertyOf s4ener:hasDuration ;
.
s4ener:hasMaxPauseDuration
a owl:DatatypeProperty ;
rdfs:comment "The maximum duration for which a device can be paused between the end of the previous running sequence and the start of this one" ;
rdfs:domain s4ener:PowerSequence ;
rdfs:label "Pause before Maximum"@en ;
rdfs:range xsd:duration ;
rdfs:subPropertyOf s4ener:hasDuration ;
.
s4ener:hasMessagingType
a owl:ObjectProperty ;
rdfs:comment "The messaging type associated with this element." ;
rdfs:label "has messaging type"@en ;
.
s4ener:hasName
a owl:DatatypeProperty ;
rdfs:comment "Human readable name given by user" ;
rdfs:label "Has Name"@en ;
rdfs:range xsd:string ;
.
s4ener:hasNominalConsumption
a owl:ObjectProperty ;
rdfs:comment "The relationship between the nominal power limit and the value indicating the max limit consumption."@en ;
rdfs:domain s4ener:NominalPowerLimit ;
rdfs:label "has nominal consumption Max"@en ;
rdfs:range saref:Measurement ;
rdfs:subPropertyOf s4ener:hasPowerLimitConsumptionMax ;
.
s4ener:hasNominalProduction
a owl:ObjectProperty ;
rdfs:comment "The relationship between the nominal power limit and the value indicating the max limit production."@en ;
rdfs:domain s4ener:NominalPowerLimit ;
rdfs:label "has nominal production Max"@en ;
rdfs:range saref:Measurement ;
rdfs:subPropertyOf s4ener:hasPowerLimitProductionMax ;
.
s4ener:hasNumberRange
a owl:ObjectProperty ;
rdfs:comment "This property provides the association between a power range and its number range." ;
rdfs:domain s4ener:PowerRange ;
rdfs:label "has number range"@en ;
rdfs:range s4ener:NumberRange ;
.
s4ener:hasOperationMode
a owl:ObjectProperty ;
rdfs:comment """This property indicates the s4ener:OperationMode inidicated by this Actuator, Instruction, or OperationModeProfile.
The SAREF4ENER extension expects the following classes to be used as domain:
- saref:Actuator
- s4ener:FRBCInstruction
- s4ener:DDBCInstruction
- s4ener:OMBCInstruction
- s4ener:OperationModeProfile""" ;
rdfs:label "has Operation Modes"@en ;
rdfs:range s4ener:OperationMode ;
.
s4ener:hasOperationModeElement
a owl:ObjectProperty ;
rdfs:comment "List of OperationModeElements, which describe the properties of this FRBC.OperationMode depending on the fill_level. The fill_level_ranges of the items in the Array must be contiguous." ;
rdfs:domain s4ener:OperationMode ;
rdfs:label "Has Operation Mode Element"@en ;
rdfs:range s4ener:OperationModeElement ;
.
s4ener:hasOperationModeFactor
a owl:DatatypeProperty ;
rdfs:comment """The number indicates the factor with which the FRBC.OperationMode or OMBC.OperationMode is usedconfigured. The factor should be greater than or equal than 0 and less or equal to 1.
Within the SAREF4ENER extension, this property is to be used on the following classes:
- s4ener:OMBCInstruction
- s4ener:OperationMode
- saref:Actuator
- s4ener:FRBCInstruction
- s4ener:DDBCInstruction""" ;
rdfs:label "Has Operation Mode Factor"@en ;
rdfs:range xsd:decimal ;
.
s4ener:hasPowerEnvelope
a owl:ObjectProperty ;
rdfs:comment "The PEBC.PowerEnvelope(s) that should be followed by the Resource Manager. There shall be at least one PEBC.PowerEnvelope, but at most one PEBC.PowerEnvelope for each CommodityQuantity." ;
rdfs:domain [
a owl:Class ;
owl:unionOf (
s4ener:PEBCInstruction
s4ener:PowerEnvelopeProfile
) ;
] ;
rdfs:label "has power envelope"@en ;
rdfs:range s4ener:PowerEnvelope ;
.
s4ener:hasPowerEnvelopeElement
a owl:ObjectProperty ;
rdfs:comment "This property relates a PowerEnvelopeProfile to the various specific PowerEnvelops contained in the profile." ;
rdfs:domain s4ener:PowerEnvelopeProfile ;
rdfs:label "has power envelope element"@en ;
rdfs:range s4ener:PowerEnvelope ;
.
s4ener:hasPowerLimitConsumptionMax
a owl:ObjectProperty ;
rdfs:comment "The relationship between the power limit and the value indicating the max limit consumption."@en ;
rdfs:domain s4ener:PowerLimit ;
rdfs:label "has power limit consumption Max"@en ;
rdfs:range saref:Measurement ;
.
s4ener:hasPowerLimitDuration
a owl:DatatypeProperty ;
rdfs:comment "The relationship between the power limit and its duration. Power limit may come with a time period of validity based on duration"@en ;
rdfs:domain s4ener:PowerLimit ;
rdfs:label "has power limit duration"@en ;
rdfs:range xsd:duration ;
rdfs:subPropertyOf s4ener:hasDuration ;
.
s4ener:hasPowerLimitProductionMax
a owl:ObjectProperty ;
rdfs:comment "The relationship between the power limit and the value indicating the max limit production."@en ;
rdfs:domain s4ener:PowerLimit ;
rdfs:label "has power limit production Max"@en ;
rdfs:range saref:Measurement ;
.
s4ener:hasPowerLimitState
a owl:ObjectProperty ;
rdfs:comment "The relationship between the power limit state and its state (active/ inactive)."@en ;
rdfs:domain s4ener:PowerLimit ;
rdfs:label "has power limit state"@en ;
.
s4ener:hasPowerRange
a owl:ObjectProperty ;
rdfs:comment "The power produced or consumed by this operation mode. The start of each PowerRange is associated with an operation_mode_factor of 0, the end is associated with an operation_mode_factor of 1. In the array there must be at least one PowerRange, and at most one PowerRange per CommodityQuantity." ;
rdfs:domain [
a owl:Class ;
owl:unionOf (
s4ener:OperationMode
s4ener:OperationModeElement
) ;
] ;
rdfs:label "Has Power Ranges"@en ;
rdfs:range s4ener:PowerRange ;
.
s4ener:hasPowerSequence
a owl:ObjectProperty ;
rdfs:comment "The various Sequences contained in a Power Sequence Container among which the EMS can choose the proper PowerSequence for the current energy demands." ;
rdfs:domain s4ener:PowerSequenceContainer ;
rdfs:label "has power sequence"@en ;
rdfs:range s4ener:PowerSequence ;
.
s4ener:hasPowerSequenceContainer
a owl:ObjectProperty ;
rdfs:comment "The various power sequence containers contained within an S2 Power Profile. The containers have to executed one after the other. Each container contains various Power Sequence anong which the EMS can choose the appropriate Power Sequence for the current energy demands." ;
rdfs:domain s4ener:PowerProfile ;
rdfs:label "has power sequence container"@en ;
rdfs:range s4ener:PowerSequenceContainer ;
.
s4ener:hasPowerSequenceElement
a owl:ObjectProperty ;
rdfs:comment "A connection between the Power Sequence and the elements (or Slots) describing the exact contents." ;
rdfs:domain s4ener:PowerSequence ;
rdfs:label "has power sequence element"@en ;
rdfs:range s4ener:PowerSequenceElement ;
.
s4ener:hasPowerSequenceStatus
a owl:ObjectProperty ;
rdfs:comment "This property indicates the current status of this Power Sequence." ;
rdfs:domain s4ener:PowerSequenceContainer ;
rdfs:label "has power sequence status"@en ;
rdfs:range s4ener:PowerSequenceStatus ;
.
s4ener:hasPowerSource
a owl:DatatypeProperty ;
rdfs:comment "Indicates the power source of a device. Possible values are e.g. mainsSinglePhase or battery "@en ;
rdfs:label "power source"@en ;
rdfs:range [
a rdfs:Datatype ;
owl:oneOf (
"unknown"
"mainsSinglePhase"
"mains3Phase"
"battery"
"dc"
) ;
] ;
.
s4ener:hasPowerValueType
a owl:ObjectProperty ;
rdfs:comment "A relationship representing a power value type"@en ;
rdfs:label "has power value type"@en ;
rdfs:subPropertyOf s4ener:hasValueType ;
.
s4ener:hasPreviousOperationMode
a owl:ObjectProperty ;
rdfs:comment "The previous operation mode this device was in" ;
rdfs:domain [
a owl:Class ;
owl:unionOf (
saref:Actuator
s4ener:OperationMode
) ;
] ;
rdfs:label "has previous operation mode"@en ;
rdfs:range s4ener:OperationMode ;
.
s4ener:hasQuantile
a owl:DatatypeProperty ;
rdfs:comment "Used to define a quantile for example on a data point of a quantile time series. The quantile must be a ratio, usually a percentage. In a quantile forecast the hasQuantile property cannot be empty"@en ;
rdfs:domain s4ener:DataPoint ;
rdfs:label "has quantile"@en ;
rdfs:range xsd:decimal ;
.
s4ener:hasRecipient
a owl:ObjectProperty ;
rdfs:comment "This property can be used to connect a flexibility offer or/and flexibility request to a foaf:agent or saref:Device."@en ;
rdfs:label "has recipient"@en ;
.
s4ener:hasRole
a owl:ObjectProperty ;
rdfs:comment "Each Resource Manager provides one or more energy Roles" ;
rdfs:domain s4ener:Device ;
rdfs:label "performs role"@en ;
rdfs:range s4ener:Role ;
.
s4ener:hasRoleType
a owl:ObjectProperty ;
rdfs:comment "The type of this specific role" ;
rdfs:domain s4ener:Role ;
rdfs:label "role type"@en ;
rdfs:range s4ener:RoleType ;
.
s4ener:hasRunningCosts
a owl:ObjectProperty ;
rdfs:comment "Additional costs per second (e.g. wear, services) associated with this operation mode in the currency defined by the ResourceManagerDetails , excluding the commodity cost. The range is expressing uncertainty and is not linked to the operation_mode_factor." ;
rdfs:domain s4ener:OperationModeElement ;
rdfs:label "has running costs"@en ;
rdfs:range s4ener:NumberRange ;
.
s4ener:hasScopeType
a owl:ObjectProperty ;
rdfs:comment "The relationship between the incentive table and the scope type"@en ;
rdfs:domain s4ener:IncentiveTableBasedProfile ;
rdfs:label "has scope type"@en ;
rdfs:range s4ener:ScopeType ;
.
s4ener:hasSlotValue
a owl:ObjectProperty ;
rdfs:comment """This property is intended to specify the power or energy value of a slot in a power sequence as part of a power profile.
This property is a suggestion to be added in Saref4Energy v2.""" ;
rdfs:domain s4ener:Slot ;
rdfs:label "has slot value"@en ;
rdfs:range saref:Measurement ;
rdfs:range [
a owl:Restriction ;
owl:minQualifiedCardinality "1"^^xsd:nonNegativeInteger ;
owl:onClass [
a owl:Class ;
owl:unionOf (
saref:Energy
saref:Power
) ;
] ;
owl:onProperty saref:relatesToProperty ;
] ;
.
s4ener:hasStandardDeviation
a owl:DatatypeProperty ;
rdfs:comment "Adds a standard deviation to a data point."@en ;
rdfs:domain s4ener:GaussianDataPoint ;
rdfs:label "has standard deviation"@en ;
rdfs:range xsd:decimal ;
.
s4ener:hasStartTime
a owl:DatatypeProperty ;
rdfs:comment "The startTime of a power sequence or slot. SHALL be present"@en ;
rdfs:label "has start time"@en ;
rdfs:range xsd:dateTimeStamp ;
rdfs:subPropertyOf saref:hasTimestamp ;
.
s4ener:hasStorage
a owl:ObjectProperty ;
rdfs:comment "The storage regulated by the related Fill Rate Profile." ;
rdfs:domain s4ener:FillRateProfile ;
rdfs:label "has storage"@en ;
rdfs:range s4ener:Storage ;
.
s4ener:hasSupplyRange
a owl:ObjectProperty ;
rdfs:comment "The SupplyRange this OperationMode of a Demand Driven Profile can deliver for the CEM to match the DemandRate. The start of the NumberRange is associated with an operation_mode_factor of 0, the end is associated with an operation_mode_factor of 1." ;
rdfs:domain s4ener:OperationMode ;
rdfs:label "Has Supply Range"@en ;
rdfs:range s4ener:NumberRange ;
.
s4ener:hasTemporalResolution
a owl:DatatypeProperty ;
rdfs:comment "The resolution is the distance between two measurement time-stapms. This only makes sense if the measurements are equidistant." ;
rdfs:label "has temporal resolution"@en ;
rdfs:range xsd:duration ;
.
s4ener:hasTier
a owl:ObjectProperty ;
rdfs:comment "The relationship between the incentive table and the tiers it consists of"@en ;
rdfs:domain s4ener:IncentiveTableBasedProfile ;
rdfs:label "has tier incentive"@en ;
.
s4ener:hasTimer
a owl:ObjectProperty ;
rdfs:comment "The set of timers that are available in this Actuator or OperationModeProfile" ;
rdfs:domain [
a owl:Class ;
owl:unionOf (
saref:Actuator
s4ener:OperationModeProfile
) ;
] ;
rdfs:label "Has Timer"@en ;
rdfs:range s4ener:Timer ;
.
s4ener:hasTransition
a owl:ObjectProperty ;
rdfs:comment "The transitions between various saref:States or s4ener:OperationModes that either the Actuator or the OperationModeProfile can support." ;
rdfs:domain [
a owl:Class ;
owl:unionOf (
saref:Actuator
s4ener:OperationModeProfile
) ;
] ;
rdfs:label "has transition"@en ;
rdfs:range s4ener:Transition ;
.
s4ener:hasTransitionCosts
a owl:DatatypeProperty ;
rdfs:comment "Absolute costs for going through this Transition in the currency as described in the ResourceManagerDetails." ;
rdfs:domain s4ener:Transition ;
rdfs:label "has transition costs"@en ;
rdfs:range xsd:decimal ;
.
s4ener:hasTransitionDuration
a owl:DatatypeProperty ;
rdfs:comment "Indicates the time between the initiation of this Transition, and the time at which the device behaves according to the Operation Mode which is defined in the appropriate data element. When no value is provided it is assumed the transition duration is negligible." ;
rdfs:domain s4ener:Transition ;
rdfs:label "Transition Duration"@en ;
rdfs:range xsd:duration ;
rdfs:subPropertyOf s4ener:hasDuration ;
.
s4ener:hasTransitionTimestamp
a owl:DatatypeProperty ;
rdfs:comment "Time at which the transition from the previous Operation Mode was initiated. This value shall always be provided, unless the active OperationMode is the first OperationMode the Resource Manager is aware of." ;
rdfs:domain [
a owl:Class ;
owl:unionOf (
s4ener:OperationMode
saref:Actuator
) ;
] ;
rdfs:label "transition Timestamp"@en ;
rdfs:range xsd:dateTimeStamp ;
rdfs:subPropertyOf saref:hasTimestamp ;
.
s4ener:hasUpdateRate
a owl:DatatypeProperty ;
rdfs:comment """The rate at which a data point or time-series or forecast or other data entity is being updated.
If the time series gets regularly updated, then the time between two updates can be recorded here."""@en ;
rdfs:label "has update rate"@en ;
rdfs:range xsd:duration ;
.
s4ener:hasUpperAveragePower
a owl:DatatypeProperty ;
rdfs:comment "The upper average power of an Energy constraint of a Power Envelope profile." ;
rdfs:domain s4ener:EnergyConstraint ;
rdfs:label "has upper average power"@en ;
rdfs:range xsd:integer ;
.
s4ener:hasUpperBoundary
a owl:ObjectProperty ;
rdfs:comment "This property relates a boundary to its upper boundary or the value at which this incentive becomes inactive. This value is optional, because the upper boundary can be inferred from the lower boundary of the next boundary." ;
rdfs:domain s4ener:Incentive ;
rdfs:label "has upper boundary"@en ;
rdfs:range s4ener:DataPoint ;
.
s4ener:hasUsage
a owl:ObjectProperty ;
rdfs:comment "This property provides the possibility to add some additional information about the usage of a data-point or time-series. For example, a data point or time series can be used as an upper limit, lower limit or a baseline, a maximum versus minimum value, or a consumption versus a production value."@en ;
rdfs:label "has usage"@en ;
rdfs:range s4ener:Usage ;
.
s4ener:hasUsageForecast
a owl:ObjectProperty ;
rdfs:comment """Indicates the usage forecast that may be relevant to decide the energy flexibility strategy following a specific flexibility profile, specifically a fill rate based profile or incentive table.
In SAREF4ENER this property is intended to be applied on an s4ener:FlexibilityProfile.""" ;
rdfs:label "Has Usage Forecast"@en ;
rdfs:range s4ener:TimeSeries ;
.
s4ener:hasValue
a owl:DatatypeProperty ;
rdfs:comment "Power value expressed in the unit associated with the CommodityQuantity of the Power Value." ;
rdfs:label "has value"@en ;
rdfs:range xsd:decimal ;
.
s4ener:hasValueSource
a owl:ObjectProperty ;
rdfs:comment "Indicates the source (origin/foundation) of the measurement forecasted values for a power sequence. If absent, the source is undefined. Remark: This element shall express the reliability of the forecast."@en ;
rdfs:label "has value source"@en ;
rdfs:range s4ener:ValueSource ;
.
s4ener:hasValueType
a owl:ObjectProperty ;
rdfs:comment "A relation representing the value type of an entity"@en ;
rdfs:label "has value type"@en ;
.
s4ener:includes
a owl:ObjectProperty ;
rdfs:comment "This property can be used to connect the flexibility offer and/or flexibility request to the flexibility profile. Additionally, it can be used to specify the s4ener:datapoint, s4ener:timeseries and ic-fc:forecast included in the flexibility offer and/or flexibility request."@en ;
rdfs:label "includes"@en ;
.
s4ener:isActive
a owl:DatatypeProperty ;
rdfs:comment "Indicates whether the power limit is currently active" ;
rdfs:domain s4ener:PowerLimit ;
rdfs:label "is active"@en ;
rdfs:range xsd:boolean ;
.
s4ener:isActuatedBy
a owl:ObjectProperty ;
rdfs:comment "A reference to an (external) actuator that can potentially activate this profile or where the instruction originates from." ;
rdfs:domain [
a owl:Class ;
owl:unionOf (
s4ener:DemandDrivenProfile
s4ener:FillRateProfile
s4ener:FRBCInstruction
s4ener:DDBCInstruction
) ;
] ;
rdfs:label "is actuated by"@en ;
rdfs:range saref:Actuator ;
.
s4ener:isBlockedBy
a owl:ObjectProperty ;
rdfs:comment "The Timers that block this Transition from initiating while at least one of these Timers is not yet finished" ;
rdfs:domain s4ener:Transition ;
rdfs:label "is blocked by"@en ;
rdfs:range s4ener:Timer ;
.
s4ener:isBoundTo
a owl:ObjectProperty ;
rdfs:comment "The relationship between a device and its contractual power limit"@en ;
rdfs:domain s4ener:PowerLimitProfile ;
rdfs:label "is bound to"@en ;
rdfs:range s4ener:ContractualPowerLimit ;
.
s4ener:isChangeable
a owl:DatatypeProperty ;
rdfs:comment """A relationship indicating that this element can be changed by its operator. The boolean value indicates whether it is indeed changeable.
In the SAREF4ENER extension this property is intended for PowerLimits and IncentiveTable elements, such as the IncentivebasedProfile, IncentiveTableSlot, and the IncentiveTableTier."""@en ;
rdfs:label "is changeable"@en ;
rdfs:range xsd:boolean ;
.
s4ener:isFinishedAt
a owl:DatatypeProperty ;
rdfs:comment "Indicates when the Timer will be finished. If the DateTimeStamp is in the future, the timer is not yet finished. If the DateTimeStamp is in the past, the timer is finished. When the timer was never started, the value can be an arbitrary DateTimeStamp in the past." ;
rdfs:domain s4ener:Timer ;
rdfs:label "is finished at"@en ;
rdfs:range xsd:dateTimeStamp ;
rdfs:subPropertyOf saref:hasTimestamp ;
.
s4ener:isInterruptible
a owl:DatatypeProperty ;
rdfs:comment "This property indicates whether the PowerSequence is interruptible." ;
rdfs:domain s4ener:PowerSequence ;
rdfs:label "is interruptible"@en ;
rdfs:range xsd:boolean ;
.
s4ener:isLimitedWith
a owl:ObjectProperty ;
rdfs:comment "The relationship between device and failsafe power limit"@en ;
rdfs:domain s4ener:PowerLimitProfile ;
rdfs:label "is limited with"@en ;
rdfs:range s4ener:FailsafePowerLimit ;
.
s4ener:isObligatory
a owl:DatatypeProperty ;
rdfs:comment "A relationship between the power limit and the boolean value indicating whether the power limit is obligatory"@en ;
rdfs:domain s4ener:PowerLimit ;
rdfs:label "is obligatory"@en ;
rdfs:range xsd:boolean ;
.
s4ener:isPausable
a owl:DatatypeProperty ;
rdfs:comment "Specifies if the power sequence is pausable."@en ;
rdfs:label "is pausable"@en ;
rdfs:range xsd:boolean ;
.
s4ener:isProtectedBy
a owl:ObjectProperty ;
rdfs:comment "The relationship between the device and the nominal power limit"@en ;
rdfs:domain s4ener:PowerLimitProfile ;
rdfs:label "is protected by"@en ;
rdfs:range s4ener:NominalPowerLimit ;
.
s4ener:isStoppable
a owl:DatatypeProperty ;
rdfs:comment "Specifies if the power sequence is stoppable."@en ;
rdfs:label "is stoppable"@en ;
rdfs:range xsd:boolean ;
.
s4ener:leakageRate
a owl:ObjectProperty ;
rdfs:comment "Indicates how fast the momentary fill level will decrease per second due to leakage within the given range of the fill level." ;
rdfs:domain s4ener:LeakageBehaviourElement ;
rdfs:label "Leakage Rate"@en ;
rdfs:range saref:Measurement ;
.
s4ener:limitType
a owl:ObjectProperty ;
rdfs:comment "Indicates if this ranges applies to the upper limit or the lower limit." ;
rdfs:domain s4ener:AllowedLimitRange ;
rdfs:label "Limit Type"@en ;
rdfs:range s4ener:PowerEnvelopeLimitType ;
.
s4ener:manufacturerDescription
a owl:DatatypeProperty ;
rdfs:comment "A description for the device as defined by the manufacturer."@en ;
rdfs:label "manufacturer description"@en ;
rdfs:range xsd:string ;
.
s4ener:manufacturerLabel
a owl:DatatypeProperty ;
rdfs:comment "A short label of the device as defined by the manufacturer. "@en ;
rdfs:label "manufacturer label"@en ;
rdfs:range xsd:string ;
.
s4ener:manufacturerNodeIdentification
a owl:DatatypeProperty ;
rdfs:comment "Indicates a node identification for the device as defined by the manufacturer. This could be used for the identification of a device, even if it was removed from the network and rejoined later with changed node address."@en ;
rdfs:label "manufacturer node identification"@en ;
rdfs:range xsd:string ;
.
s4ener:maxCyclesPerDay
a owl:DatatypeProperty ;
rdfs:comment "States the maximum amount of starts a power sequence (of a device) allows per day."@en ;
rdfs:label "max cycles per day"@en ;
rdfs:range xsd:unsignedInt ;
.
s4ener:measurementID
a owl:DatatypeProperty ;
rdfs:comment "Enables the identification of different sensors on one EEBus address."@en ;
rdfs:label "measurement id"@en ;
rdfs:range xsd:unsignedInt ;
owl:deprecated true ;
.
s4ener:messagingNumber
a owl:DatatypeProperty ;
rdfs:comment "An identifier for one specific message. If a message is marked as obsolete, this number can be used to identify the original message."@en ;
rdfs:label "messaging number"@en ;
rdfs:range xsd:unsignedInt ;
owl:deprecated true ;
.
s4ener:messagingType
a owl:DatatypeProperty ;
rdfs:comment """Indicates the type of the message. Possible values are:
- logging (used for messages, that shall be stored in a log file)
- information (messages, that shall be presented to the customer on a display; lower priority)
- warning (messages, that shall be presented to the customer on a display; medium priority)
- alarm (messages, that shall be presented to the customer on a display; high priority; if there is an alarm device in the household, it shall generate an alarm)
- emergency (messages, that shall be presented to the customer on a display; very high priority; if there is an alarm device in the household, it shall generate an alarm; additionally, if possible and configured, an emergency call shall be done)
- obsolete (previously sent messages, that shall be marked as obsolete)"""@en ;
rdfs:label "messaging type"@en ;
rdfs:range [
a rdfs:Datatype ;
owl:oneOf (
"logging"
"information"
"warning"
"alarm"
"emergency"
"obsolete"
) ;
] ;
owl:deprecated true ;
.
s4ener:nodeRemoteControllable
a owl:DatatypeProperty ;
rdfs:comment "Indicates whether the power profile of a device is configured for remote control (e.g., by an energy management system).This refers to the selection chosen by the user on the remote control feature of the device. If nodeRemoteControllable is equal to FALSE, all the supported power sequences shall set the sequenceRemoteControllable property to FALSE. If nodeRemoteControllable is equal to TRUE, at least one power sequence shall be remotely controllable by setting the sequenceRemoteControllable property to TRUE."@en ;
rdfs:label "node remote controllable"@en ;
rdfs:range xsd:boolean ;
.
s4ener:optionalSlot
a owl:DatatypeProperty ;
rdfs:comment "Indicates whether a slot is optional (if set to TRUE). Otherwise, if a slot is mandatory, SHALL be omitted or set to FALSE. Note: This element applies to every repetition of the slot number."@en ;
rdfs:label "optional slot"@en ;
rdfs:range xsd:boolean ;
.
s4ener:presentFillLevel
a owl:ObjectProperty ;
rdfs:comment "A saref:Measurement with a percentage value indicating the fill level of the storage." ;
rdfs:domain s4ener:Storage ;
rdfs:label "present fill level"@en ;
rdfs:range saref:Measurement ;
.
s4ener:producedBy
a owl:ObjectProperty ;
rdfs:comment """A relation between an entity (datapoint, message, timeseries, instruction) that has been produced by a device or other agent.
In the context of SAREF4ENER this property is intended for s4ener:DataPoint, s4ener:TimeSeries, and the various types of flexibility instructions, FlexOffers and FlexRequests.""" ;
rdfs:label "produced by"@en ;
rdfs:range [
a owl:Class ;
owl:unionOf (
foaf:Agent
saref:Device
) ;
] ;
.
s4ener:progress
a owl:DatatypeProperty ;
rdfs:comment "Time that has passed since the selected sequence has started. A value must be provided, unless no sequence has been selected or the selected sequence hasn't started yet." ;
rdfs:domain s4ener:PowerSequenceContainer ;
rdfs:label "progress"@en ;
rdfs:range xsd:duration ;
.
s4ener:rangeBoundary
a owl:ObjectProperty ;
rdfs:comment "Boundaries of the power range of this PEBC.AllowedLimitRange. The CEM is allowed to choose values within this range for the power envelope for the limit as described in limit_type. The start of the range shall be smaller or equal than the end of the range." ;
rdfs:domain [
a owl:Class ;
owl:unionOf (
s4ener:AllowedLimitRange
s4ener:EnergyConstraint
) ;
] ;
rdfs:label "range boundary"@en ;
rdfs:range s4ener:NumberRange ;
.
s4ener:receives
a owl:ObjectProperty ;
rdfs:comment "A relationship between a device (e.g., an appliance or a smart meter) and a load control event"@en ;
rdfs:label "receives"@en ;
.
s4ener:receivesPowerLimit
a owl:ObjectProperty ;
rdfs:comment "The relationship between a power limit profile and the power limit it has received for its device to follow"@en ;
rdfs:domain s4ener:PowerLimitProfile ;
rdfs:label "receives power limit"@en ;
rdfs:range s4ener:PowerLimit ;
.
s4ener:relatesToCommodityQuantity
a owl:ObjectProperty ;
rdfs:comment """Relates the classes to the various commodity quantities introduced by the S2 standard.
In the SAREF4ENER extension this property is intended for the following:
- s4ener:PowerRange
- s4ener:AllowedLimitRange
- s4ener:EnergyConstraint
- s4ener:PowerEnvelope""" ;
rdfs:label "relates to commodity quantity"@en ;
rdfs:range s4ener:CommodityQuantity ;
.
s4ener:relatesToOffer
a owl:ObjectProperty ;
rdfs:comment "The relationship between the s4ener:FlexibilityInstruction and the flexibility offer."@en ;
rdfs:domain s4ener:FlexibilityInstruction ;
rdfs:label "relates to offer"@en ;
rdfs:range s4ener:FlexOffer ;
.
s4ener:relatesToPowerProfile
a owl:ObjectProperty ;
rdfs:comment "ID of the PPBC.PowerProfileDefinition of which the PPBC.PowerSequence is being selected and scheduled by the CEM." ;
rdfs:domain s4ener:PPBCInstruction ;
rdfs:label "Relates to power profile"@en ;
rdfs:range s4ener:PowerProfile ;
.
s4ener:relatesToPowerProfileSequence
a owl:ObjectProperty ;
rdfs:comment "ID of the PPBC.PowerSequence that is being selected and scheduled by the CEM." ;
rdfs:domain s4ener:PPBCInstruction ;
rdfs:label "Relates to power profile sequence"@en ;
rdfs:range s4ener:PowerSequence ;
.
s4ener:relatesToPowerProfileSequenceContainer
a owl:ObjectProperty ;
rdfs:comment "ID of the PPBC.PowerSequnceContainer of which the PPBC.PowerSequence is being selected and scheduled by the CEM." ;
rdfs:domain s4ener:PPBCInstruction ;
rdfs:label "Relates to power profile sequence container"@en ;
rdfs:range s4ener:PowerSequenceContainer ;
.
s4ener:relatesToRequest
a owl:ObjectProperty ;
rdfs:comment "The relationship between the flexibility offer and flexibility request"@en ;
rdfs:domain s4ener:FlexOffer ;
rdfs:label "relates to request"@en ;
rdfs:range s4ener:FlexRequest ;
.
s4ener:repetitionsTotal
a owl:DatatypeProperty ;
rdfs:comment "Contains the total number of repetitions, if a power sequence repeats its sequence of slots. Absence of the element is equal to a presence with a value of 0 (zero). SHALL be absent if the value is 1. "@en ;
rdfs:label "repetition total"@en ;
rdfs:range xsd:unsignedInt ;
.
s4ener:requiresUpdate
a owl:DatatypeProperty ;
rdfs:comment """The relationship between the incentive table element and the boolean data indicating whether the incentive table requires an update.
In the SAREF4ENER extension this property is intended for the following classes:
- IncentiveTableBasedProfile
- IncentiveTableTier
- IncentiveTableSlot"""@en ;
rdfs:label "requiresUpdate"@en ;
rdfs:range xsd:boolean ;
.
s4ener:sequenceID
a owl:DatatypeProperty ;
rdfs:comment "Provides a unique power sequence identifier for a certain device"@en ;
rdfs:label "sequence ID"@en ;
rdfs:range xsd:unsignedInt ;
owl:deprecated true ;
.
s4ener:sequenceRemoteControllable
a owl:DatatypeProperty ;
rdfs:comment "Denotes whether a power sequence is modifiable (if value is TRUE) or not (if value is FALSE). Modifiability is required to configure power sequences and slots. It is also required to change a power sequence state."@en ;
rdfs:label "sequence remote controllable"@en ;
rdfs:range xsd:boolean ;
.
s4ener:serialNumber
a owl:DatatypeProperty ;
rdfs:comment "Indicates the serial number of a device as defined by the manufacturer. Usually the same as printed on the case."@en ;
rdfs:label "serial number"@en ;
rdfs:range xsd:string ;
.
s4ener:slotActivated
a owl:DatatypeProperty ;
rdfs:comment "If a slot is optional, represents the current status of the slot (true = the slot will be executed, false = the slot will not be executed). If the slot is not optional, this element SHALL be absent."@en ;
rdfs:label "slot activated"@en ;
rdfs:range xsd:boolean ;
.
s4ener:slotNumber
a owl:DatatypeProperty ;
rdfs:comment "Provides a unique slot identifier for a certain power sequence"@en ;
rdfs:label "slot number"@en ;
rdfs:range xsd:unsignedInt ;
.
s4ener:softwareRevision
a owl:DatatypeProperty ;
rdfs:comment "Indicates the software revision of a device as defined by the manufacturer."@en ;
rdfs:label "software revision"@en ;
rdfs:range xsd:string ;
.
s4ener:startOfRange
a owl:ObjectProperty ;
rdfs:comment "This property indicates the start of a number range." ;
rdfs:domain s4ener:NumberRange ;
rdfs:label "start of range"@en ;
rdfs:range saref:Measurement ;
.
s4ener:startsTimer
a owl:ObjectProperty ;
rdfs:comment "List of IDs of Timers that will be (re)started when this transition is initiated" ;
rdfs:domain s4ener:Transition ;
rdfs:label "Starts Timer"@en ;
rdfs:range s4ener:Timer ;
.
s4ener:supportsReselection
a owl:DatatypeProperty ;
rdfs:comment "If set toTRUE, the power profile of a device does not restrict the number of power sequence re-selections by the CEM, i.e. within a given alternative the CEM may first choose one power sequence, alter the selection by configuring another sequence later on, then alter the selection again, etc. (provided the process rules and data still permit configuration). If supportsReselection is set to FALSE, the device permits the CEM to select a power sequence of an alternative only once."@en ;
rdfs:label "supports reselection"@en ;
rdfs:range xsd:boolean ;
.
s4ener:supportsSingleSlotSchedulingOnly
a owl:DatatypeProperty ;
rdfs:comment "If set toTRUE, the power profile of a device does NOT permit the modification of more than one slot per configuration command."@en ;
rdfs:label "supports single slot scheduling only"@en ;
rdfs:range xsd:boolean ;
.
s4ener:taskIdentifier
a owl:DatatypeProperty ;
rdfs:comment "Represents the task identifier of the power sequence."@en ;
rdfs:label "task identifier"@en ;
rdfs:range xsd:unsignedInt ;
.
s4ener:toOperationMode
a owl:ObjectProperty ;
rdfs:comment "ID of the OperationMode (exact type differs per ControlType) that will be switched to." ;
rdfs:domain s4ener:Transition ;
rdfs:label "to state operation mode"@en ;
rdfs:range s4ener:OperationMode ;
.
s4ener:totalSequencesCountMax
a owl:DatatypeProperty ;
rdfs:comment "Represents the total number of power sequences supported by the power profile of a device"@en ;
rdfs:label "total sequences count max"@en ;
rdfs:range xsd:unsignedInt ;
.
s4ener:triggersEventActionConsume
a owl:ObjectProperty ;
rdfs:comment "A relationship between a load control event and the consume action triggered by this event"@en ;
rdfs:label "triggers event action consume"@en ;
.
s4ener:triggersEventActionProduce
a owl:ObjectProperty ;
rdfs:comment "A relationship between a load control event and the produce action triggered by this event"@en ;
rdfs:label "triggers event action produce"@en ;
.
s4ener:valueTendency
a owl:ObjectProperty ;
rdfs:comment "Indicates whether the tendency of a measurement is rising, stable or falling."@en ;
rdfs:label "value tendency"@en ;
rdfs:range s4ener:ValueTendency ;
.
s4ener:vendorCode
a owl:DatatypeProperty ;
rdfs:comment "Provides a code for the vendor of the device as defined by the manufacturer."@en ;
rdfs:label "vendor code"@en ;
rdfs:range xsd:string ;
.
s4ener:vendorName
a owl:DatatypeProperty ;
rdfs:comment "Provides the name of the vendor of the device as defined by the manufacturer."@en ;
rdfs:label "vendor name"@en ;
rdfs:range xsd:string ;
.
dcterms:contributor
a owl:AnnotationProperty ;
.
dcterms:created
a owl:AnnotationProperty ;
.
dcterms:creator
a owl:AnnotationProperty ;
.
dcterms:description
a owl:AnnotationProperty ;
.
dcterms:license
a owl:AnnotationProperty ;
.
dcterms:modified
a owl:AnnotationProperty ;
.
dcterms:publisher
a owl:AnnotationProperty ;
.
dcterms:title
a owl:AnnotationProperty ;
.
vann:preferredNamespacePrefix
a owl:AnnotationProperty ;
.
vann:preferredNamespaceUri
a owl:AnnotationProperty ;
.
time:DurationDescription
a owl:Class ;
.
time:Interval
a owl:Class ;
.
time:TemporalEntity
a owl:Class ;
.
foaf:Agent
a owl:Class ;
.