Get all forms
In this example, we demonstrate how to retrieve the list of all forms configured in the project using the OneEntry API.
✅ Purpose of the scenario:
- Get the complete list of forms available in the OneEntry project.
- Inspect form identifiers, types, and field schemas.
- Use form identifiers with getFormByMarker() to retrieve full field details.
✅ What you need:
- A valid PROJECT_URL and APP_TOKEN for authentication with the OneEntry API.
- At least one form configured in the OneEntry admin panel.
📌 Important:
- Returns a paginated object:
{ items, total }. Use identifier with Forms.getFormByMarker() to get a specific form with full field details. - These examples do not include error handling.
- You can manage errors using a try-catch block or by employing a construction like await Promise.catch((error) => error).
📚 See in documentation:
📦 SDK reference:
Try it live
Run this method interactively in the JS SDK sandbox — connect your Project URL and App Token on first visit, then open:
- Get all forms — In this example, we demonstrate how to retrieve the list of all forms configured in the project using the OneEntry API.
Scenario
1. Import defineOneEntry from SDK and define PROJECT_URL and APP_TOKEN
Example:
import { defineOneEntry } from 'oneentry';
const PROJECT_URL = 'your-project-url';
const APP_TOKEN = 'your-app-token';
2. Creating an API client
Example:
const { Forms } = defineOneEntry(PROJECT_URL, {
token: APP_TOKEN,
});
3. Get all forms
Example:
const forms = await Forms.getAllForms('en_US');
if ('statusCode' in forms) {
throw new Error(forms.message);
}
Result:
{
"items": [
{
"id": 1,
"attributeSetId": 4,
"type": "data",
"localizeInfos": {
"title": "Schedule",
"titleForSite": "",
"successMessage": "Message about successful data processing",
"unsuccessMessage": "Message about unsuccessful data processing",
"urlAddress": "",
"database": "0",
"script": "0"
},
"version": 9,
"position": 1,
"identifier": "schedule",
"processingType": "script",
"templateId": null,
"attributes": [
{
"type": "timeInterval",
"marker": "schedule",
"position": 1,
"settings": {},
"isVisible": true,
"listTitles": [],
"validators": {},
"initialValue": null,
"localizeInfos": {
"title": "Schedule",
"intervals": [
{
"id": "d048af40-bd75-4f7f-ae8d-982d2f2746aa",
"range": [
"2025-04-20T21:00:00.000Z",
"2025-04-20T21:00:00.000Z"
],
"external": [],
"intervals": [
{
"id": "f27a6b86-31a8-4cf1-ad3a-86b184b4269f",
"end": {
"hours": 19,
"minutes": 0
},
"start": {
"hours": 9,
"minutes": 0
},
"period": 60
}
],
"inEveryWeek": true,
"inEveryMonth": true,
"timeIntervals": [
[
"2025-04-06T09:00:00.000Z",
"2025-04-06T10:00:00.000Z"
],
[
"2025-04-06T10:00:00.000Z",
"2025-04-06T11:00:00.000Z"
],
[
"2025-04-06T11:00:00.000Z",
"2025-04-06T12:00:00.000Z"
],
[
"2025-04-06T12:00:00.000Z",
"2025-04-06T13:00:00.000Z"
],
[
"2025-04-06T13:00:00.000Z",
"2025-04-06T14:00:00.000Z"
],
[
"2025-04-06T14:00:00.000Z",
"2025-04-06T15:00:00.000Z"
],
[
"2025-04-06T15:00:00.000Z",
"2025-04-06T16:00:00.000Z"
],
[
"2025-04-06T16:00:00.000Z",
"2025-04-06T17:00:00.000Z"
],
[
"2025-04-06T17:00:00.000Z",
"2025-04-06T18:00:00.000Z"
],
[
"2025-04-06T18:00:00.000Z",
"2025-04-06T19:00:00.000Z"
],
[
"2025-04-13T09:00:00.000Z",
"2025-04-13T10:00:00.000Z"
],
[
"2025-04-13T10:00:00.000Z",
"2025-04-13T11:00:00.000Z"
],
[
"2025-04-13T11:00:00.000Z",
"2025-04-13T12:00:00.000Z"
],
[
"2025-04-13T12:00:00.000Z",
"2025-04-13T13:00:00.000Z"
],
[
"2025-04-13T13:00:00.000Z",
"2025-04-13T14:00:00.000Z"
],
[
"2025-04-13T14:00:00.000Z",
"2025-04-13T15:00:00.000Z"
],
[
"2025-04-13T15:00:00.000Z",
"2025-04-13T16:00:00.000Z"
],
[
"2025-04-13T16:00:00.000Z",
"2025-04-13T17:00:00.000Z"
],
[
"2025-04-13T17:00:00.000Z",
"2025-04-13T18:00:00.000Z"
],
[
"2025-04-13T18:00:00.000Z",
"2025-04-13T19:00:00.000Z"
],
[
"2025-04-20T09:00:00.000Z",
"2025-04-20T10:00:00.000Z"
],
[
"2025-04-20T10:00:00.000Z",
"2025-04-20T11:00:00.000Z"
],
[
"2025-04-20T11:00:00.000Z",
"2025-04-20T12:00:00.000Z"
],
[
"2025-04-20T12:00:00.000Z",
"2025-04-20T13:00:00.000Z"
],
[
"2025-04-20T13:00:00.000Z",
"2025-04-20T14:00:00.000Z"
],
[
"2025-04-20T14:00:00.000Z",
"2025-04-20T15:00:00.000Z"
],
[
"2025-04-20T15:00:00.000Z",
"2025-04-20T16:00:00.000Z"
],
[
"2025-04-20T16:00:00.000Z",
"2025-04-20T17:00:00.000Z"
],
[
"2025-04-20T17:00:00.000Z",
"2025-04-20T18:00:00.000Z"
],
[
"2025-04-20T18:00:00.000Z",
"2025-04-20T19:00:00.000Z"
],
[
"2025-04-27T09:00:00.000Z",
"2025-04-27T10:00:00.000Z"
],
[
"2025-04-27T10:00:00.000Z",
"2025-04-27T11:00:00.000Z"
],
[
"2025-04-27T11:00:00.000Z",
"2025-04-27T12:00:00.000Z"
],
[
"2025-04-27T12:00:00.000Z",
"2025-04-27T13:00:00.000Z"
],
[
"2025-04-27T13:00:00.000Z",
"2025-04-27T14:00:00.000Z"
],
[
"2025-04-27T14:00:00.000Z",
"2025-04-27T15:00:00.000Z"
],
[
"2025-04-27T15:00:00.000Z",
"2025-04-27T16:00:00.000Z"
],
[
"2025-04-27T16:00:00.000Z",
"2025-04-27T17:00:00.000Z"
],
[
"2025-04-27T17:00:00.000Z",
"2025-04-27T18:00:00.000Z"
],
[
"2025-04-27T18:00:00.000Z",
"2025-04-27T19:00:00.000Z"
],
[
"2025-05-04T09:00:00.000Z",
"2025-05-04T10:00:00.000Z"
],
[
"2025-05-04T10:00:00.000Z",
"2025-05-04T11:00:00.000Z"
],
[
"2025-05-04T11:00:00.000Z",
"2025-05-04T12:00:00.000Z"
],
[
"2025-05-04T12:00:00.000Z",
"2025-05-04T13:00:00.000Z"
],
[
"2025-05-04T13:00:00.000Z",
"2025-05-04T14:00:00.000Z"
],
[
"2025-05-04T14:00:00.000Z",
"2025-05-04T15:00:00.000Z"
],
[
"2025-05-04T15:00:00.000Z",
"2025-05-04T16:00:00.000Z"
],
[
"2025-05-04T16:00:00.000Z",
"2025-05-04T17:00:00.000Z"
],
[
"2025-05-04T17:00:00.000Z",
"2025-05-04T18:00:00.000Z"
],
[
"2025-05-04T18:00:00.000Z",
"2025-05-04T19:00:00.000Z"
],
[
"2025-05-11T09:00:00.000Z",
"2025-05-11T10:00:00.000Z"
],
[
"2025-05-11T10:00:00.000Z",
"2025-05-11T11:00:00.000Z"
],
[
"2025-05-11T11:00:00.000Z",
"2025-05-11T12:00:00.000Z"
],
[
"2025-05-11T12:00:00.000Z",
"2025-05-11T13:00:00.000Z"
],
[
"2025-05-11T13:00:00.000Z",
"2025-05-11T14:00:00.000Z"
],
[
"2025-05-11T14:00:00.000Z",
"2025-05-11T15:00:00.000Z"
],
[
"2025-05-11T15:00:00.000Z",
"2025-05-11T16:00:00.000Z"
],
[
"2025-05-11T16:00:00.000Z",
"2025-05-11T17:00:00.000Z"
],
[
"2025-05-11T17:00:00.000Z",
"2025-05-11T18:00:00.000Z"
],
[
"2025-05-11T18:00:00.000Z",
"2025-05-11T19:00:00.000Z"
],
[
"2025-05-18T09:00:00.000Z",
"2025-05-18T10:00:00.000Z"
],
[
"2025-05-18T10:00:00.000Z",
"2025-05-18T11:00:00.000Z"
],
[
"2025-05-18T11:00:00.000Z",
"2025-05-18T12:00:00.000Z"
],
[
"2025-05-18T12:00:00.000Z",
"2025-05-18T13:00:00.000Z"
],
[
"2025-05-18T13:00:00.000Z",
"2025-05-18T14:00:00.000Z"
],
[
"2025-05-18T14:00:00.000Z",
"2025-05-18T15:00:00.000Z"
],
[
"2025-05-18T15:00:00.000Z",
"2025-05-18T16:00:00.000Z"
],
[
"2025-05-18T16:00:00.000Z",
"2025-05-18T17:00:00.000Z"
],
[
"2025-05-18T17:00:00.000Z",
"2025-05-18T18:00:00.000Z"
],
[
"2025-05-18T18:00:00.000Z",
"2025-05-18T19:00:00.000Z"
],
[
"2025-05-25T09:00:00.000Z",
"2025-05-25T10:00:00.000Z"
],
[
"2025-05-25T10:00:00.000Z",
"2025-05-25T11:00:00.000Z"
],
[
"2025-05-25T11:00:00.000Z",
"2025-05-25T12:00:00.000Z"
],
[
"2025-05-25T12:00:00.000Z",
"2025-05-25T13:00:00.000Z"
],
[
"2025-05-25T13:00:00.000Z",
"2025-05-25T14:00:00.000Z"
],
[
"2025-05-25T14:00:00.000Z",
"2025-05-25T15:00:00.000Z"
],
[
"2025-05-25T15:00:00.000Z",
"2025-05-25T16:00:00.000Z"
],
[
"2025-05-25T16:00:00.000Z",
"2025-05-25T17:00:00.000Z"
],
[
"2025-05-25T17:00:00.000Z",
"2025-05-25T18:00:00.000Z"
],
[
"2025-05-25T18:00:00.000Z",
"2025-05-25T19:00:00.000Z"
],
[
"2025-06-01T09:00:00.000Z",
"2025-06-01T10:00:00.000Z"
],
[
"2025-06-01T10:00:00.000Z",
"2025-06-01T11:00:00.000Z"
],
[
"2025-06-01T11:00:00.000Z",
"2025-06-01T12:00:00.000Z"
],
[
"2025-06-01T12:00:00.000Z",
"2025-06-01T13:00:00.000Z"
],
[
"2025-06-01T13:00:00.000Z",
"2025-06-01T14:00:00.000Z"
],
[
"2025-06-01T14:00:00.000Z",
"2025-06-01T15:00:00.000Z"
],
[
"2025-06-01T15:00:00.000Z",
"2025-06-01T16:00:00.000Z"
],
[
"2025-06-01T16:00:00.000Z",
"2025-06-01T17:00:00.000Z"
],
[
"2025-06-01T17:00:00.000Z",
"2025-06-01T18:00:00.000Z"
],
[
"2025-06-01T18:00:00.000Z",
"2025-06-01T19:00:00.000Z"
],
[
"2025-06-08T09:00:00.000Z",
"2025-06-08T10:00:00.000Z"
],
[
"2025-06-08T10:00:00.000Z",
"2025-06-08T11:00:00.000Z"
],
[
"2025-06-08T11:00:00.000Z",
"2025-06-08T12:00:00.000Z"
],
[
"2025-06-08T12:00:00.000Z",
"2025-06-08T13:00:00.000Z"
],
[
"2025-06-08T13:00:00.000Z",
"2025-06-08T14:00:00.000Z"
],
[
"2025-06-08T14:00:00.000Z",
"2025-06-08T15:00:00.000Z"
],
[
"2025-06-08T15:00:00.000Z",
"2025-06-08T16:00:00.000Z"
],
[
"2025-06-08T16:00:00.000Z",
"2025-06-08T17:00:00.000Z"
],
[
"2025-06-08T17:00:00.000Z",
"2025-06-08T18:00:00.000Z"
],
[
"2025-06-08T18:00:00.000Z",
"2025-06-08T19:00:00.000Z"
],
[
"2025-06-15T09:00:00.000Z",
"2025-06-15T10:00:00.000Z"
],
[
"2025-06-15T10:00:00.000Z",
"2025-06-15T11:00:00.000Z"
],
[
"2025-06-15T11:00:00.000Z",
"2025-06-15T12:00:00.000Z"
],
[
"2025-06-15T12:00:00.000Z",
"2025-06-15T13:00:00.000Z"
],
[
"2025-06-15T13:00:00.000Z",
"2025-06-15T14:00:00.000Z"
],
[
"2025-06-15T14:00:00.000Z",
"2025-06-15T15:00:00.000Z"
],
[
"2025-06-15T15:00:00.000Z",
"2025-06-15T16:00:00.000Z"
],
[
"2025-06-15T16:00:00.000Z",
"2025-06-15T17:00:00.000Z"
],
[
"2025-06-15T17:00:00.000Z",
"2025-06-15T18:00:00.000Z"
],
[
"2025-06-15T18:00:00.000Z",
"2025-06-15T19:00:00.000Z"
],
[
"2025-06-22T09:00:00.000Z",
"2025-06-22T10:00:00.000Z"
],
[
"2025-06-22T10:00:00.000Z",
"2025-06-22T11:00:00.000Z"
],
[
"2025-06-22T11:00:00.000Z",
"2025-06-22T12:00:00.000Z"
],
[
"2025-06-22T12:00:00.000Z",
"2025-06-22T13:00:00.000Z"
],
[
"2025-06-22T13:00:00.000Z",
"2025-06-22T14:00:00.000Z"
],
[
"2025-06-22T14:00:00.000Z",
"2025-06-22T15:00:00.000Z"
],
[
"2025-06-22T15:00:00.000Z",
"2025-06-22T16:00:00.000Z"
],
[
"2025-06-22T16:00:00.000Z",
"2025-06-22T17:00:00.000Z"
],
[
"2025-06-22T17:00:00.000Z",
"2025-06-22T18:00:00.000Z"
],
[
"2025-06-22T18:00:00.000Z",
"2025-06-22T19:00:00.000Z"
],
[
"2025-06-29T09:00:00.000Z",
"2025-06-29T10:00:00.000Z"
],
[
"2025-06-29T10:00:00.000Z",
"2025-06-29T11:00:00.000Z"
],
[
"2025-06-29T11:00:00.000Z",
"2025-06-29T12:00:00.000Z"
],
[
"2025-06-29T12:00:00.000Z",
"2025-06-29T13:00:00.000Z"
],
[
"2025-06-29T13:00:00.000Z",
"2025-06-29T14:00:00.000Z"
],
[
"2025-06-29T14:00:00.000Z",
"2025-06-29T15:00:00.000Z"
],
[
"2025-06-29T15:00:00.000Z",
"2025-06-29T16:00:00.000Z"
],
[
"2025-06-29T16:00:00.000Z",
"2025-06-29T17:00:00.000Z"
],
[
"2025-06-29T17:00:00.000Z",
"2025-06-29T18:00:00.000Z"
],
[
"2025-06-29T18:00:00.000Z",
"2025-06-29T19:00:00.000Z"
],
[
"2025-07-06T09:00:00.000Z",
"2025-07-06T10:00:00.000Z"
],
[
"2025-07-06T10:00:00.000Z",
"2025-07-06T11:00:00.000Z"
],
[
"2025-07-06T11:00:00.000Z",
"2025-07-06T12:00:00.000Z"
],
[
"2025-07-06T12:00:00.000Z",
"2025-07-06T13:00:00.000Z"
],
[
"2025-07-06T13:00:00.000Z",
"2025-07-06T14:00:00.000Z"
],
[
"2025-07-06T14:00:00.000Z",
"2025-07-06T15:00:00.000Z"
],
[
"2025-07-06T15:00:00.000Z",
"2025-07-06T16:00:00.000Z"
],
[
"2025-07-06T16:00:00.000Z",
"2025-07-06T17:00:00.000Z"
],
[
"2025-07-06T17:00:00.000Z",
"2025-07-06T18:00:00.000Z"
],
[
"2025-07-06T18:00:00.000Z",
"2025-07-06T19:00:00.000Z"
],
[
"2025-07-13T09:00:00.000Z",
"2025-07-13T10:00:00.000Z"
],
[
"2025-07-13T10:00:00.000Z",
"2025-07-13T11:00:00.000Z"
],
[
"2025-07-13T11:00:00.000Z",
"2025-07-13T12:00:00.000Z"
],
[
"2025-07-13T12:00:00.000Z",
"2025-07-13T13:00:00.000Z"
],
[
"2025-07-13T13:00:00.000Z",
"2025-07-13T14:00:00.000Z"
],
[
"2025-07-13T14:00:00.000Z",
"2025-07-13T15:00:00.000Z"
],
[
"2025-07-13T15:00:00.000Z",
"2025-07-13T16:00:00.000Z"
],
[
"2025-07-13T16:00:00.000Z",
"2025-07-13T17:00:00.000Z"
],
[
"2025-07-13T17:00:00.000Z",
"2025-07-13T18:00:00.000Z"
],
[
"2025-07-13T18:00:00.000Z",
"2025-07-13T19:00:00.000Z"
],
[
"2025-07-20T09:00:00.000Z",
"2025-07-20T10:00:00.000Z"
],
[
"2025-07-20T10:00:00.000Z",
"2025-07-20T11:00:00.000Z"
],
[
"2025-07-20T11:00:00.000Z",
"2025-07-20T12:00:00.000Z"
],
[
"2025-07-20T12:00:00.000Z",
"2025-07-20T13:00:00.000Z"
],
[
"2025-07-20T13:00:00.000Z",
"2025-07-20T14:00:00.000Z"
],
[
"2025-07-20T14:00:00.000Z",
"2025-07-20T15:00:00.000Z"
],
[
"2025-07-20T15:00:00.000Z",
"2025-07-20T16:00:00.000Z"
],
[
"2025-07-20T16:00:00.000Z",
"2025-07-20T17:00:00.000Z"
],
[
"2025-07-20T17:00:00.000Z",
"2025-07-20T18:00:00.000Z"
],
[
"2025-07-20T18:00:00.000Z",
"2025-07-20T19:00:00.000Z"
],
[
"2025-07-27T09:00:00.000Z",
"2025-07-27T10:00:00.000Z"
],
[
"2025-07-27T10:00:00.000Z",
"2025-07-27T11:00:00.000Z"
],
[
"2025-07-27T11:00:00.000Z",
"2025-07-27T12:00:00.000Z"
],
[
"2025-07-27T12:00:00.000Z",
"2025-07-27T13:00:00.000Z"
],
[
"2025-07-27T13:00:00.000Z",
"2025-07-27T14:00:00.000Z"
],
[
"2025-07-27T14:00:00.000Z",
"2025-07-27T15:00:00.000Z"
],
[
"2025-07-27T15:00:00.000Z",
"2025-07-27T16:00:00.000Z"
],
[
"2025-07-27T16:00:00.000Z",
"2025-07-27T17:00:00.000Z"
],
[
"2025-07-27T17:00:00.000Z",
"2025-07-27T18:00:00.000Z"
],
[
"2025-07-27T18:00:00.000Z",
"2025-07-27T19:00:00.000Z"
],
[
"2025-08-03T09:00:00.000Z",
"2025-08-03T10:00:00.000Z"
],
[
"2025-08-03T10:00:00.000Z",
"2025-08-03T11:00:00.000Z"
],
[
"2025-08-03T11:00:00.000Z",
"2025-08-03T12:00:00.000Z"
],
[
"2025-08-03T12:00:00.000Z",
"2025-08-03T13:00:00.000Z"
],
[
"2025-08-03T13:00:00.000Z",
"2025-08-03T14:00:00.000Z"
],
[
"2025-08-03T14:00:00.000Z",
"2025-08-03T15:00:00.000Z"
],
[
"2025-08-03T15:00:00.000Z",
"2025-08-03T16:00:00.000Z"
],
[
"2025-08-03T16:00:00.000Z",
"2025-08-03T17:00:00.000Z"
],
[
"2025-08-03T17:00:00.000Z",
"2025-08-03T18:00:00.000Z"
],
[
"2025-08-03T18:00:00.000Z",
"2025-08-03T19:00:00.000Z"
],
[
"2025-08-10T09:00:00.000Z",
"2025-08-10T10:00:00.000Z"
],
[
"2025-08-10T10:00:00.000Z",
"2025-08-10T11:00:00.000Z"
],
[
"2025-08-10T11:00:00.000Z",
"2025-08-10T12:00:00.000Z"
],
[
"2025-08-10T12:00:00.000Z",
"2025-08-10T13:00:00.000Z"
],
[
"2025-08-10T13:00:00.000Z",
"2025-08-10T14:00:00.000Z"
],
[
"2025-08-10T14:00:00.000Z",
"2025-08-10T15:00:00.000Z"
],
[
"2025-08-10T15:00:00.000Z",
"2025-08-10T16:00:00.000Z"
],
[
"2025-08-10T16:00:00.000Z",
"2025-08-10T17:00:00.000Z"
],
[
"2025-08-10T17:00:00.000Z",
"2025-08-10T18:00:00.000Z"
],
[
"2025-08-10T18:00:00.000Z",
"2025-08-10T19:00:00.000Z"
],
[
"2025-08-17T09:00:00.000Z",
"2025-08-17T10:00:00.000Z"
],
[
"2025-08-17T10:00:00.000Z",
"2025-08-17T11:00:00.000Z"
],
[
"2025-08-17T11:00:00.000Z",
"2025-08-17T12:00:00.000Z"
],
[
"2025-08-17T12:00:00.000Z",
"2025-08-17T13:00:00.000Z"
],
[
"2025-08-17T13:00:00.000Z",
"2025-08-17T14:00:00.000Z"
],
[
"2025-08-17T14:00:00.000Z",
"2025-08-17T15:00:00.000Z"
],
[
"2025-08-17T15:00:00.000Z",
"2025-08-17T16:00:00.000Z"
],
[
"2025-08-17T16:00:00.000Z",
"2025-08-17T17:00:00.000Z"
],
[
"2025-08-17T17:00:00.000Z",
"2025-08-17T18:00:00.000Z"
],
[
"2025-08-17T18:00:00.000Z",
"2025-08-17T19:00:00.000Z"
],
[
"2025-08-24T09:00:00.000Z",
"2025-08-24T10:00:00.000Z"
],
[
"2025-08-24T10:00:00.000Z",
"2025-08-24T11:00:00.000Z"
],
[
"2025-08-24T11:00:00.000Z",
"2025-08-24T12:00:00.000Z"
],
[
"2025-08-24T12:00:00.000Z",
"2025-08-24T13:00:00.000Z"
],
[
"2025-08-24T13:00:00.000Z",
"2025-08-24T14:00:00.000Z"
],
[
"2025-08-24T14:00:00.000Z",
"2025-08-24T15:00:00.000Z"
],
[
"2025-08-24T15:00:00.000Z",
"2025-08-24T16:00:00.000Z"
],
[
"2025-08-24T16:00:00.000Z",
"2025-08-24T17:00:00.000Z"
],
[
"2025-08-24T17:00:00.000Z",
"2025-08-24T18:00:00.000Z"
],
[
"2025-08-24T18:00:00.000Z",
"2025-08-24T19:00:00.000Z"
],
[
"2025-08-31T09:00:00.000Z",
"2025-08-31T10:00:00.000Z"
],
[
"2025-08-31T10:00:00.000Z",
"2025-08-31T11:00:00.000Z"
],
[
"2025-08-31T11:00:00.000Z",
"2025-08-31T12:00:00.000Z"
],
[
"2025-08-31T12:00:00.000Z",
"2025-08-31T13:00:00.000Z"
],
[
"2025-08-31T13:00:00.000Z",
"2025-08-31T14:00:00.000Z"
],
[
"2025-08-31T14:00:00.000Z",
"2025-08-31T15:00:00.000Z"
],
[
"2025-08-31T15:00:00.000Z",
"2025-08-31T16:00:00.000Z"
],
[
"2025-08-31T16:00:00.000Z",
"2025-08-31T17:00:00.000Z"
],
[
"2025-08-31T17:00:00.000Z",
"2025-08-31T18:00:00.000Z"
],
[
"2025-08-31T18:00:00.000Z",
"2025-08-31T19:00:00.000Z"
],
[
"2025-09-07T09:00:00.000Z",
"2025-09-07T10:00:00.000Z"
],
[
"2025-09-07T10:00:00.000Z",
"2025-09-07T11:00:00.000Z"
],
[
"2025-09-07T11:00:00.000Z",
"2025-09-07T12:00:00.000Z"
],
[
"2025-09-07T12:00:00.000Z",
"2025-09-07T13:00:00.000Z"
],
[
"2025-09-07T13:00:00.000Z",
"2025-09-07T14:00:00.000Z"
],
[
"2025-09-07T14:00:00.000Z",
"2025-09-07T15:00:00.000Z"
],
[
"2025-09-07T15:00:00.000Z",
"2025-09-07T16:00:00.000Z"
],
[
"2025-09-07T16:00:00.000Z",
"2025-09-07T17:00:00.000Z"
],
[
"2025-09-07T17:00:00.000Z",
"2025-09-07T18:00:00.000Z"
],
[
"2025-09-07T18:00:00.000Z",
"2025-09-07T19:00:00.000Z"
],
[
"2025-09-14T09:00:00.000Z",
"2025-09-14T10:00:00.000Z"
],
[
"2025-09-14T10:00:00.000Z",
"2025-09-14T11:00:00.000Z"
],
[
"2025-09-14T11:00:00.000Z",
"2025-09-14T12:00:00.000Z"
],
[
"2025-09-14T12:00:00.000Z",
"2025-09-14T13:00:00.000Z"
],
[
"2025-09-14T13:00:00.000Z",
"2025-09-14T14:00:00.000Z"
],
[
"2025-09-14T14:00:00.000Z",
"2025-09-14T15:00:00.000Z"
],
[
"2025-09-14T15:00:00.000Z",
"2025-09-14T16:00:00.000Z"
],
[
"2025-09-14T16:00:00.000Z",
"2025-09-14T17:00:00.000Z"
],
[
"2025-09-14T17:00:00.000Z",
"2025-09-14T18:00:00.000Z"
],
[
"2025-09-14T18:00:00.000Z",
"2025-09-14T19:00:00.000Z"
],
[
"2025-09-21T09:00:00.000Z",
"2025-09-21T10:00:00.000Z"
],
[
"2025-09-21T10:00:00.000Z",
"2025-09-21T11:00:00.000Z"
],
[
"2025-09-21T11:00:00.000Z",
"2025-09-21T12:00:00.000Z"
],
[
"2025-09-21T12:00:00.000Z",
"2025-09-21T13:00:00.000Z"
],
[
"2025-09-21T13:00:00.000Z",
"2025-09-21T14:00:00.000Z"
],
[
"2025-09-21T14:00:00.000Z",
"2025-09-21T15:00:00.000Z"
],
[
"2025-09-21T15:00:00.000Z",
"2025-09-21T16:00:00.000Z"
],
[
"2025-09-21T16:00:00.000Z",
"2025-09-21T17:00:00.000Z"
],
[
"2025-09-21T17:00:00.000Z",
"2025-09-21T18:00:00.000Z"
],
[
"2025-09-21T18:00:00.000Z",
"2025-09-21T19:00:00.000Z"
],
[
"2025-09-28T09:00:00.000Z",
"2025-09-28T10:00:00.000Z"
],
[
"2025-09-28T10:00:00.000Z",
"2025-09-28T11:00:00.000Z"
],
[
"2025-09-28T11:00:00.000Z",
"2025-09-28T12:00:00.000Z"
],
[
"2025-09-28T12:00:00.000Z",
"2025-09-28T13:00:00.000Z"
],
[
"2025-09-28T13:00:00.000Z",
"2025-09-28T14:00:00.000Z"
],
[
"2025-09-28T14:00:00.000Z",
"2025-09-28T15:00:00.000Z"
],
[
"2025-09-28T15:00:00.000Z",
"2025-09-28T16:00:00.000Z"
],
[
"2025-09-28T16:00:00.000Z",
"2025-09-28T17:00:00.000Z"
],
[
"2025-09-28T17:00:00.000Z",
"2025-09-28T18:00:00.000Z"
],
[
"2025-09-28T18:00:00.000Z",
"2025-09-28T19:00:00.000Z"
],
[
"2025-10-05T09:00:00.000Z",
"2025-10-05T10:00:00.000Z"
],
[
"2025-10-05T10:00:00.000Z",
"2025-10-05T11:00:00.000Z"
],
[
"2025-10-05T11:00:00.000Z",
"2025-10-05T12:00:00.000Z"
],
[
"2025-10-05T12:00:00.000Z",
"2025-10-05T13:00:00.000Z"
],
[
"2025-10-05T13:00:00.000Z",
"2025-10-05T14:00:00.000Z"
],
[
"2025-10-05T14:00:00.000Z",
"2025-10-05T15:00:00.000Z"
],
[
"2025-10-05T15:00:00.000Z",
"2025-10-05T16:00:00.000Z"
],
[
"2025-10-05T16:00:00.000Z",
"2025-10-05T17:00:00.000Z"
],
[
"2025-10-05T17:00:00.000Z",
"2025-10-05T18:00:00.000Z"
],
[
"2025-10-05T18:00:00.000Z",
"2025-10-05T19:00:00.000Z"
],
[
"2025-10-12T09:00:00.000Z",
"2025-10-12T10:00:00.000Z"
],
[
"2025-10-12T10:00:00.000Z",
"2025-10-12T11:00:00.000Z"
],
[
"2025-10-12T11:00:00.000Z",
"2025-10-12T12:00:00.000Z"
],
[
"2025-10-12T12:00:00.000Z",
"2025-10-12T13:00:00.000Z"
],
[
"2025-10-12T13:00:00.000Z",
"2025-10-12T14:00:00.000Z"
],
[
"2025-10-12T14:00:00.000Z",
"2025-10-12T15:00:00.000Z"
],
[
"2025-10-12T15:00:00.000Z",
"2025-10-12T16:00:00.000Z"
],
[
"2025-10-12T16:00:00.000Z",
"2025-10-12T17:00:00.000Z"
],
[
"2025-10-12T17:00:00.000Z",
"2025-10-12T18:00:00.000Z"
],
[
"2025-10-12T18:00:00.000Z",
"2025-10-12T19:00:00.000Z"
],
[
"2025-10-19T09:00:00.000Z",
"2025-10-19T10:00:00.000Z"
],
[
"2025-10-19T10:00:00.000Z",
"2025-10-19T11:00:00.000Z"
],
[
"2025-10-19T11:00:00.000Z",
"2025-10-19T12:00:00.000Z"
],
[
"2025-10-19T12:00:00.000Z",
"2025-10-19T13:00:00.000Z"
],
[
"2025-10-19T13:00:00.000Z",
"2025-10-19T14:00:00.000Z"
],
[
"2025-10-19T14:00:00.000Z",
"2025-10-19T15:00:00.000Z"
],
[
"2025-10-19T15:00:00.000Z",
"2025-10-19T16:00:00.000Z"
],
[
"2025-10-19T16:00:00.000Z",
"2025-10-19T17:00:00.000Z"
],
[
"2025-10-19T17:00:00.000Z",
"2025-10-19T18:00:00.000Z"
],
[
"2025-10-19T18:00:00.000Z",
"2025-10-19T19:00:00.000Z"
],
[
"2025-10-26T09:00:00.000Z",
"2025-10-26T10:00:00.000Z"
],
[
"2025-10-26T10:00:00.000Z",
"2025-10-26T11:00:00.000Z"
],
[
"2025-10-26T11:00:00.000Z",
"2025-10-26T12:00:00.000Z"
],
[
"2025-10-26T12:00:00.000Z",
"2025-10-26T13:00:00.000Z"
],
[
"2025-10-26T13:00:00.000Z",
"2025-10-26T14:00:00.000Z"
],
[
"2025-10-26T14:00:00.000Z",
"2025-10-26T15:00:00.000Z"
],
[
"2025-10-26T15:00:00.000Z",
"2025-10-26T16:00:00.000Z"
],
[
"2025-10-26T16:00:00.000Z",
"2025-10-26T17:00:00.000Z"
],
[
"2025-10-26T17:00:00.000Z",
"2025-10-26T18:00:00.000Z"
],
[
"2025-10-26T18:00:00.000Z",
"2025-10-26T19:00:00.000Z"
],
[
"2025-11-02T09:00:00.000Z",
"2025-11-02T10:00:00.000Z"
],
[
"2025-11-02T10:00:00.000Z",
"2025-11-02T11:00:00.000Z"
],
[
"2025-11-02T11:00:00.000Z",
"2025-11-02T12:00:00.000Z"
],
[
"2025-11-02T12:00:00.000Z",
"2025-11-02T13:00:00.000Z"
],
[
"2025-11-02T13:00:00.000Z",
"2025-11-02T14:00:00.000Z"
],
[
"2025-11-02T14:00:00.000Z",
"2025-11-02T15:00:00.000Z"
],
[
"2025-11-02T15:00:00.000Z",
"2025-11-02T16:00:00.000Z"
],
[
"2025-11-02T16:00:00.000Z",
"2025-11-02T17:00:00.000Z"
],
[
"2025-11-02T17:00:00.000Z",
"2025-11-02T18:00:00.000Z"
],
[
"2025-11-02T18:00:00.000Z",
"2025-11-02T19:00:00.000Z"
],
[
"2025-11-09T09:00:00.000Z",
"2025-11-09T10:00:00.000Z"
],
[
"2025-11-09T10:00:00.000Z",
"2025-11-09T11:00:00.000Z"
],
[
"2025-11-09T11:00:00.000Z",
"2025-11-09T12:00:00.000Z"
],
[
"2025-11-09T12:00:00.000Z",
"2025-11-09T13:00:00.000Z"
],
[
"2025-11-09T13:00:00.000Z",
"2025-11-09T14:00:00.000Z"
],
[
"2025-11-09T14:00:00.000Z",
"2025-11-09T15:00:00.000Z"
],
[
"2025-11-09T15:00:00.000Z",
"2025-11-09T16:00:00.000Z"
],
[
"2025-11-09T16:00:00.000Z",
"2025-11-09T17:00:00.000Z"
],
[
"2025-11-09T17:00:00.000Z",
"2025-11-09T18:00:00.000Z"
],
[
"2025-11-09T18:00:00.000Z",
"2025-11-09T19:00:00.000Z"
],
[
"2025-11-16T09:00:00.000Z",
"2025-11-16T10:00:00.000Z"
],
[
"2025-11-16T10:00:00.000Z",
"2025-11-16T11:00:00.000Z"
],
[
"2025-11-16T11:00:00.000Z",
"2025-11-16T12:00:00.000Z"
],
[
"2025-11-16T12:00:00.000Z",
"2025-11-16T13:00:00.000Z"
],
[
"2025-11-16T13:00:00.000Z",
"2025-11-16T14:00:00.000Z"
],
[
"2025-11-16T14:00:00.000Z",
"2025-11-16T15:00:00.000Z"
],
[
"2025-11-16T15:00:00.000Z",
"2025-11-16T16:00:00.000Z"
],
[
"2025-11-16T16:00:00.000Z",
"2025-11-16T17:00:00.000Z"
],
[
"2025-11-16T17:00:00.000Z",
"2025-11-16T18:00:00.000Z"
],
[
"2025-11-16T18:00:00.000Z",
"2025-11-16T19:00:00.000Z"
],
[
"2025-11-23T09:00:00.000Z",
"2025-11-23T10:00:00.000Z"
],
[
"2025-11-23T10:00:00.000Z",
"2025-11-23T11:00:00.000Z"
],
[
"2025-11-23T11:00:00.000Z",
"2025-11-23T12:00:00.000Z"
],
[
"2025-11-23T12:00:00.000Z",
"2025-11-23T13:00:00.000Z"
],
[
"2025-11-23T13:00:00.000Z",
"2025-11-23T14:00:00.000Z"
],
[
"2025-11-23T14:00:00.000Z",
"2025-11-23T15:00:00.000Z"
],
[
"2025-11-23T15:00:00.000Z",
"2025-11-23T16:00:00.000Z"
],
[
"2025-11-23T16:00:00.000Z",
"2025-11-23T17:00:00.000Z"
],
[
"2025-11-23T17:00:00.000Z",
"2025-11-23T18:00:00.000Z"
],
[
"2025-11-23T18:00:00.000Z",
"2025-11-23T19:00:00.000Z"
],
[
"2025-11-30T09:00:00.000Z",
"2025-11-30T10:00:00.000Z"
],
[
"2025-11-30T10:00:00.000Z",
"2025-11-30T11:00:00.000Z"
],
[
"2025-11-30T11:00:00.000Z",
"2025-11-30T12:00:00.000Z"
],
[
"2025-11-30T12:00:00.000Z",
"2025-11-30T13:00:00.000Z"
],
[
"2025-11-30T13:00:00.000Z",
"2025-11-30T14:00:00.000Z"
],
[
"2025-11-30T14:00:00.000Z",
"2025-11-30T15:00:00.000Z"
],
[
"2025-11-30T15:00:00.000Z",
"2025-11-30T16:00:00.000Z"
],
[
"2025-11-30T16:00:00.000Z",
"2025-11-30T17:00:00.000Z"
],
[
"2025-11-30T17:00:00.000Z",
"2025-11-30T18:00:00.000Z"
],
[
"2025-11-30T18:00:00.000Z",
"2025-11-30T19:00:00.000Z"
],
[
"2025-12-07T09:00:00.000Z",
"2025-12-07T10:00:00.000Z"
],
[
"2025-12-07T10:00:00.000Z",
"2025-12-07T11:00:00.000Z"
],
[
"2025-12-07T11:00:00.000Z",
"2025-12-07T12:00:00.000Z"
],
[
"2025-12-07T12:00:00.000Z",
"2025-12-07T13:00:00.000Z"
],
[
"2025-12-07T13:00:00.000Z",
"2025-12-07T14:00:00.000Z"
],
[
"2025-12-07T14:00:00.000Z",
"2025-12-07T15:00:00.000Z"
],
[
"2025-12-07T15:00:00.000Z",
"2025-12-07T16:00:00.000Z"
],
[
"2025-12-07T16:00:00.000Z",
"2025-12-07T17:00:00.000Z"
],
[
"2025-12-07T17:00:00.000Z",
"2025-12-07T18:00:00.000Z"
],
[
"2025-12-07T18:00:00.000Z",
"2025-12-07T19:00:00.000Z"
],
[
"2025-12-14T09:00:00.000Z",
"2025-12-14T10:00:00.000Z"
],
[
"2025-12-14T10:00:00.000Z",
"2025-12-14T11:00:00.000Z"
],
[
"2025-12-14T11:00:00.000Z",
"2025-12-14T12:00:00.000Z"
],
[
"2025-12-14T12:00:00.000Z",
"2025-12-14T13:00:00.000Z"
],
[
"2025-12-14T13:00:00.000Z",
"2025-12-14T14:00:00.000Z"
],
[
"2025-12-14T14:00:00.000Z",
"2025-12-14T15:00:00.000Z"
],
[
"2025-12-14T15:00:00.000Z",
"2025-12-14T16:00:00.000Z"
],
[
"2025-12-14T16:00:00.000Z",
"2025-12-14T17:00:00.000Z"
],
[
"2025-12-14T17:00:00.000Z",
"2025-12-14T18:00:00.000Z"
],
[
"2025-12-14T18:00:00.000Z",
"2025-12-14T19:00:00.000Z"
],
[
"2025-12-21T09:00:00.000Z",
"2025-12-21T10:00:00.000Z"
],
[
"2025-12-21T10:00:00.000Z",
"2025-12-21T11:00:00.000Z"
],
[
"2025-12-21T11:00:00.000Z",
"2025-12-21T12:00:00.000Z"
],
[
"2025-12-21T12:00:00.000Z",
"2025-12-21T13:00:00.000Z"
],
[
"2025-12-21T13:00:00.000Z",
"2025-12-21T14:00:00.000Z"
],
[
"2025-12-21T14:00:00.000Z",
"2025-12-21T15:00:00.000Z"
],
[
"2025-12-21T15:00:00.000Z",
"2025-12-21T16:00:00.000Z"
],
[
"2025-12-21T16:00:00.000Z",
"2025-12-21T17:00:00.000Z"
],
[
"2025-12-21T17:00:00.000Z",
"2025-12-21T18:00:00.000Z"
],
[
"2025-12-21T18:00:00.000Z",
"2025-12-21T19:00:00.000Z"
],
[
"2025-12-28T09:00:00.000Z",
"2025-12-28T10:00:00.000Z"
],
[
"2025-12-28T10:00:00.000Z",
"2025-12-28T11:00:00.000Z"
],
[
"2025-12-28T11:00:00.000Z",
"2025-12-28T12:00:00.000Z"
],
[
"2025-12-28T12:00:00.000Z",
"2025-12-28T13:00:00.000Z"
],
[
"2025-12-28T13:00:00.000Z",
"2025-12-28T14:00:00.000Z"
],
[
"2025-12-28T14:00:00.000Z",
"2025-12-28T15:00:00.000Z"
],
[
"2025-12-28T15:00:00.000Z",
"2025-12-28T16:00:00.000Z"
],
[
"2025-12-28T16:00:00.000Z",
"2025-12-28T17:00:00.000Z"
],
[
"2025-12-28T17:00:00.000Z",
"2025-12-28T18:00:00.000Z"
],
[
"2025-12-28T18:00:00.000Z",
"2025-12-28T19:00:00.000Z"
],
[
"2026-01-04T09:00:00.000Z",
"2026-01-04T10:00:00.000Z"
],
[
"2026-01-04T10:00:00.000Z",
"2026-01-04T11:00:00.000Z"
],
[
"2026-01-04T11:00:00.000Z",
"2026-01-04T12:00:00.000Z"
],
[
"2026-01-04T12:00:00.000Z",
"2026-01-04T13:00:00.000Z"
],
[
"2026-01-04T13:00:00.000Z",
"2026-01-04T14:00:00.000Z"
],
[
"2026-01-04T14:00:00.000Z",
"2026-01-04T15:00:00.000Z"
],
[
"2026-01-04T15:00:00.000Z",
"2026-01-04T16:00:00.000Z"
],
[
"2026-01-04T16:00:00.000Z",
"2026-01-04T17:00:00.000Z"
],
[
"2026-01-04T17:00:00.000Z",
"2026-01-04T18:00:00.000Z"
],
[
"2026-01-04T18:00:00.000Z",
"2026-01-04T19:00:00.000Z"
],
[
"2026-01-11T09:00:00.000Z",
"2026-01-11T10:00:00.000Z"
],
[
"2026-01-11T10:00:00.000Z",
"2026-01-11T11:00:00.000Z"
],
[
"2026-01-11T11:00:00.000Z",
"2026-01-11T12:00:00.000Z"
],
[
"2026-01-11T12:00:00.000Z",
"2026-01-11T13:00:00.000Z"
],
[
"2026-01-11T13:00:00.000Z",
"2026-01-11T14:00:00.000Z"
],
[
"2026-01-11T14:00:00.000Z",
"2026-01-11T15:00:00.000Z"
],
[
"2026-01-11T15:00:00.000Z",
"2026-01-11T16:00:00.000Z"
],
[
"2026-01-11T16:00:00.000Z",
"2026-01-11T17:00:00.000Z"
],
[
"2026-01-11T17:00:00.000Z",
"2026-01-11T18:00:00.000Z"
],
[
"2026-01-11T18:00:00.000Z",
"2026-01-11T19:00:00.000Z"
],
[
"2026-01-18T09:00:00.000Z",
"2026-01-18T10:00:00.000Z"
],
[
"2026-01-18T10:00:00.000Z",
"2026-01-18T11:00:00.000Z"
],
[
"2026-01-18T11:00:00.000Z",
"2026-01-18T12:00:00.000Z"
],
[
"2026-01-18T12:00:00.000Z",
"2026-01-18T13:00:00.000Z"
],
[
"2026-01-18T13:00:00.000Z",
"2026-01-18T14:00:00.000Z"
],
[
"2026-01-18T14:00:00.000Z",
"2026-01-18T15:00:00.000Z"
],
[
"2026-01-18T15:00:00.000Z",
"2026-01-18T16:00:00.000Z"
],
[
"2026-01-18T16:00:00.000Z",
"2026-01-18T17:00:00.000Z"
],
[
"2026-01-18T17:00:00.000Z",
"2026-01-18T18:00:00.000Z"
],
[
"2026-01-18T18:00:00.000Z",
"2026-01-18T19:00:00.000Z"
],
[
"2026-01-25T09:00:00.000Z",
"2026-01-25T10:00:00.000Z"
],
[
"2026-01-25T10:00:00.000Z",
"2026-01-25T11:00:00.000Z"
],
[
"2026-01-25T11:00:00.000Z",
"2026-01-25T12:00:00.000Z"
],
[
"2026-01-25T12:00:00.000Z",
"2026-01-25T13:00:00.000Z"
],
[
"2026-01-25T13:00:00.000Z",
"2026-01-25T14:00:00.000Z"
],
[
"2026-01-25T14:00:00.000Z",
"2026-01-25T15:00:00.000Z"
],
[
"2026-01-25T15:00:00.000Z",
"2026-01-25T16:00:00.000Z"
],
[
"2026-01-25T16:00:00.000Z",
"2026-01-25T17:00:00.000Z"
],
[
"2026-01-25T17:00:00.000Z",
"2026-01-25T18:00:00.000Z"
],
[
"2026-01-25T18:00:00.000Z",
"2026-01-25T19:00:00.000Z"
],
[
"2026-02-01T09:00:00.000Z",
"2026-02-01T10:00:00.000Z"
],
[
"2026-02-01T10:00:00.000Z",
"2026-02-01T11:00:00.000Z"
],
[
"2026-02-01T11:00:00.000Z",
"2026-02-01T12:00:00.000Z"
],
[
"2026-02-01T12:00:00.000Z",
"2026-02-01T13:00:00.000Z"
],
[
"2026-02-01T13:00:00.000Z",
"2026-02-01T14:00:00.000Z"
],
[
"2026-02-01T14:00:00.000Z",
"2026-02-01T15:00:00.000Z"
],
[
"2026-02-01T15:00:00.000Z",
"2026-02-01T16:00:00.000Z"
],
[
"2026-02-01T16:00:00.000Z",
"2026-02-01T17:00:00.000Z"
],
[
"2026-02-01T17:00:00.000Z",
"2026-02-01T18:00:00.000Z"
],
[
"2026-02-01T18:00:00.000Z",
"2026-02-01T19:00:00.000Z"
],
[
"2026-02-08T09:00:00.000Z",
"2026-02-08T10:00:00.000Z"
],
[
"2026-02-08T10:00:00.000Z",
"2026-02-08T11:00:00.000Z"
],
[
"2026-02-08T11:00:00.000Z",
"2026-02-08T12:00:00.000Z"
],
[
"2026-02-08T12:00:00.000Z",
"2026-02-08T13:00:00.000Z"
],
[
"2026-02-08T13:00:00.000Z",
"2026-02-08T14:00:00.000Z"
],
[
"2026-02-08T14:00:00.000Z",
"2026-02-08T15:00:00.000Z"
],
[
"2026-02-08T15:00:00.000Z",
"2026-02-08T16:00:00.000Z"
],
[
"2026-02-08T16:00:00.000Z",
"2026-02-08T17:00:00.000Z"
],
[
"2026-02-08T17:00:00.000Z",
"2026-02-08T18:00:00.000Z"
],
[
"2026-02-08T18:00:00.000Z",
"2026-02-08T19:00:00.000Z"
],
[
"2026-02-15T09:00:00.000Z",
"2026-02-15T10:00:00.000Z"
],
[
"2026-02-15T10:00:00.000Z",
"2026-02-15T11:00:00.000Z"
],
[
"2026-02-15T11:00:00.000Z",
"2026-02-15T12:00:00.000Z"
],
[
"2026-02-15T12:00:00.000Z",
"2026-02-15T13:00:00.000Z"
],
[
"2026-02-15T13:00:00.000Z",
"2026-02-15T14:00:00.000Z"
],
[
"2026-02-15T14:00:00.000Z",
"2026-02-15T15:00:00.000Z"
],
[
"2026-02-15T15:00:00.000Z",
"2026-02-15T16:00:00.000Z"
],
[
"2026-02-15T16:00:00.000Z",
"2026-02-15T17:00:00.000Z"
],
[
"2026-02-15T17:00:00.000Z",
"2026-02-15T18:00:00.000Z"
],
[
"2026-02-15T18:00:00.000Z",
"2026-02-15T19:00:00.000Z"
],
[
"2026-02-22T09:00:00.000Z",
"2026-02-22T10:00:00.000Z"
],
[
"2026-02-22T10:00:00.000Z",
"2026-02-22T11:00:00.000Z"
],
[
"2026-02-22T11:00:00.000Z",
"2026-02-22T12:00:00.000Z"
],
[
"2026-02-22T12:00:00.000Z",
"2026-02-22T13:00:00.000Z"
],
[
"2026-02-22T13:00:00.000Z",
"2026-02-22T14:00:00.000Z"
],
[
"2026-02-22T14:00:00.000Z",
"2026-02-22T15:00:00.000Z"
],
[
"2026-02-22T15:00:00.000Z",
"2026-02-22T16:00:00.000Z"
],
[
"2026-02-22T16:00:00.000Z",
"2026-02-22T17:00:00.000Z"
],
[
"2026-02-22T17:00:00.000Z",
"2026-02-22T18:00:00.000Z"
],
[
"2026-02-22T18:00:00.000Z",
"2026-02-22T19:00:00.000Z"
],
[
"2026-03-01T09:00:00.000Z",
"2026-03-01T10:00:00.000Z"
],
[
"2026-03-01T10:00:00.000Z",
"2026-03-01T11:00:00.000Z"
],
[
"2026-03-01T11:00:00.000Z",
"2026-03-01T12:00:00.000Z"
],
[
"2026-03-01T12:00:00.000Z",
"2026-03-01T13:00:00.000Z"
],
[
"2026-03-01T13:00:00.000Z",
"2026-03-01T14:00:00.000Z"
],
[
"2026-03-01T14:00:00.000Z",
"2026-03-01T15:00:00.000Z"
],
[
"2026-03-01T15:00:00.000Z",
"2026-03-01T16:00:00.000Z"
],
[
"2026-03-01T16:00:00.000Z",
"2026-03-01T17:00:00.000Z"
],
[
"2026-03-01T17:00:00.000Z",
"2026-03-01T18:00:00.000Z"
],
[
"2026-03-01T18:00:00.000Z",
"2026-03-01T19:00:00.000Z"
],
[
"2026-03-08T09:00:00.000Z",
"2026-03-08T10:00:00.000Z"
],
[
"2026-03-08T10:00:00.000Z",
"2026-03-08T11:00:00.000Z"
],
[
"2026-03-08T11:00:00.000Z",
"2026-03-08T12:00:00.000Z"
],
[
"2026-03-08T12:00:00.000Z",
"2026-03-08T13:00:00.000Z"
],
[
"2026-03-08T13:00:00.000Z",
"2026-03-08T14:00:00.000Z"
],
[
"2026-03-08T14:00:00.000Z",
"2026-03-08T15:00:00.000Z"
],
[
"2026-03-08T15:00:00.000Z",
"2026-03-08T16:00:00.000Z"
],
[
"2026-03-08T16:00:00.000Z",
"2026-03-08T17:00:00.000Z"
],
[
"2026-03-08T17:00:00.000Z",
"2026-03-08T18:00:00.000Z"
],
[
"2026-03-08T18:00:00.000Z",
"2026-03-08T19:00:00.000Z"
],
[
"2026-03-15T09:00:00.000Z",
"2026-03-15T10:00:00.000Z"
],
[
"2026-03-15T10:00:00.000Z",
"2026-03-15T11:00:00.000Z"
],
[
"2026-03-15T11:00:00.000Z",
"2026-03-15T12:00:00.000Z"
],
[
"2026-03-15T12:00:00.000Z",
"2026-03-15T13:00:00.000Z"
],
[
"2026-03-15T13:00:00.000Z",
"2026-03-15T14:00:00.000Z"
],
[
"2026-03-15T14:00:00.000Z",
"2026-03-15T15:00:00.000Z"
],
[
"2026-03-15T15:00:00.000Z",
"2026-03-15T16:00:00.000Z"
],
[
"2026-03-15T16:00:00.000Z",
"2026-03-15T17:00:00.000Z"
],
[
"2026-03-15T17:00:00.000Z",
"2026-03-15T18:00:00.000Z"
],
[
"2026-03-15T18:00:00.000Z",
"2026-03-15T19:00:00.000Z"
],
[
"2026-03-22T09:00:00.000Z",
"2026-03-22T10:00:00.000Z"
],
[
"2026-03-22T10:00:00.000Z",
"2026-03-22T11:00:00.000Z"
],
[
"2026-03-22T11:00:00.000Z",
"2026-03-22T12:00:00.000Z"
],
[
"2026-03-22T12:00:00.000Z",
"2026-03-22T13:00:00.000Z"
],
[
"2026-03-22T13:00:00.000Z",
"2026-03-22T14:00:00.000Z"
],
[
"2026-03-22T14:00:00.000Z",
"2026-03-22T15:00:00.000Z"
],
[
"2026-03-22T15:00:00.000Z",
"2026-03-22T16:00:00.000Z"
],
[
"2026-03-22T16:00:00.000Z",
"2026-03-22T17:00:00.000Z"
],
[
"2026-03-22T17:00:00.000Z",
"2026-03-22T18:00:00.000Z"
],
[
"2026-03-22T18:00:00.000Z",
"2026-03-22T19:00:00.000Z"
],
[
"2026-03-29T09:00:00.000Z",
"2026-03-29T10:00:00.000Z"
],
[
"2026-03-29T10:00:00.000Z",
"2026-03-29T11:00:00.000Z"
],
[
"2026-03-29T11:00:00.000Z",
"2026-03-29T12:00:00.000Z"
],
[
"2026-03-29T12:00:00.000Z",
"2026-03-29T13:00:00.000Z"
],
[
"2026-03-29T13:00:00.000Z",
"2026-03-29T14:00:00.000Z"
],
[
"2026-03-29T14:00:00.000Z",
"2026-03-29T15:00:00.000Z"
],
[
"2026-03-29T15:00:00.000Z",
"2026-03-29T16:00:00.000Z"
],
[
"2026-03-29T16:00:00.000Z",
"2026-03-29T17:00:00.000Z"
],
[
"2026-03-29T17:00:00.000Z",
"2026-03-29T18:00:00.000Z"
],
[
"2026-03-29T18:00:00.000Z",
"2026-03-29T19:00:00.000Z"
]
]
},
{
"id": "dcde4900-5ba1-4394-b020-12cdabc514c6",
"range": [
"2025-04-21T21:00:00.000Z",
"2025-04-21T21:00:00.000Z"
],
"external": [],
"intervals": [
{
"id": "11168047-8428-415d-ac77-4a7757892fe4",
"end": {
"hours": 19,
"minutes": 0
},
"start": {
"hours": 16,
"minutes": 0
},
"period": 60
}
],
"inEveryWeek": true,
"inEveryMonth": true,
"timeIntervals": [
[
"2025-04-07T16:00:00.000Z",
"2025-04-07T17:00:00.000Z"
],
[
"2025-04-07T17:00:00.000Z",
"2025-04-07T18:00:00.000Z"
],
[
"2025-04-07T18:00:00.000Z",
"2025-04-07T19:00:00.000Z"
],
[
"2025-04-14T16:00:00.000Z",
"2025-04-14T17:00:00.000Z"
],
[
"2025-04-14T17:00:00.000Z",
"2025-04-14T18:00:00.000Z"
],
[
"2025-04-14T18:00:00.000Z",
"2025-04-14T19:00:00.000Z"
],
[
"2025-04-21T16:00:00.000Z",
"2025-04-21T17:00:00.000Z"
],
[
"2025-04-21T17:00:00.000Z",
"2025-04-21T18:00:00.000Z"
],
[
"2025-04-21T18:00:00.000Z",
"2025-04-21T19:00:00.000Z"
],
[
"2025-04-28T16:00:00.000Z",
"2025-04-28T17:00:00.000Z"
],
[
"2025-04-28T17:00:00.000Z",
"2025-04-28T18:00:00.000Z"
],
[
"2025-04-28T18:00:00.000Z",
"2025-04-28T19:00:00.000Z"
],
[
"2025-05-05T16:00:00.000Z",
"2025-05-05T17:00:00.000Z"
],
[
"2025-05-05T17:00:00.000Z",
"2025-05-05T18:00:00.000Z"
],
[
"2025-05-05T18:00:00.000Z",
"2025-05-05T19:00:00.000Z"
],
[
"2025-05-12T16:00:00.000Z",
"2025-05-12T17:00:00.000Z"
],
[
"2025-05-12T17:00:00.000Z",
"2025-05-12T18:00:00.000Z"
],
[
"2025-05-12T18:00:00.000Z",
"2025-05-12T19:00:00.000Z"
],
[
"2025-05-19T16:00:00.000Z",
"2025-05-19T17:00:00.000Z"
],
[
"2025-05-19T17:00:00.000Z",
"2025-05-19T18:00:00.000Z"
],
[
"2025-05-19T18:00:00.000Z",
"2025-05-19T19:00:00.000Z"
],
[
"2025-05-26T16:00:00.000Z",
"2025-05-26T17:00:00.000Z"
],
[
"2025-05-26T17:00:00.000Z",
"2025-05-26T18:00:00.000Z"
],
[
"2025-05-26T18:00:00.000Z",
"2025-05-26T19:00:00.000Z"
],
[
"2025-06-02T16:00:00.000Z",
"2025-06-02T17:00:00.000Z"
],
[
"2025-06-02T17:00:00.000Z",
"2025-06-02T18:00:00.000Z"
],
[
"2025-06-02T18:00:00.000Z",
"2025-06-02T19:00:00.000Z"
],
[
"2025-06-09T16:00:00.000Z",
"2025-06-09T17:00:00.000Z"
],
[
"2025-06-09T17:00:00.000Z",
"2025-06-09T18:00:00.000Z"
],
[
"2025-06-09T18:00:00.000Z",
"2025-06-09T19:00:00.000Z"
],
[
"2025-06-16T16:00:00.000Z",
"2025-06-16T17:00:00.000Z"
],
[
"2025-06-16T17:00:00.000Z",
"2025-06-16T18:00:00.000Z"
],
[
"2025-06-16T18:00:00.000Z",
"2025-06-16T19:00:00.000Z"
],
[
"2025-06-23T16:00:00.000Z",
"2025-06-23T17:00:00.000Z"
],
[
"2025-06-23T17:00:00.000Z",
"2025-06-23T18:00:00.000Z"
],
[
"2025-06-23T18:00:00.000Z",
"2025-06-23T19:00:00.000Z"
],
[
"2025-06-30T16:00:00.000Z",
"2025-06-30T17:00:00.000Z"
],
[
"2025-06-30T17:00:00.000Z",
"2025-06-30T18:00:00.000Z"
],
[
"2025-06-30T18:00:00.000Z",
"2025-06-30T19:00:00.000Z"
],
[
"2025-07-07T16:00:00.000Z",
"2025-07-07T17:00:00.000Z"
],
[
"2025-07-07T17:00:00.000Z",
"2025-07-07T18:00:00.000Z"
],
[
"2025-07-07T18:00:00.000Z",
"2025-07-07T19:00:00.000Z"
],
[
"2025-07-14T16:00:00.000Z",
"2025-07-14T17:00:00.000Z"
],
[
"2025-07-14T17:00:00.000Z",
"2025-07-14T18:00:00.000Z"
],
[
"2025-07-14T18:00:00.000Z",
"2025-07-14T19:00:00.000Z"
],
[
"2025-07-21T16:00:00.000Z",
"2025-07-21T17:00:00.000Z"
],
[
"2025-07-21T17:00:00.000Z",
"2025-07-21T18:00:00.000Z"
],
[
"2025-07-21T18:00:00.000Z",
"2025-07-21T19:00:00.000Z"
],
[
"2025-07-28T16:00:00.000Z",
"2025-07-28T17:00:00.000Z"
],
[
"2025-07-28T17:00:00.000Z",
"2025-07-28T18:00:00.000Z"
],
[
"2025-07-28T18:00:00.000Z",
"2025-07-28T19:00:00.000Z"
],
[
"2025-08-04T16:00:00.000Z",
"2025-08-04T17:00:00.000Z"
],
[
"2025-08-04T17:00:00.000Z",
"2025-08-04T18:00:00.000Z"
],
[
"2025-08-04T18:00:00.000Z",
"2025-08-04T19:00:00.000Z"
],
[
"2025-08-11T16:00:00.000Z",
"2025-08-11T17:00:00.000Z"
],
[
"2025-08-11T17:00:00.000Z",
"2025-08-11T18:00:00.000Z"
],
[
"2025-08-11T18:00:00.000Z",
"2025-08-11T19:00:00.000Z"
],
[
"2025-08-18T16:00:00.000Z",
"2025-08-18T17:00:00.000Z"
],
[
"2025-08-18T17:00:00.000Z",
"2025-08-18T18:00:00.000Z"
],
[
"2025-08-18T18:00:00.000Z",
"2025-08-18T19:00:00.000Z"
],
[
"2025-08-25T16:00:00.000Z",
"2025-08-25T17:00:00.000Z"
],
[
"2025-08-25T17:00:00.000Z",
"2025-08-25T18:00:00.000Z"
],
[
"2025-08-25T18:00:00.000Z",
"2025-08-25T19:00:00.000Z"
],
[
"2025-09-01T16:00:00.000Z",
"2025-09-01T17:00:00.000Z"
],
[
"2025-09-01T17:00:00.000Z",
"2025-09-01T18:00:00.000Z"
],
[
"2025-09-01T18:00:00.000Z",
"2025-09-01T19:00:00.000Z"
],
[
"2025-09-08T16:00:00.000Z",
"2025-09-08T17:00:00.000Z"
],
[
"2025-09-08T17:00:00.000Z",
"2025-09-08T18:00:00.000Z"
],
[
"2025-09-08T18:00:00.000Z",
"2025-09-08T19:00:00.000Z"
],
[
"2025-09-15T16:00:00.000Z",
"2025-09-15T17:00:00.000Z"
],
[
"2025-09-15T17:00:00.000Z",
"2025-09-15T18:00:00.000Z"
],
[
"2025-09-15T18:00:00.000Z",
"2025-09-15T19:00:00.000Z"
],
[
"2025-09-22T16:00:00.000Z",
"2025-09-22T17:00:00.000Z"
],
[
"2025-09-22T17:00:00.000Z",
"2025-09-22T18:00:00.000Z"
],
[
"2025-09-22T18:00:00.000Z",
"2025-09-22T19:00:00.000Z"
],
[
"2025-09-29T16:00:00.000Z",
"2025-09-29T17:00:00.000Z"
],
[
"2025-09-29T17:00:00.000Z",
"2025-09-29T18:00:00.000Z"
],
[
"2025-09-29T18:00:00.000Z",
"2025-09-29T19:00:00.000Z"
],
[
"2025-10-06T16:00:00.000Z",
"2025-10-06T17:00:00.000Z"
],
[
"2025-10-06T17:00:00.000Z",
"2025-10-06T18:00:00.000Z"
],
[
"2025-10-06T18:00:00.000Z",
"2025-10-06T19:00:00.000Z"
],
[
"2025-10-13T16:00:00.000Z",
"2025-10-13T17:00:00.000Z"
],
[
"2025-10-13T17:00:00.000Z",
"2025-10-13T18:00:00.000Z"
],
[
"2025-10-13T18:00:00.000Z",
"2025-10-13T19:00:00.000Z"
],
[
"2025-10-20T16:00:00.000Z",
"2025-10-20T17:00:00.000Z"
],
[
"2025-10-20T17:00:00.000Z",
"2025-10-20T18:00:00.000Z"
],
[
"2025-10-20T18:00:00.000Z",
"2025-10-20T19:00:00.000Z"
],
[
"2025-10-27T16:00:00.000Z",
"2025-10-27T17:00:00.000Z"
],
[
"2025-10-27T17:00:00.000Z",
"2025-10-27T18:00:00.000Z"
],
[
"2025-10-27T18:00:00.000Z",
"2025-10-27T19:00:00.000Z"
],
[
"2025-11-03T16:00:00.000Z",
"2025-11-03T17:00:00.000Z"
],
[
"2025-11-03T17:00:00.000Z",
"2025-11-03T18:00:00.000Z"
],
[
"2025-11-03T18:00:00.000Z",
"2025-11-03T19:00:00.000Z"
],
[
"2025-11-10T16:00:00.000Z",
"2025-11-10T17:00:00.000Z"
],
[
"2025-11-10T17:00:00.000Z",
"2025-11-10T18:00:00.000Z"
],
[
"2025-11-10T18:00:00.000Z",
"2025-11-10T19:00:00.000Z"
],
[
"2025-11-17T16:00:00.000Z",
"2025-11-17T17:00:00.000Z"
],
[
"2025-11-17T17:00:00.000Z",
"2025-11-17T18:00:00.000Z"
],
[
"2025-11-17T18:00:00.000Z",
"2025-11-17T19:00:00.000Z"
],
[
"2025-11-24T16:00:00.000Z",
"2025-11-24T17:00:00.000Z"
],
[
"2025-11-24T17:00:00.000Z",
"2025-11-24T18:00:00.000Z"
],
[
"2025-11-24T18:00:00.000Z",
"2025-11-24T19:00:00.000Z"
],
[
"2025-12-01T16:00:00.000Z",
"2025-12-01T17:00:00.000Z"
],
[
"2025-12-01T17:00:00.000Z",
"2025-12-01T18:00:00.000Z"
],
[
"2025-12-01T18:00:00.000Z",
"2025-12-01T19:00:00.000Z"
],
[
"2025-12-08T16:00:00.000Z",
"2025-12-08T17:00:00.000Z"
],
[
"2025-12-08T17:00:00.000Z",
"2025-12-08T18:00:00.000Z"
],
[
"2025-12-08T18:00:00.000Z",
"2025-12-08T19:00:00.000Z"
],
[
"2025-12-15T16:00:00.000Z",
"2025-12-15T17:00:00.000Z"
],
[
"2025-12-15T17:00:00.000Z",
"2025-12-15T18:00:00.000Z"
],
[
"2025-12-15T18:00:00.000Z",
"2025-12-15T19:00:00.000Z"
],
[
"2025-12-22T16:00:00.000Z",
"2025-12-22T17:00:00.000Z"
],
[
"2025-12-22T17:00:00.000Z",
"2025-12-22T18:00:00.000Z"
],
[
"2025-12-22T18:00:00.000Z",
"2025-12-22T19:00:00.000Z"
],
[
"2025-12-29T16:00:00.000Z",
"2025-12-29T17:00:00.000Z"
],
[
"2025-12-29T17:00:00.000Z",
"2025-12-29T18:00:00.000Z"
],
[
"2025-12-29T18:00:00.000Z",
"2025-12-29T19:00:00.000Z"
],
[
"2026-01-05T16:00:00.000Z",
"2026-01-05T17:00:00.000Z"
],
[
"2026-01-05T17:00:00.000Z",
"2026-01-05T18:00:00.000Z"
],
[
"2026-01-05T18:00:00.000Z",
"2026-01-05T19:00:00.000Z"
],
[
"2026-01-12T16:00:00.000Z",
"2026-01-12T17:00:00.000Z"
],
[
"2026-01-12T17:00:00.000Z",
"2026-01-12T18:00:00.000Z"
],
[
"2026-01-12T18:00:00.000Z",
"2026-01-12T19:00:00.000Z"
],
[
"2026-01-19T16:00:00.000Z",
"2026-01-19T17:00:00.000Z"
],
[
"2026-01-19T17:00:00.000Z",
"2026-01-19T18:00:00.000Z"
],
[
"2026-01-19T18:00:00.000Z",
"2026-01-19T19:00:00.000Z"
],
[
"2026-01-26T16:00:00.000Z",
"2026-01-26T17:00:00.000Z"
],
[
"2026-01-26T17:00:00.000Z",
"2026-01-26T18:00:00.000Z"
],
[
"2026-01-26T18:00:00.000Z",
"2026-01-26T19:00:00.000Z"
],
[
"2026-02-02T16:00:00.000Z",
"2026-02-02T17:00:00.000Z"
],
[
"2026-02-02T17:00:00.000Z",
"2026-02-02T18:00:00.000Z"
],
[
"2026-02-02T18:00:00.000Z",
"2026-02-02T19:00:00.000Z"
],
[
"2026-02-09T16:00:00.000Z",
"2026-02-09T17:00:00.000Z"
],
[
"2026-02-09T17:00:00.000Z",
"2026-02-09T18:00:00.000Z"
],
[
"2026-02-09T18:00:00.000Z",
"2026-02-09T19:00:00.000Z"
],
[
"2026-02-16T16:00:00.000Z",
"2026-02-16T17:00:00.000Z"
],
[
"2026-02-16T17:00:00.000Z",
"2026-02-16T18:00:00.000Z"
],
[
"2026-02-16T18:00:00.000Z",
"2026-02-16T19:00:00.000Z"
],
[
"2026-02-23T16:00:00.000Z",
"2026-02-23T17:00:00.000Z"
],
[
"2026-02-23T17:00:00.000Z",
"2026-02-23T18:00:00.000Z"
],
[
"2026-02-23T18:00:00.000Z",
"2026-02-23T19:00:00.000Z"
],
[
"2026-03-02T16:00:00.000Z",
"2026-03-02T17:00:00.000Z"
],
[
"2026-03-02T17:00:00.000Z",
"2026-03-02T18:00:00.000Z"
],
[
"2026-03-02T18:00:00.000Z",
"2026-03-02T19:00:00.000Z"
],
[
"2026-03-09T16:00:00.000Z",
"2026-03-09T17:00:00.000Z"
],
[
"2026-03-09T17:00:00.000Z",
"2026-03-09T18:00:00.000Z"
],
[
"2026-03-09T18:00:00.000Z",
"2026-03-09T19:00:00.000Z"
],
[
"2026-03-16T16:00:00.000Z",
"2026-03-16T17:00:00.000Z"
],
[
"2026-03-16T17:00:00.000Z",
"2026-03-16T18:00:00.000Z"
],
[
"2026-03-16T18:00:00.000Z",
"2026-03-16T19:00:00.000Z"
],
[
"2026-03-23T16:00:00.000Z",
"2026-03-23T17:00:00.000Z"
],
[
"2026-03-23T17:00:00.000Z",
"2026-03-23T18:00:00.000Z"
],
[
"2026-03-23T18:00:00.000Z",
"2026-03-23T19:00:00.000Z"
],
[
"2026-03-30T16:00:00.000Z",
"2026-03-30T17:00:00.000Z"
],
[
"2026-03-30T17:00:00.000Z",
"2026-03-30T18:00:00.000Z"
],
[
"2026-03-30T18:00:00.000Z",
"2026-03-30T19:00:00.000Z"
]
]
}
]
},
"additionalFields": {}
}
]
},
{
"id": 2,
"attributeSetId": 1,
"type": "data",
"localizeInfos": {
"title": "Entity",
"titleForSite": "",
"successMessage": "",
"unsuccessMessage": "",
"urlAddress": "",
"database": "0",
"script": "0"
},
"version": 17,
"position": 2,
"identifier": "entity",
"processingType": "script",
"templateId": null,
"attributes": [
{
"type": "entity",
"marker": "entity",
"position": 1,
"settings": {},
"isVisible": true,
"listTitles": [
{
"title": "Blue service",
"value": {
"id": "p-2-7",
"depth": 0,
"isPinned": false,
"parentId": null,
"position": 2,
"selected": true
}
},
{
"title": "Green service",
"value": {
"id": "p-2-6",
"depth": 0,
"isPinned": false,
"parentId": null,
"position": 3,
"selected": true
}
},
{
"title": "Red service",
"value": {
"id": "p-2-2",
"depth": 0,
"isPinned": false,
"parentId": null,
"position": 4,
"selected": true
}
}
],
"validators": {},
"initialValue": null,
"localizeInfos": {
"title": "Entity"
},
"additionalFields": {}
}
]
},
{
"id": 3,
"attributeSetId": 2,
"type": "data",
"localizeInfos": {
"title": "Contact us",
"titleForSite": "",
"successMessage": "Message about successful data processing",
"unsuccessMessage": "Message about unsuccessful data processing",
"urlAddress": "",
"database": "0",
"script": "0"
},
"version": 5,
"position": 3,
"identifier": "contact_us",
"processingType": "script",
"templateId": null,
"attributes": [
{
"type": "string",
"marker": "first_name",
"position": 1,
"settings": {},
"isVisible": true,
"listTitles": [],
"validators": {
"requiredValidator": {
"strict": true
}
},
"initialValue": null,
"localizeInfos": {
"title": "First name"
},
"additionalFields": {}
},
{
"type": "string",
"marker": "email",
"position": 2,
"settings": {},
"isVisible": true,
"listTitles": [],
"validators": {
"requiredValidator": {
"strict": true
},
"emailInspectionValidator": true
},
"initialValue": null,
"localizeInfos": {
"title": "Email"
},
"additionalFields": {}
},
{
"type": "string",
"marker": "surname",
"position": 3,
"settings": {},
"isVisible": true,
"listTitles": [],
"validators": {
"stringInspectionValidator": {
"stringMax": 0,
"stringMin": 0,
"stringLength": 0
}
},
"initialValue": null,
"localizeInfos": {
"title": "Surname"
},
"additionalFields": {}
},
{
"type": "list",
"marker": "topic",
"position": 4,
"settings": {},
"isVisible": true,
"listTitles": [
{
"title": "Article",
"value": "article",
"extended": {
"type": null,
"value": null
},
"position": 1
},
{
"title": "Article-2",
"value": "article-2",
"extended": {
"type": null,
"value": null
},
"position": 2
}
],
"validators": {
"requiredValidator": {
"strict": true
}
},
"initialValue": null,
"localizeInfos": {
"title": "Topic"
},
"additionalFields": {}
},
{
"type": "text",
"marker": "text",
"position": 5,
"settings": {},
"isVisible": true,
"listTitles": [],
"validators": {},
"initialValue": null,
"localizeInfos": {
"title": "Text"
},
"additionalFields": {}
},
{
"type": "button",
"marker": "send",
"position": 7,
"settings": {},
"isVisible": true,
"listTitles": [],
"validators": {},
"initialValue": null,
"localizeInfos": {
"title": "Send"
},
"additionalFields": {}
}
]
},
{
"id": 4,
"attributeSetId": 5,
"type": "sing_in_up",
"localizeInfos": {
"title": "Registration",
"titleForSite": "",
"successMessage": "",
"unsuccessMessage": "",
"urlAddress": "",
"database": "0",
"script": "0"
},
"version": 0,
"position": 4,
"identifier": "reg",
"processingType": "script",
"templateId": null,
"attributes": [
{
"type": "string",
"marker": "email_reg",
"isLogin": true,
"isSignUp": false,
"position": 1,
"settings": {},
"isVisible": true,
"isPassword": false,
"listTitles": [],
"validators": {
"requiredValidator": {
"strict": true
},
"emailInspectionValidator": true
},
"initialValue": null,
"localizeInfos": {
"title": "E-mail"
},
"additionalFields": {},
"isSignUpRequired": false,
"isNotificationEmail": false,
"isNotificationPhoneSMS": false,
"isNotificationPhonePush": false
},
{
"type": "string",
"marker": "name_reg",
"isLogin": false,
"isSignUp": true,
"position": 2,
"settings": {},
"isVisible": true,
"isPassword": false,
"listTitles": [],
"validators": {
"requiredValidator": {
"strict": true
}
},
"initialValue": null,
"localizeInfos": {
"title": "Name"
},
"additionalFields": {},
"isSignUpRequired": false,
"isNotificationEmail": false,
"isNotificationPhoneSMS": false,
"isNotificationPhonePush": false
},
{
"type": "string",
"marker": "phone_reg",
"isLogin": false,
"isSignUp": true,
"position": 3,
"settings": {},
"isVisible": true,
"isPassword": false,
"listTitles": [],
"validators": {
"requiredValidator": {
"strict": true
}
},
"initialValue": null,
"localizeInfos": {
"title": "Phone"
},
"additionalFields": {},
"isSignUpRequired": false,
"isNotificationEmail": false,
"isNotificationPhoneSMS": false,
"isNotificationPhonePush": false
},
{
"type": "string",
"marker": "password_reg",
"isLogin": false,
"isSignUp": false,
"position": 4,
"settings": {},
"isVisible": true,
"isPassword": true,
"listTitles": [],
"validators": {
"requiredValidator": {
"strict": true
},
"stringInspectionValidator": {
"stringMax": 0,
"stringMin": 0,
"stringLength": 0
}
},
"initialValue": null,
"localizeInfos": {
"title": "Password"
},
"additionalFields": {},
"isSignUpRequired": false,
"isNotificationEmail": false,
"isNotificationPhoneSMS": false,
"isNotificationPhonePush": false
},
{
"type": "string",
"marker": "email_notification_reg",
"isLogin": false,
"isSignUp": false,
"position": 5,
"settings": {},
"isVisible": true,
"isPassword": false,
"listTitles": [],
"validators": {},
"initialValue": null,
"localizeInfos": {
"title": "email for notification"
},
"additionalFields": {},
"isSignUpRequired": false,
"isNotificationEmail": true,
"isNotificationPhoneSMS": false,
"isNotificationPhonePush": false
}
]
},
{
"id": 5,
"attributeSetId": 3,
"type": "order",
"localizeInfos": {
"title": "Order",
"titleForSite": "",
"successMessage": "",
"unsuccessMessage": "",
"urlAddress": "",
"database": "0",
"script": "0"
},
"version": 2,
"position": 5,
"identifier": "order",
"processingType": "script",
"templateId": null,
"attributes": [
{
"type": "string",
"marker": "name",
"position": 1,
"settings": {},
"isVisible": true,
"listTitles": [],
"validators": {},
"initialValue": null,
"localizeInfos": {
"title": "Name"
},
"additionalFields": {}
}
]
},
{
"id": 6,
"attributeSetId": 8,
"type": "order",
"localizeInfos": {
"title": "Subscription",
"titleForSite": "Subscription",
"successMessage": "Message about successful data processing",
"unsuccessMessage": "Message about unsuccessful data processing",
"urlAddress": "",
"database": "0",
"script": "0"
},
"version": 21,
"position": 6,
"identifier": "subscription",
"processingType": "script",
"templateId": null,
"attributes": [
{
"type": "date",
"marker": "expired_date",
"position": 2,
"settings": {},
"isVisible": true,
"listTitles": [],
"validators": {},
"initialValue": null,
"localizeInfos": {
"title": "Expired date"
},
"additionalFields": {}
},
{
"type": "list",
"marker": "subscription_time",
"position": 5,
"settings": {},
"isVisible": true,
"listTitles": [
{
"title": "1 month",
"value": "1",
"extended": {
"type": "real",
"value": "100"
},
"position": 1
},
{
"title": "6 months",
"value": "6",
"extended": {
"type": "real",
"value": "500"
},
"position": 2
},
{
"title": "1 year",
"value": "12",
"extended": {
"type": "real",
"value": "999"
},
"position": 3
}
],
"validators": {},
"initialValue": null,
"localizeInfos": {
"title": "Subscription time"
},
"additionalFields": {}
}
]
},
{
"id": 7,
"attributeSetId": 10,
"type": "order",
"localizeInfos": {
"title": "Guest order",
"titleForSite": "",
"successMessage": "Message about successful data processing",
"unsuccessMessage": "Message about unsuccessful data processing",
"urlAddress": "",
"database": "0",
"script": "0"
},
"version": 0,
"position": 7,
"identifier": "guest_order",
"processingType": "script",
"templateId": null,
"attributes": [
{
"type": "string",
"marker": "guest_phone",
"position": 2,
"settings": {},
"isVisible": true,
"listTitles": [],
"validators": {
"requiredValidator": {
"strict": true
}
},
"initialValue": null,
"localizeInfos": {
"title": "Phone"
},
"additionalFields": {}
},
{
"type": "string",
"marker": "guest_name",
"position": 1,
"settings": {},
"isVisible": true,
"listTitles": [],
"validators": {
"requiredValidator": {
"strict": true
}
},
"initialValue": null,
"localizeInfos": {
"title": "Name"
},
"additionalFields": {}
},
{
"type": "string",
"marker": "guest_email",
"position": 3,
"settings": {},
"isVisible": true,
"listTitles": [],
"validators": {
"requiredValidator": {
"strict": true
}
},
"initialValue": null,
"localizeInfos": {
"title": "Email"
},
"additionalFields": {}
}
]
},
{
"id": 8,
"attributeSetId": 11,
"type": "data",
"localizeInfos": {
"title": "File",
"titleForSite": "",
"successMessage": "Successful data processing",
"unsuccessMessage": "Unsuccessful data processing",
"urlAddress": "",
"database": "0",
"script": "0"
},
"version": 0,
"position": 8,
"identifier": "file",
"processingType": "script",
"templateId": null,
"attributes": [
{
"type": "file",
"marker": "file",
"position": 1,
"settings": {},
"isVisible": true,
"listTitles": [],
"validators": {},
"initialValue": null,
"localizeInfos": {
"title": "File"
},
"additionalFields": {}
},
{
"type": "image",
"marker": "image",
"position": 2,
"settings": {},
"isVisible": true,
"listTitles": [],
"validators": {},
"initialValue": null,
"localizeInfos": {
"title": "Image"
},
"additionalFields": {}
},
{
"type": "groupOfImages",
"marker": "images_group",
"position": 3,
"settings": {},
"isVisible": true,
"listTitles": [],
"validators": {},
"initialValue": null,
"localizeInfos": {
"title": "Images group"
},
"additionalFields": {}
}
]
},
{
"id": 9,
"attributeSetId": 12,
"type": "order",
"localizeInfos": {
"title": "Tickets",
"titleForSite": "Tickets",
"successMessage": "",
"unsuccessMessage": "",
"urlAddress": "",
"database": "0",
"script": "0"
},
"version": 6,
"position": 9,
"identifier": "tickets_form",
"processingType": "script",
"templateId": null,
"attributes": [
{
"type": "timeInterval",
"marker": "schedule",
"position": 1,
"settings": {},
"isVisible": true,
"listTitles": [],
"validators": {},
"initialValue": null,
"localizeInfos": {
"title": "Schedule",
"intervals": [
{
"id": "ef9cf848-7373-4b81-98bd-7ad33aa951e2",
"range": [
"2025-04-26T21:00:00.000Z",
"2025-04-26T21:00:00.000Z"
],
"external": [],
"intervals": [
{
"id": "f2042e47-c650-4fc6-ae1c-efdb109b450f",
"end": {
"hours": 21,
"minutes": 30
},
"start": {
"hours": 16,
"minutes": 30
},
"period": 90
}
],
"inEveryWeek": true,
"inEveryMonth": true,
"timeIntervals": [
[
"2025-04-05T16:30:00.000Z",
"2025-04-05T18:00:00.000Z"
],
[
"2025-04-05T18:00:00.000Z",
"2025-04-05T19:30:00.000Z"
],
[
"2025-04-05T19:30:00.000Z",
"2025-04-05T21:00:00.000Z"
],
[
"2025-04-12T16:30:00.000Z",
"2025-04-12T18:00:00.000Z"
],
[
"2025-04-12T18:00:00.000Z",
"2025-04-12T19:30:00.000Z"
],
[
"2025-04-12T19:30:00.000Z",
"2025-04-12T21:00:00.000Z"
],
[
"2025-04-19T16:30:00.000Z",
"2025-04-19T18:00:00.000Z"
],
[
"2025-04-19T18:00:00.000Z",
"2025-04-19T19:30:00.000Z"
],
[
"2025-04-19T19:30:00.000Z",
"2025-04-19T21:00:00.000Z"
],
[
"2025-04-26T16:30:00.000Z",
"2025-04-26T18:00:00.000Z"
],
[
"2025-04-26T18:00:00.000Z",
"2025-04-26T19:30:00.000Z"
],
[
"2025-04-26T19:30:00.000Z",
"2025-04-26T21:00:00.000Z"
],
[
"2025-05-03T16:30:00.000Z",
"2025-05-03T18:00:00.000Z"
],
[
"2025-05-03T18:00:00.000Z",
"2025-05-03T19:30:00.000Z"
],
[
"2025-05-03T19:30:00.000Z",
"2025-05-03T21:00:00.000Z"
],
[
"2025-05-10T16:30:00.000Z",
"2025-05-10T18:00:00.000Z"
],
[
"2025-05-10T18:00:00.000Z",
"2025-05-10T19:30:00.000Z"
],
[
"2025-05-10T19:30:00.000Z",
"2025-05-10T21:00:00.000Z"
],
[
"2025-05-17T16:30:00.000Z",
"2025-05-17T18:00:00.000Z"
],
[
"2025-05-17T18:00:00.000Z",
"2025-05-17T19:30:00.000Z"
],
[
"2025-05-17T19:30:00.000Z",
"2025-05-17T21:00:00.000Z"
],
[
"2025-05-24T16:30:00.000Z",
"2025-05-24T18:00:00.000Z"
],
[
"2025-05-24T18:00:00.000Z",
"2025-05-24T19:30:00.000Z"
],
[
"2025-05-24T19:30:00.000Z",
"2025-05-24T21:00:00.000Z"
],
[
"2025-05-31T16:30:00.000Z",
"2025-05-31T18:00:00.000Z"
],
[
"2025-05-31T18:00:00.000Z",
"2025-05-31T19:30:00.000Z"
],
[
"2025-05-31T19:30:00.000Z",
"2025-05-31T21:00:00.000Z"
],
[
"2025-06-07T16:30:00.000Z",
"2025-06-07T18:00:00.000Z"
],
[
"2025-06-07T18:00:00.000Z",
"2025-06-07T19:30:00.000Z"
],
[
"2025-06-07T19:30:00.000Z",
"2025-06-07T21:00:00.000Z"
],
[
"2025-06-14T16:30:00.000Z",
"2025-06-14T18:00:00.000Z"
],
[
"2025-06-14T18:00:00.000Z",
"2025-06-14T19:30:00.000Z"
],
[
"2025-06-14T19:30:00.000Z",
"2025-06-14T21:00:00.000Z"
],
[
"2025-06-21T16:30:00.000Z",
"2025-06-21T18:00:00.000Z"
],
[
"2025-06-21T18:00:00.000Z",
"2025-06-21T19:30:00.000Z"
],
[
"2025-06-21T19:30:00.000Z",
"2025-06-21T21:00:00.000Z"
],
[
"2025-06-28T16:30:00.000Z",
"2025-06-28T18:00:00.000Z"
],
[
"2025-06-28T18:00:00.000Z",
"2025-06-28T19:30:00.000Z"
],
[
"2025-06-28T19:30:00.000Z",
"2025-06-28T21:00:00.000Z"
],
[
"2025-07-05T16:30:00.000Z",
"2025-07-05T18:00:00.000Z"
],
[
"2025-07-05T18:00:00.000Z",
"2025-07-05T19:30:00.000Z"
],
[
"2025-07-05T19:30:00.000Z",
"2025-07-05T21:00:00.000Z"
],
[
"2025-07-12T16:30:00.000Z",
"2025-07-12T18:00:00.000Z"
],
[
"2025-07-12T18:00:00.000Z",
"2025-07-12T19:30:00.000Z"
],
[
"2025-07-12T19:30:00.000Z",
"2025-07-12T21:00:00.000Z"
],
[
"2025-07-19T16:30:00.000Z",
"2025-07-19T18:00:00.000Z"
],
[
"2025-07-19T18:00:00.000Z",
"2025-07-19T19:30:00.000Z"
],
[
"2025-07-19T19:30:00.000Z",
"2025-07-19T21:00:00.000Z"
],
[
"2025-07-26T16:30:00.000Z",
"2025-07-26T18:00:00.000Z"
],
[
"2025-07-26T18:00:00.000Z",
"2025-07-26T19:30:00.000Z"
],
[
"2025-07-26T19:30:00.000Z",
"2025-07-26T21:00:00.000Z"
],
[
"2025-08-02T16:30:00.000Z",
"2025-08-02T18:00:00.000Z"
],
[
"2025-08-02T18:00:00.000Z",
"2025-08-02T19:30:00.000Z"
],
[
"2025-08-02T19:30:00.000Z",
"2025-08-02T21:00:00.000Z"
],
[
"2025-08-09T16:30:00.000Z",
"2025-08-09T18:00:00.000Z"
],
[
"2025-08-09T18:00:00.000Z",
"2025-08-09T19:30:00.000Z"
],
[
"2025-08-09T19:30:00.000Z",
"2025-08-09T21:00:00.000Z"
],
[
"2025-08-16T16:30:00.000Z",
"2025-08-16T18:00:00.000Z"
],
[
"2025-08-16T18:00:00.000Z",
"2025-08-16T19:30:00.000Z"
],
[
"2025-08-16T19:30:00.000Z",
"2025-08-16T21:00:00.000Z"
],
[
"2025-08-23T16:30:00.000Z",
"2025-08-23T18:00:00.000Z"
],
[
"2025-08-23T18:00:00.000Z",
"2025-08-23T19:30:00.000Z"
],
[
"2025-08-23T19:30:00.000Z",
"2025-08-23T21:00:00.000Z"
],
[
"2025-08-30T16:30:00.000Z",
"2025-08-30T18:00:00.000Z"
],
[
"2025-08-30T18:00:00.000Z",
"2025-08-30T19:30:00.000Z"
],
[
"2025-08-30T19:30:00.000Z",
"2025-08-30T21:00:00.000Z"
],
[
"2025-09-06T16:30:00.000Z",
"2025-09-06T18:00:00.000Z"
],
[
"2025-09-06T18:00:00.000Z",
"2025-09-06T19:30:00.000Z"
],
[
"2025-09-06T19:30:00.000Z",
"2025-09-06T21:00:00.000Z"
],
[
"2025-09-13T16:30:00.000Z",
"2025-09-13T18:00:00.000Z"
],
[
"2025-09-13T18:00:00.000Z",
"2025-09-13T19:30:00.000Z"
],
[
"2025-09-13T19:30:00.000Z",
"2025-09-13T21:00:00.000Z"
],
[
"2025-09-20T16:30:00.000Z",
"2025-09-20T18:00:00.000Z"
],
[
"2025-09-20T18:00:00.000Z",
"2025-09-20T19:30:00.000Z"
],
[
"2025-09-20T19:30:00.000Z",
"2025-09-20T21:00:00.000Z"
],
[
"2025-09-27T16:30:00.000Z",
"2025-09-27T18:00:00.000Z"
],
[
"2025-09-27T18:00:00.000Z",
"2025-09-27T19:30:00.000Z"
],
[
"2025-09-27T19:30:00.000Z",
"2025-09-27T21:00:00.000Z"
],
[
"2025-10-04T16:30:00.000Z",
"2025-10-04T18:00:00.000Z"
],
[
"2025-10-04T18:00:00.000Z",
"2025-10-04T19:30:00.000Z"
],
[
"2025-10-04T19:30:00.000Z",
"2025-10-04T21:00:00.000Z"
],
[
"2025-10-11T16:30:00.000Z",
"2025-10-11T18:00:00.000Z"
],
[
"2025-10-11T18:00:00.000Z",
"2025-10-11T19:30:00.000Z"
],
[
"2025-10-11T19:30:00.000Z",
"2025-10-11T21:00:00.000Z"
],
[
"2025-10-18T16:30:00.000Z",
"2025-10-18T18:00:00.000Z"
],
[
"2025-10-18T18:00:00.000Z",
"2025-10-18T19:30:00.000Z"
],
[
"2025-10-18T19:30:00.000Z",
"2025-10-18T21:00:00.000Z"
],
[
"2025-10-25T16:30:00.000Z",
"2025-10-25T18:00:00.000Z"
],
[
"2025-10-25T18:00:00.000Z",
"2025-10-25T19:30:00.000Z"
],
[
"2025-10-25T19:30:00.000Z",
"2025-10-25T21:00:00.000Z"
],
[
"2025-11-01T16:30:00.000Z",
"2025-11-01T18:00:00.000Z"
],
[
"2025-11-01T18:00:00.000Z",
"2025-11-01T19:30:00.000Z"
],
[
"2025-11-01T19:30:00.000Z",
"2025-11-01T21:00:00.000Z"
],
[
"2025-11-08T16:30:00.000Z",
"2025-11-08T18:00:00.000Z"
],
[
"2025-11-08T18:00:00.000Z",
"2025-11-08T19:30:00.000Z"
],
[
"2025-11-08T19:30:00.000Z",
"2025-11-08T21:00:00.000Z"
],
[
"2025-11-15T16:30:00.000Z",
"2025-11-15T18:00:00.000Z"
],
[
"2025-11-15T18:00:00.000Z",
"2025-11-15T19:30:00.000Z"
],
[
"2025-11-15T19:30:00.000Z",
"2025-11-15T21:00:00.000Z"
],
[
"2025-11-22T16:30:00.000Z",
"2025-11-22T18:00:00.000Z"
],
[
"2025-11-22T18:00:00.000Z",
"2025-11-22T19:30:00.000Z"
],
[
"2025-11-22T19:30:00.000Z",
"2025-11-22T21:00:00.000Z"
],
[
"2025-11-29T16:30:00.000Z",
"2025-11-29T18:00:00.000Z"
],
[
"2025-11-29T18:00:00.000Z",
"2025-11-29T19:30:00.000Z"
],
[
"2025-11-29T19:30:00.000Z",
"2025-11-29T21:00:00.000Z"
],
[
"2025-12-06T16:30:00.000Z",
"2025-12-06T18:00:00.000Z"
],
[
"2025-12-06T18:00:00.000Z",
"2025-12-06T19:30:00.000Z"
],
[
"2025-12-06T19:30:00.000Z",
"2025-12-06T21:00:00.000Z"
],
[
"2025-12-13T16:30:00.000Z",
"2025-12-13T18:00:00.000Z"
],
[
"2025-12-13T18:00:00.000Z",
"2025-12-13T19:30:00.000Z"
],
[
"2025-12-13T19:30:00.000Z",
"2025-12-13T21:00:00.000Z"
],
[
"2025-12-20T16:30:00.000Z",
"2025-12-20T18:00:00.000Z"
],
[
"2025-12-20T18:00:00.000Z",
"2025-12-20T19:30:00.000Z"
],
[
"2025-12-20T19:30:00.000Z",
"2025-12-20T21:00:00.000Z"
],
[
"2025-12-27T16:30:00.000Z",
"2025-12-27T18:00:00.000Z"
],
[
"2025-12-27T18:00:00.000Z",
"2025-12-27T19:30:00.000Z"
],
[
"2025-12-27T19:30:00.000Z",
"2025-12-27T21:00:00.000Z"
],
[
"2026-01-03T16:30:00.000Z",
"2026-01-03T18:00:00.000Z"
],
[
"2026-01-03T18:00:00.000Z",
"2026-01-03T19:30:00.000Z"
],
[
"2026-01-03T19:30:00.000Z",
"2026-01-03T21:00:00.000Z"
],
[
"2026-01-10T16:30:00.000Z",
"2026-01-10T18:00:00.000Z"
],
[
"2026-01-10T18:00:00.000Z",
"2026-01-10T19:30:00.000Z"
],
[
"2026-01-10T19:30:00.000Z",
"2026-01-10T21:00:00.000Z"
],
[
"2026-01-17T16:30:00.000Z",
"2026-01-17T18:00:00.000Z"
],
[
"2026-01-17T18:00:00.000Z",
"2026-01-17T19:30:00.000Z"
],
[
"2026-01-17T19:30:00.000Z",
"2026-01-17T21:00:00.000Z"
],
[
"2026-01-24T16:30:00.000Z",
"2026-01-24T18:00:00.000Z"
],
[
"2026-01-24T18:00:00.000Z",
"2026-01-24T19:30:00.000Z"
],
[
"2026-01-24T19:30:00.000Z",
"2026-01-24T21:00:00.000Z"
],
[
"2026-01-31T16:30:00.000Z",
"2026-01-31T18:00:00.000Z"
],
[
"2026-01-31T18:00:00.000Z",
"2026-01-31T19:30:00.000Z"
],
[
"2026-01-31T19:30:00.000Z",
"2026-01-31T21:00:00.000Z"
],
[
"2026-02-07T16:30:00.000Z",
"2026-02-07T18:00:00.000Z"
],
[
"2026-02-07T18:00:00.000Z",
"2026-02-07T19:30:00.000Z"
],
[
"2026-02-07T19:30:00.000Z",
"2026-02-07T21:00:00.000Z"
],
[
"2026-02-14T16:30:00.000Z",
"2026-02-14T18:00:00.000Z"
],
[
"2026-02-14T18:00:00.000Z",
"2026-02-14T19:30:00.000Z"
],
[
"2026-02-14T19:30:00.000Z",
"2026-02-14T21:00:00.000Z"
],
[
"2026-02-21T16:30:00.000Z",
"2026-02-21T18:00:00.000Z"
],
[
"2026-02-21T18:00:00.000Z",
"2026-02-21T19:30:00.000Z"
],
[
"2026-02-21T19:30:00.000Z",
"2026-02-21T21:00:00.000Z"
],
[
"2026-02-28T16:30:00.000Z",
"2026-02-28T18:00:00.000Z"
],
[
"2026-02-28T18:00:00.000Z",
"2026-02-28T19:30:00.000Z"
],
[
"2026-02-28T19:30:00.000Z",
"2026-02-28T21:00:00.000Z"
],
[
"2026-03-07T16:30:00.000Z",
"2026-03-07T18:00:00.000Z"
],
[
"2026-03-07T18:00:00.000Z",
"2026-03-07T19:30:00.000Z"
],
[
"2026-03-07T19:30:00.000Z",
"2026-03-07T21:00:00.000Z"
],
[
"2026-03-14T16:30:00.000Z",
"2026-03-14T18:00:00.000Z"
],
[
"2026-03-14T18:00:00.000Z",
"2026-03-14T19:30:00.000Z"
],
[
"2026-03-14T19:30:00.000Z",
"2026-03-14T21:00:00.000Z"
],
[
"2026-03-21T16:30:00.000Z",
"2026-03-21T18:00:00.000Z"
],
[
"2026-03-21T18:00:00.000Z",
"2026-03-21T19:30:00.000Z"
],
[
"2026-03-21T19:30:00.000Z",
"2026-03-21T21:00:00.000Z"
],
[
"2026-03-28T16:30:00.000Z",
"2026-03-28T18:00:00.000Z"
],
[
"2026-03-28T18:00:00.000Z",
"2026-03-28T19:30:00.000Z"
],
[
"2026-03-28T19:30:00.000Z",
"2026-03-28T21:00:00.000Z"
]
]
}
]
},
"additionalFields": {}
},
{
"type": "entity",
"marker": "tickets",
"position": 2,
"settings": {},
"isVisible": true,
"listTitles": [],
"validators": {
"requiredValidator": {
"strict": true
}
},
"initialValue": null,
"localizeInfos": {
"title": "Tickets"
},
"additionalFields": {}
}
]
},
{
"id": 10,
"attributeSetId": 15,
"type": "data",
"localizeInfos": {
"title": "Spam form",
"titleForSite": "",
"successMessage": "",
"unsuccessMessage": "",
"urlAddress": "",
"database": "0",
"script": "0"
},
"version": 0,
"position": 10,
"identifier": "spam_form",
"processingType": "script",
"templateId": null,
"attributes": [
{
"type": "string",
"marker": "first_name",
"position": 1,
"settings": {},
"isVisible": true,
"listTitles": [],
"validators": {
"requiredValidator": {
"strict": true
}
},
"initialValue": null,
"localizeInfos": {
"title": "First name"
},
"additionalFields": {}
},
{
"type": "string",
"marker": "surname",
"position": 2,
"settings": {},
"isVisible": true,
"listTitles": [],
"validators": {
"stringInspectionValidator": {
"stringMax": 0,
"stringMin": 0,
"stringLength": 0
}
},
"initialValue": null,
"localizeInfos": {
"title": "Surname"
},
"additionalFields": {}
},
{
"type": "spam",
"marker": "spam",
"position": 3,
"settings": {
"captcha": {
"key": "6LenQZAsAAAAAF5EGcFYz_IbyV7l2_4NGgiCiP6e",
"domainNames": [
"localhost"
]
}
},
"isVisible": true,
"listTitles": [],
"validators": {},
"initialValue": null,
"localizeInfos": {
"title": "You're not a robot?"
},
"additionalFields": {}
}
]
}
],
"total": 10
}
4. Access form fields
Example:
forms.items.forEach(form => {
const identifier = form.identifier; // "contact_us", "reg", "schedule", ...
const title = form.localizeInfos?.title;
const type = form.type; // "data" | "order" | "sing_in_up"
const fields = form.attributes; // array of form fields
console.log(identifier, title, type, fields);
});
Result:
{
"identifier": "spam_form",
"title": "Spam form",
"type": "data",
"fields": [
{
"type": "string",
"marker": "first_name",
"position": 1,
"settings": {},
"isVisible": true,
"listTitles": [],
"validators": {
"requiredValidator": {
"strict": true
}
},
"initialValue": null,
"localizeInfos": {
"title": "First name"
},
"additionalFields": {}
},
{
"type": "string",
"marker": "surname",
"position": 2,
"settings": {},
"isVisible": true,
"listTitles": [],
"validators": {
"stringInspectionValidator": {
"stringMax": 0,
"stringMin": 0,
"stringLength": 0
}
},
"initialValue": null,
"localizeInfos": {
"title": "Surname"
},
"additionalFields": {}
},
{
"type": "spam",
"marker": "spam",
"position": 3,
"settings": {
"captcha": {
"key": "6LenQZAsAAAAAF5EGcFYz_IbyV7l2_4NGgiCiP6e",
"domainNames": [
"localhost"
]
}
},
"isVisible": true,
"listTitles": [],
"validators": {},
"initialValue": null,
"localizeInfos": {
"title": "You're not a robot?"
},
"additionalFields": {}
}
]
}
Final example
// 1. Import defineOneEntry from SDK and define PROJECT_URL and APP_TOKEN
import { defineOneEntry } from 'oneentry';
const PROJECT_URL = 'your-project-url';
const APP_TOKEN = 'your-app-token';
// 2. Creating an API client
const { Forms } = defineOneEntry(PROJECT_URL, {
token: APP_TOKEN,
});
// 3. Get all forms
const forms = await Forms.getAllForms('en_US');
if ('statusCode' in forms) {
throw new Error(forms.message);
}
// 4. Access form fields
forms.items.forEach(form => {
const identifier = form.identifier; // "contact_us", "reg", "schedule", ...
const title = form.localizeInfos?.title;
const type = form.type; // "data" | "order" | "sing_in_up"
const fields = form.attributes; // array of form fields
console.log(identifier, title, type, fields);
});