An attribute with a dynamic value for a custom schedule format must have JSON in the following format:
```javascript
{
"timezone": "Europe/Kiev",
"items": [
{
"dayOfWeek": 1,
"enabled": true,
"endsOn": 0,
"startsOn": 0
},
{
"dayOfWeek": 2,
"enabled": true,
"endsOn": 0,
"startsOn": 0
},
{
"dayOfWeek": 3,
"enabled": true,
"endsOn": 0,
"startsOn": 0
},
{
"dayOfWeek": 4,
"enabled": true,
"endsOn": 0,
"startsOn": 0
},
{
"dayOfWeek": 5,
"enabled": true,
"endsOn": 0,
"startsOn": 0
},
{
"dayOfWeek": 6,
"enabled": true,
"endsOn": 0,
"startsOn": 0
},
{
"dayOfWeek": 7,
"enabled": true,
"endsOn": 0,
"startsOn": 0
}
]
}
```
<ul>
<li>
<b>timezone:</b> this value is used to designate the timezone you are using.
</li>
<li>
<b>items:</b> the array of values representing the days on which the schedule will be active.
</li>
</ul>
One array item contains such fields:
<ul>
<li>
<b>dayOfWeek:</b> this value is used to designate the specified day in numerical representation (Monday - 1, Tuesday 2, etc.) on which the schedule will be active.
</li>
<li>
<b>enabled:</b> this <code>boolean</code> value, used to designate that the specified day in the schedule will be enabled.
</li>
<li>
<b>startsOn:</b> this value is used to designate the timestamp in milliseconds, from which the schedule will be active for the designated day.
</li>
<li>
<b>endsOn:</b> this value is used to designate the timestamp in milliseconds until which the schedule will be active for the specified day.
</li>
</ul>
When <b>startsOn</b> and <b>endsOn</b> equals 0 it's means that the schedule will be active the whole day.
An attribute with a dynamic value for a specific schedule format must have JSON in the following format:
```javascript
{
"daysOfWeek": [
2,
4
],
"endsOn": 0,
"startsOn": 0,
"timezone": "Europe/Kiev"
}
```
<ul>
<li>
<b>timezone:</b> this value is used to designate the timezone you are using.
</li>
<li>
<b>daysOfWeek:</b> this value is used to designate the days in numerical representation (Monday - 1, Tuesday 2, etc.) on which the schedule will be active.
</li>
<li>
<b>startsOn:</b> this value is used to designate the timestamp in milliseconds, from which the schedule will be active for the designated days.
</li>
<li>
<b>endsOn:</b> this value is used to designate the timestamp in milliseconds until which the schedule will be active for the specified days.
</li>
</ul>
When <b>startsOn</b> and <b>endsOn</b> equals 0 it's means that the schedule will be active the whole day.
"idCopiedMessage":"Dashboard Id has been copied to clipboard",
"public-link":"Public link",
"copy-public-link":"Copy public link",
"public-link-copied-message":"Dashboard public link has been copied to clipboard",
@ -2275,6 +2277,7 @@
"current-device":"Current device",
"default-value":"Default value",
"dynamic-source-type":"Dynamic source type",
"dynamic-value":"Dynamic value",
"no-dynamic-value":"No dynamic value",
"source-attribute":"Source attribute",
"switch-to-dynamic-value":"Switch to dynamic value",
@ -2527,7 +2530,7 @@
"password-reset":"Password reset",
"expired-password-reset-message":"Your credentials has been expired! Please create new password.",
"new-password":"New password",
"new-password-again":"New password again",
"new-password-again":"Confirm new password",
"password-link-sent-message":"Reset link has been sent",
"email":"Email",
"login-with":"Login with {{name}}",
@ -2630,12 +2633,13 @@
"change-password":"Change Password",
"current-password":"Current password",
"copy-jwt-token":"Copy JWT token",
"valid-till":"Valid till {{expirationData}}",
"jwt-token":"JWT token",
"token-valid-till":"Token is valid till",
"tokenCopiedSuccessMessage":"JWT token has been copied to clipboard",
"tokenCopiedWarnMessage":"JWT token is expired! Please, refresh the page."
},
"security":{
"security":"Security",
"security":"Password and authentication",
"2fa":{
"2fa":"Two-factor authentication",
"2fa-description":"Two-factor authentication protects your account from unauthorized access. All you have to do is enter a security code when you log in.",
@ -2689,6 +2693,20 @@
"backup-code-description":"These printable one-time passcodes allow you to sign in when away from your phone, like when you’re traveling.",
"backup-code-hint":"{{ info }} single-use codes are active at this time"
}
},
"password-requirement":{
"at-least":"At least:",
"character":"{ count, plural, 1 {1 character} other {# characters} }",
"digit":"{ count, plural, 1 {1 digit} other {# digits} }",