-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathtimeframe_conf.json
More file actions
122 lines (122 loc) · 5.04 KB
/
Copy pathtimeframe_conf.json
File metadata and controls
122 lines (122 loc) · 5.04 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
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
[
{
"@context": "https://example.com/timeHorizon_context.jsonld",
"@id": "https://example.com/timeHorizons/ID",
"@type": "https://example.com/timeHorizon",
"description": "Process running for current day, covering from next hour until end of the day",
"reference_time_start": "currentHourStart",
"reference_time_end": "currentDayStart",
"period_start": "PT1H",
"period_end": "P1D"
},
{
"@context": "https://example.com/timeHorizon_context.jsonld",
"@id": "https://example.com/timeHorizons/D-0",
"@type": "https://example.com/timeHorizon",
"description": "Process running for current day, covering the whole day",
"reference_time_start": "currentDayStart",
"reference_time_end": "currentDayStart",
"period_start": "P0D",
"period_end": "P1D"
},
{
"@context": "https://example.com/timeHorizon_context.jsonld",
"@id": "https://example.com/timeHorizons/H-8",
"@type": "https://example.com/timeHorizon",
"description": "Process running 8 hours ahead in intraday",
"reference_time_start": "currentHourStart",
"reference_time_end": "currentHourStart",
"period_start": "PT1H",
"period_end": "PT9H"
},
{
"@context": "https://example.com/timeHorizon_context.jsonld",
"@id": "https://example.com/timeHorizons/H-16",
"@type": "https://example.com/timeHorizon",
"description": "Process running 16 hours ahead in intraday",
"reference_time_start": "currentHourStart",
"reference_time_end": "currentHourStart",
"period_start": "PT1H",
"period_end": "PT17H"
},
{
"@context": "https://example.com/timeHorizon_context.jsonld",
"@id": "https://example.com/timeHorizons/H-24",
"@type": "https://example.com/timeHorizon",
"description": "Process running 24 hours ahead in intraday",
"reference_time_start": "currentHourStart",
"reference_time_end": "currentHourStart",
"period_start": "PT1H",
"period_end": "PT25H"
},
{
"@context": "https://example.com/timeHorizon_context.jsonld",
"@id": "https://example.com/timeHorizons/D-1",
"@type": "https://example.com/timeHorizon",
"description": "Process that runs day before the targeted day",
"reference_time_start": "currentDayStart",
"reference_time_end": "currentDayStart",
"period_start": "P1D",
"period_end": "P2D"
},
{
"@context": "https://example.com/timeHorizon_context.jsonld",
"@id": "https://example.com/timeHorizons/D-2",
"@type": "https://example.com/timeHorizon",
"description": "Process that runs two days before the targeted day",
"reference_time_start": "currentDayStart",
"reference_time_end": "currentDayStart",
"period_start": "P2D",
"period_end": "P3D"
},
{
"@context": "https://example.com/timeHorizon_context.jsonld",
"@id": "https://example.com/timeHorizons/D-7",
"@type": "https://example.com/timeHorizon",
"description": "Process that runs day before the targeted day and covers time window of 7 days",
"reference_time_start": "currentDayStart",
"reference_time_end": "currentDayStart",
"period_start": "P1D",
"period_end": "P8D"
},
{
"@context": "https://example.com/timeHorizon_context.jsonld",
"@id": "https://example.com/timeHorizons/W-0",
"@type": "https://example.com/timeHorizon",
"description": "Process that runs for current week",
"reference_time_start": "currentWeekStart",
"reference_time_end": "currentWeekStart",
"period_start": "P0W",
"period_end": "P1W"
},
{
"@context": "https://example.com/timeHorizon_context.jsonld",
"@id": "https://example.com/timeHorizons/W-1",
"@type": "https://example.com/timeHorizon",
"description": "Process that runs in current week for next week",
"reference_time_start": "currentDayStart",
"reference_time_end": "currentDayStart",
"period_start": "P3D",
"period_end": "P12D"
},
{
"@context": "https://example.com/timeHorizon_context.jsonld",
"@id": "https://example.com/timeHorizons/M-1",
"@type": "https://example.com/timeHorizon",
"description": "Process that runs in current month for next month",
"reference_time_start": "currentMonthStart",
"reference_time_end": "currentMonthStart",
"period_start": "P1M1D",
"period_end": "P2M1D"
},
{
"@context": "https://example.com/timeHorizon_context.jsonld",
"@id": "https://example.com/timeHorizons/Y-1",
"@type": "https://example.com/timeHorizon",
"description": "Process that runs in current year for next year",
"reference_time_start": "currentYearStart",
"reference_time_end": "currentYearStart",
"period_start": "P1Y1D",
"period_end": "P2Y1D"
}
]