-
Notifications
You must be signed in to change notification settings - Fork 58
/
Copy pathClockCtrlr.json
167 lines (167 loc) · 4.81 KB
/
ClockCtrlr.json
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
{
"$schema": "http://json-schema.org/draft-07/schema#",
"description": "Schema for ClockCtrlr",
"name": "ClockCtrlr",
"type": "object",
"properties": {
"ClockCtrlrEnabled": {
"variable_name": "Enabled",
"characteristics": {
"supportsMonitoring": true,
"dataType": "boolean"
},
"attributes": [
{
"type": "Actual",
"mutability": "ReadWrite",
"value": true
}
],
"type": "boolean"
},
"ClockCtrlrDateTime": {
"variable_name": "DateTime",
"characteristics": {
"supportsMonitoring": true,
"dataType": "dateTime"
},
"attributes": [
{
"type": "Actual",
"mutability": "ReadOnly",
"value": ""
}
],
"description": "Contains the current date and time,",
"type": "string"
},
"NextTimeOffsetTransitionDateTime": {
"variable_name": "NextTimeOffsetTransitionDateTime",
"characteristics": {
"supportsMonitoring": true,
"dataType": "dateTime"
},
"attributes": [
{
"type": "Actual",
"mutability": "ReadWrite"
}
],
"description": "Date time of the next time offset transition.",
"type": "string"
},
"NtpServerUri": {
"variable_name": "NtpServerUri",
"characteristics": {
"supportsMonitoring": true,
"dataType": "string"
},
"attributes": [
{
"type": "Actual",
"mutability": "ReadWrite"
}
],
"description": "This contains the address of the NTP server.",
"type": "string"
},
"NtpSource": {
"variable_name": "NtpSource",
"characteristics": {
"valuesList": "DHCP,manual",
"supportsMonitoring": true,
"dataType": "OptionList"
},
"attributes": [
{
"type": "Actual",
"mutability": "ReadWrite"
}
],
"description": "When an NTP client is implemented, this variable can be used to configure the client",
"type": "string"
},
"TimeAdjustmentReportingThreshold": {
"variable_name": "TimeAdjustmentReportingThreshold",
"characteristics": {
"supportsMonitoring": true,
"dataType": "integer"
},
"attributes": [
{
"type": "Actual",
"mutability": "ReadWrite"
}
],
"description": "If set, then time adjustments with an absolute value in seconds larger than this need to be reported as a security event SettingSystemTime",
"type": "integer"
},
"TimeOffset": {
"variable_name": "TimeOffset",
"characteristics": {
"supportsMonitoring": true,
"dataType": "string"
},
"attributes": [
{
"type": "Actual",
"mutability": "ReadWrite"
}
],
"description": "A Time Offset with respect to Coordinated Universal Time (aka UTC or Greenwich Mean Time) in the form of an [RFC3339] time (zone) offset suffix, including the mandatory \u201c+\u201d or \u201c-\u201c prefix.",
"type": "string"
},
"TimeOffsetNextTransition": {
"variable_name": "TimeOffset",
"characteristics": {
"supportsMonitoring": true,
"dataType": "string"
},
"attributes": [
{
"type": "Actual",
"mutability": "ReadWrite"
}
],
"instance": "NextTransition",
"description": "Next local time offset in the format: \"+01:00\", \"-02:00\" etc. New offset that will be set on the next time offset transition as configured via 'NextTimeOffsetTransitionDateTime'. This can be used to manually configure the offset for the start or end of the daylight saving time period.",
"type": "string"
},
"TimeSource": {
"variable_name": "TimeSource",
"characteristics": {
"valuesList": "Heartbeat,NTP,GPS,RealTimeClock,MobileNetwork,RadioTimeTransmitter",
"supportsMonitoring": true,
"dataType": "SequenceList"
},
"attributes": [
{
"type": "Actual",
"mutability": "ReadWrite",
"value": "Heartbeat"
}
],
"description": "Via this variable, the Charging Station provides the CSMS with the option to configure multiple clock sources",
"type": "string"
},
"TimeZone": {
"variable_name": "TimeZone",
"characteristics": {
"supportsMonitoring": true,
"dataType": "string"
},
"attributes": [
{
"type": "Actual",
"mutability": "ReadWrite"
}
],
"description": "Configured current local time zone in the format: \"Europe/Oslo\", \"Asia/Singapore\" etc. For display purposes.",
"type": "string"
}
},
"required": [
"ClockCtrlrDateTime",
"TimeSource"
]
}