MENU navbar-image

Introduction

This documentation aims to provide all the information you need to work with our API.

Base URL

https://odp.bambzi.com

Authenticating requests

Authenticate requests to this API's endpoints by sending an Authorization header with the value "Bearer YOUR_AUTH_KEY".

All authenticated endpoints are marked with a requires authentication badge in the documentation below.

You can generate a token by connecting on your Admin Interface with your credentials. Then click on Personal Access Token from the settings menu. By clicking on New Personal Access Token you will be provided an access token.

Endpoints

GET api/user

requires authentication

Example request:
curl --request GET \
    --get "https://odp.bambzi.com/api/user" \
    --header "Authorization: Bearer YOUR_AUTH_KEY" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json"
const url = new URL(
    "https://odp.bambzi.com/api/user"
);

const headers = {
    "Authorization": "Bearer YOUR_AUTH_KEY",
    "Content-Type": "application/json",
    "Accept": "application/json",
};

fetch(url, {
    method: "GET",
    headers,
}).then(response => response.json());
$client = new \GuzzleHttp\Client();
$response = $client->get(
    'https://odp.bambzi.com/api/user',
    [
        'headers' => [
            'Authorization' => 'Bearer YOUR_AUTH_KEY',
            'Content-Type' => 'application/json',
            'Accept' => 'application/json',
        ],
    ]
);
$body = $response->getBody();
print_r(json_decode((string) $body));

Example response (200):

Show headers
cache-control: no-cache, private
content-type: application/json
x-ratelimit-limit: 60
x-ratelimit-remaining: 59
access-control-allow-origin: *
 

{
    "id": 7,
    "name": "Support Bambzi",
    "email": "[email protected]",
    "email_verified_at": null,
    "created_at": "2022-02-03T15:29:05.000000Z",
    "updated_at": "2022-03-26T13:55:44.000000Z"
}
 

Request      

GET api/user

Display a listing of the tours.

requires authentication

This endpoint will allow you to get a list of every tour. The result are paginated up to 15 elements per page.

Example request:
curl --request GET \
    --get "https://odp.bambzi.com/api/tour_data?page=13" \
    --header "Authorization: Bearer YOUR_AUTH_KEY" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json"
const url = new URL(
    "https://odp.bambzi.com/api/tour_data"
);

const params = {
    "page": "13",
};
Object.keys(params)
    .forEach(key => url.searchParams.append(key, params[key]));

const headers = {
    "Authorization": "Bearer YOUR_AUTH_KEY",
    "Content-Type": "application/json",
    "Accept": "application/json",
};

fetch(url, {
    method: "GET",
    headers,
}).then(response => response.json());
$client = new \GuzzleHttp\Client();
$response = $client->get(
    'https://odp.bambzi.com/api/tour_data',
    [
        'headers' => [
            'Authorization' => 'Bearer YOUR_AUTH_KEY',
            'Content-Type' => 'application/json',
            'Accept' => 'application/json',
        ],
        'query' => [
            'page'=> '13',
        ],
    ]
);
$body = $response->getBody();
print_r(json_decode((string) $body));

Example response (200):

Show headers
cache-control: no-cache, private
content-type: application/json
x-ratelimit-limit: 60
x-ratelimit-remaining: 58
access-control-allow-origin: *
 

{
    "data": [
        {
            "id": 302,
            "date": "2022-10-28T06:29:27.000000Z"
        },
        {
            "id": 301,
            "date": "2022-10-27T07:50:58.000000Z"
        },
        {
            "id": 300,
            "date": "2022-10-26T06:35:53.000000Z"
        },
        {
            "id": 299,
            "date": "2022-10-25T07:54:01.000000Z"
        },
        {
            "id": 298,
            "date": "2022-10-24T08:43:04.000000Z"
        },
        {
            "id": 297,
            "date": "2022-10-21T07:50:09.000000Z"
        },
        {
            "id": 296,
            "date": "2022-10-21T06:32:51.000000Z"
        },
        {
            "id": 295,
            "date": "2022-10-20T10:03:24.000000Z"
        },
        {
            "id": 294,
            "date": "2022-10-20T07:42:20.000000Z"
        },
        {
            "id": 293,
            "date": "2022-10-19T09:41:06.000000Z"
        },
        {
            "id": 292,
            "date": "2022-10-19T07:46:07.000000Z"
        },
        {
            "id": 291,
            "date": "2022-10-18T08:43:44.000000Z"
        },
        {
            "id": 290,
            "date": "2022-10-18T05:24:48.000000Z"
        },
        {
            "id": 289,
            "date": "2022-10-17T10:16:00.000000Z"
        },
        {
            "id": 288,
            "date": "2022-10-17T08:31:59.000000Z"
        }
    ],
    "links": {
        "first": "https://odp.bambzi.com/api/tour_data?page=1",
        "last": "https://odp.bambzi.com/api/tour_data?page=30",
        "prev": "https://odp.bambzi.com/api/tour_data?page=12",
        "next": "https://odp.bambzi.com/api/tour_data?page=14"
    },
    "meta": {
        "current_page": 13,
        "from": 181,
        "last_page": 30,
        "links": [
            {
                "url": "https://odp.bambzi.com/api/tour_data?page=12",
                "label": "« Previous",
                "active": false
            },
            {
                "url": "https://odp.bambzi.com/api/tour_data?page=1",
                "label": "1",
                "active": false
            },
            {
                "url": "https://odp.bambzi.com/api/tour_data?page=2",
                "label": "2",
                "active": false
            },
            {
                "url": null,
                "label": "...",
                "active": false
            },
            {
                "url": "https://odp.bambzi.com/api/tour_data?page=10",
                "label": "10",
                "active": false
            },
            {
                "url": "https://odp.bambzi.com/api/tour_data?page=11",
                "label": "11",
                "active": false
            },
            {
                "url": "https://odp.bambzi.com/api/tour_data?page=12",
                "label": "12",
                "active": false
            },
            {
                "url": "https://odp.bambzi.com/api/tour_data?page=13",
                "label": "13",
                "active": true
            },
            {
                "url": "https://odp.bambzi.com/api/tour_data?page=14",
                "label": "14",
                "active": false
            },
            {
                "url": "https://odp.bambzi.com/api/tour_data?page=15",
                "label": "15",
                "active": false
            },
            {
                "url": "https://odp.bambzi.com/api/tour_data?page=16",
                "label": "16",
                "active": false
            },
            {
                "url": null,
                "label": "...",
                "active": false
            },
            {
                "url": "https://odp.bambzi.com/api/tour_data?page=29",
                "label": "29",
                "active": false
            },
            {
                "url": "https://odp.bambzi.com/api/tour_data?page=30",
                "label": "30",
                "active": false
            },
            {
                "url": "https://odp.bambzi.com/api/tour_data?page=14",
                "label": "Next »",
                "active": false
            }
        ],
        "path": "https://odp.bambzi.com/api/tour_data",
        "per_page": 15,
        "to": 195,
        "total": 440
    }
}
 

Request      

GET api/tour_data

Query Parameters

page  integer optional  

The page number to be shown.

Display a tour and all its data related.

requires authentication

Such as :

Example request:
curl --request GET \
    --get "https://odp.bambzi.com/api/tour_data/31" \
    --header "Authorization: Bearer YOUR_AUTH_KEY" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json"
const url = new URL(
    "https://odp.bambzi.com/api/tour_data/31"
);

const headers = {
    "Authorization": "Bearer YOUR_AUTH_KEY",
    "Content-Type": "application/json",
    "Accept": "application/json",
};

fetch(url, {
    method: "GET",
    headers,
}).then(response => response.json());
$client = new \GuzzleHttp\Client();
$response = $client->get(
    'https://odp.bambzi.com/api/tour_data/31',
    [
        'headers' => [
            'Authorization' => 'Bearer YOUR_AUTH_KEY',
            'Content-Type' => 'application/json',
            'Accept' => 'application/json',
        ],
    ]
);
$body = $response->getBody();
print_r(json_decode((string) $body));

Example response (200):

Show headers
cache-control: no-cache, private
content-type: application/json
x-ratelimit-limit: 60
x-ratelimit-remaining: 57
access-control-allow-origin: *
 

{
    "data": {
        "id": 31,
        "tour_id": 14,
        "date": "2022-02-09T08:24:47.000000Z",
        "state": 3,
        "created_at": "2022-02-09T07:24:47.000000Z",
        "updated_at": "2022-02-09T07:27:51.000000Z",
        "nb_issues": 2,
        "nb_bad_values": 0,
        "nb_comments": 2,
        "task_data": [
            {
                "id": 7718,
                "user_id": 2,
                "tour_data_id": 31,
                "task_id": 70,
                "check_value": null,
                "numeric_value": null,
                "comment": null,
                "has_error": 0,
                "created_at": null,
                "updated_at": null,
                "task": {
                    "id": 70,
                    "task_category_id": 44,
                    "label": null,
                    "smarttags": null,
                    "state": 1,
                    "profile_type": 4,
                    "check_type": 1,
                    "min_value": null,
                    "max_value": null,
                    "rrule": null,
                    "created_at": "2022-01-09T21:55:36.000000Z",
                    "updated_at": "2022-01-09T22:36:44.000000Z",
                    "task_category": {
                        "id": 44,
                        "parent_id": 43,
                        "name": "F4 ELIS",
                        "instructions": null,
                        "created_at": "2022-01-09T21:55:36.000000Z",
                        "updated_at": "2022-01-09T21:55:36.000000Z"
                    }
                }
            },
            {
                "id": 7719,
                "user_id": 2,
                "tour_data_id": 31,
                "task_id": 71,
                "check_value": null,
                "numeric_value": null,
                "comment": null,
                "has_error": 0,
                "created_at": null,
                "updated_at": null,
                "task": {
                    "id": 71,
                    "task_category_id": 44,
                    "label": null,
                    "smarttags": null,
                    "state": 1,
                    "profile_type": 4,
                    "check_type": 4,
                    "min_value": null,
                    "max_value": null,
                    "rrule": null,
                    "created_at": "2022-01-09T21:55:36.000000Z",
                    "updated_at": "2022-01-09T21:55:36.000000Z",
                    "task_category": {
                        "id": 44,
                        "parent_id": 43,
                        "name": "F4 ELIS",
                        "instructions": null,
                        "created_at": "2022-01-09T21:55:36.000000Z",
                        "updated_at": "2022-01-09T21:55:36.000000Z"
                    }
                }
            },
            {
                "id": 7720,
                "user_id": 2,
                "tour_data_id": 31,
                "task_id": 72,
                "check_value": null,
                "numeric_value": null,
                "comment": null,
                "has_error": 0,
                "created_at": null,
                "updated_at": null,
                "task": {
                    "id": 72,
                    "task_category_id": 44,
                    "label": null,
                    "smarttags": null,
                    "state": 1,
                    "profile_type": 4,
                    "check_type": 5,
                    "min_value": null,
                    "max_value": null,
                    "rrule": null,
                    "created_at": "2022-01-09T21:55:36.000000Z",
                    "updated_at": "2022-01-09T21:55:36.000000Z",
                    "task_category": {
                        "id": 44,
                        "parent_id": 43,
                        "name": "F4 ELIS",
                        "instructions": null,
                        "created_at": "2022-01-09T21:55:36.000000Z",
                        "updated_at": "2022-01-09T21:55:36.000000Z"
                    }
                }
            },
            {
                "id": 7721,
                "user_id": 2,
                "tour_data_id": 31,
                "task_id": 73,
                "check_value": null,
                "numeric_value": null,
                "comment": null,
                "has_error": 0,
                "created_at": null,
                "updated_at": null,
                "task": {
                    "id": 73,
                    "task_category_id": 45,
                    "label": null,
                    "smarttags": null,
                    "state": 1,
                    "profile_type": 4,
                    "check_type": 1,
                    "min_value": null,
                    "max_value": null,
                    "rrule": null,
                    "created_at": "2022-01-09T21:55:36.000000Z",
                    "updated_at": "2022-01-09T21:55:36.000000Z",
                    "task_category": {
                        "id": 45,
                        "parent_id": 43,
                        "name": "F1 ST Microelectronics 6'",
                        "instructions": null,
                        "created_at": "2022-01-09T21:55:36.000000Z",
                        "updated_at": "2022-01-09T21:55:36.000000Z"
                    }
                }
            },
            {
                "id": 7722,
                "user_id": 2,
                "tour_data_id": 31,
                "task_id": 74,
                "check_value": null,
                "numeric_value": null,
                "comment": null,
                "has_error": 0,
                "created_at": null,
                "updated_at": null,
                "task": {
                    "id": 74,
                    "task_category_id": 45,
                    "label": null,
                    "smarttags": null,
                    "state": 1,
                    "profile_type": 4,
                    "check_type": 4,
                    "min_value": null,
                    "max_value": null,
                    "rrule": null,
                    "created_at": "2022-01-09T21:55:36.000000Z",
                    "updated_at": "2022-01-09T21:55:36.000000Z",
                    "task_category": {
                        "id": 45,
                        "parent_id": 43,
                        "name": "F1 ST Microelectronics 6'",
                        "instructions": null,
                        "created_at": "2022-01-09T21:55:36.000000Z",
                        "updated_at": "2022-01-09T21:55:36.000000Z"
                    }
                }
            },
            {
                "id": 7723,
                "user_id": 2,
                "tour_data_id": 31,
                "task_id": 75,
                "check_value": null,
                "numeric_value": null,
                "comment": null,
                "has_error": 0,
                "created_at": null,
                "updated_at": null,
                "task": {
                    "id": 75,
                    "task_category_id": 45,
                    "label": null,
                    "smarttags": null,
                    "state": 1,
                    "profile_type": 4,
                    "check_type": 5,
                    "min_value": null,
                    "max_value": null,
                    "rrule": null,
                    "created_at": "2022-01-09T21:55:36.000000Z",
                    "updated_at": "2022-01-09T21:55:36.000000Z",
                    "task_category": {
                        "id": 45,
                        "parent_id": 43,
                        "name": "F1 ST Microelectronics 6'",
                        "instructions": null,
                        "created_at": "2022-01-09T21:55:36.000000Z",
                        "updated_at": "2022-01-09T21:55:36.000000Z"
                    }
                }
            },
            {
                "id": 7724,
                "user_id": 2,
                "tour_data_id": 31,
                "task_id": 76,
                "check_value": null,
                "numeric_value": null,
                "comment": null,
                "has_error": 0,
                "created_at": null,
                "updated_at": null,
                "task": {
                    "id": 76,
                    "task_category_id": 46,
                    "label": null,
                    "smarttags": null,
                    "state": 1,
                    "profile_type": 4,
                    "check_type": 1,
                    "min_value": null,
                    "max_value": null,
                    "rrule": null,
                    "created_at": "2022-01-09T21:55:36.000000Z",
                    "updated_at": "2022-01-09T21:55:36.000000Z",
                    "task_category": {
                        "id": 46,
                        "parent_id": 43,
                        "name": "F1 ST Microelectronics 8'",
                        "instructions": null,
                        "created_at": "2022-01-09T21:55:36.000000Z",
                        "updated_at": "2022-01-09T21:55:36.000000Z"
                    }
                }
            },
            {
                "id": 7725,
                "user_id": 2,
                "tour_data_id": 31,
                "task_id": 77,
                "check_value": null,
                "numeric_value": null,
                "comment": null,
                "has_error": 0,
                "created_at": null,
                "updated_at": null,
                "task": {
                    "id": 77,
                    "task_category_id": 46,
                    "label": null,
                    "smarttags": null,
                    "state": 1,
                    "profile_type": 4,
                    "check_type": 4,
                    "min_value": null,
                    "max_value": null,
                    "rrule": null,
                    "created_at": "2022-01-09T21:55:36.000000Z",
                    "updated_at": "2022-01-09T21:55:36.000000Z",
                    "task_category": {
                        "id": 46,
                        "parent_id": 43,
                        "name": "F1 ST Microelectronics 8'",
                        "instructions": null,
                        "created_at": "2022-01-09T21:55:36.000000Z",
                        "updated_at": "2022-01-09T21:55:36.000000Z"
                    }
                }
            },
            {
                "id": 7726,
                "user_id": 2,
                "tour_data_id": 31,
                "task_id": 78,
                "check_value": null,
                "numeric_value": null,
                "comment": null,
                "has_error": 0,
                "created_at": null,
                "updated_at": null,
                "task": {
                    "id": 78,
                    "task_category_id": 46,
                    "label": null,
                    "smarttags": null,
                    "state": 1,
                    "profile_type": 4,
                    "check_type": 5,
                    "min_value": null,
                    "max_value": null,
                    "rrule": null,
                    "created_at": "2022-01-09T21:55:36.000000Z",
                    "updated_at": "2022-01-09T21:55:36.000000Z",
                    "task_category": {
                        "id": 46,
                        "parent_id": 43,
                        "name": "F1 ST Microelectronics 8'",
                        "instructions": null,
                        "created_at": "2022-01-09T21:55:36.000000Z",
                        "updated_at": "2022-01-09T21:55:36.000000Z"
                    }
                }
            },
            {
                "id": 7727,
                "user_id": 2,
                "tour_data_id": 31,
                "task_id": 88,
                "check_value": null,
                "numeric_value": null,
                "comment": null,
                "has_error": 0,
                "created_at": null,
                "updated_at": null,
                "task": {
                    "id": 88,
                    "task_category_id": 50,
                    "label": null,
                    "smarttags": null,
                    "state": 1,
                    "profile_type": 4,
                    "check_type": 1,
                    "min_value": null,
                    "max_value": null,
                    "rrule": null,
                    "created_at": "2022-01-09T21:55:36.000000Z",
                    "updated_at": "2022-01-09T21:55:36.000000Z",
                    "task_category": {
                        "id": 50,
                        "parent_id": 43,
                        "name": "F5 ST Microelectronics 8'",
                        "instructions": null,
                        "created_at": "2022-01-09T21:55:36.000000Z",
                        "updated_at": "2022-01-09T21:55:36.000000Z"
                    }
                }
            },
            {
                "id": 7728,
                "user_id": 2,
                "tour_data_id": 31,
                "task_id": 89,
                "check_value": null,
                "numeric_value": null,
                "comment": null,
                "has_error": 0,
                "created_at": null,
                "updated_at": null,
                "task": {
                    "id": 89,
                    "task_category_id": 50,
                    "label": null,
                    "smarttags": null,
                    "state": 1,
                    "profile_type": 4,
                    "check_type": 4,
                    "min_value": null,
                    "max_value": null,
                    "rrule": null,
                    "created_at": "2022-01-09T21:55:36.000000Z",
                    "updated_at": "2022-01-09T21:55:36.000000Z",
                    "task_category": {
                        "id": 50,
                        "parent_id": 43,
                        "name": "F5 ST Microelectronics 8'",
                        "instructions": null,
                        "created_at": "2022-01-09T21:55:36.000000Z",
                        "updated_at": "2022-01-09T21:55:36.000000Z"
                    }
                }
            },
            {
                "id": 7729,
                "user_id": 2,
                "tour_data_id": 31,
                "task_id": 90,
                "check_value": null,
                "numeric_value": null,
                "comment": null,
                "has_error": 0,
                "created_at": null,
                "updated_at": null,
                "task": {
                    "id": 90,
                    "task_category_id": 50,
                    "label": null,
                    "smarttags": null,
                    "state": 1,
                    "profile_type": 4,
                    "check_type": 5,
                    "min_value": null,
                    "max_value": null,
                    "rrule": null,
                    "created_at": "2022-01-09T21:55:36.000000Z",
                    "updated_at": "2022-01-09T21:55:36.000000Z",
                    "task_category": {
                        "id": 50,
                        "parent_id": 43,
                        "name": "F5 ST Microelectronics 8'",
                        "instructions": null,
                        "created_at": "2022-01-09T21:55:36.000000Z",
                        "updated_at": "2022-01-09T21:55:36.000000Z"
                    }
                }
            },
            {
                "id": 7730,
                "user_id": 2,
                "tour_data_id": 31,
                "task_id": 85,
                "check_value": null,
                "numeric_value": null,
                "comment": null,
                "has_error": 0,
                "created_at": null,
                "updated_at": null,
                "task": {
                    "id": 85,
                    "task_category_id": 49,
                    "label": null,
                    "smarttags": null,
                    "state": 1,
                    "profile_type": 4,
                    "check_type": 1,
                    "min_value": null,
                    "max_value": null,
                    "rrule": null,
                    "created_at": "2022-01-09T21:55:36.000000Z",
                    "updated_at": "2022-01-09T21:55:36.000000Z",
                    "task_category": {
                        "id": 49,
                        "parent_id": 43,
                        "name": "F1 SunPartner/Garmin",
                        "instructions": null,
                        "created_at": "2022-01-09T21:55:36.000000Z",
                        "updated_at": "2022-01-09T21:55:36.000000Z"
                    }
                }
            },
            {
                "id": 7731,
                "user_id": 2,
                "tour_data_id": 31,
                "task_id": 86,
                "check_value": null,
                "numeric_value": null,
                "comment": null,
                "has_error": 0,
                "created_at": null,
                "updated_at": null,
                "task": {
                    "id": 86,
                    "task_category_id": 49,
                    "label": null,
                    "smarttags": null,
                    "state": 1,
                    "profile_type": 4,
                    "check_type": 4,
                    "min_value": null,
                    "max_value": null,
                    "rrule": null,
                    "created_at": "2022-01-09T21:55:36.000000Z",
                    "updated_at": "2022-01-09T21:55:36.000000Z",
                    "task_category": {
                        "id": 49,
                        "parent_id": 43,
                        "name": "F1 SunPartner/Garmin",
                        "instructions": null,
                        "created_at": "2022-01-09T21:55:36.000000Z",
                        "updated_at": "2022-01-09T21:55:36.000000Z"
                    }
                }
            },
            {
                "id": 7732,
                "user_id": 2,
                "tour_data_id": 31,
                "task_id": 87,
                "check_value": null,
                "numeric_value": null,
                "comment": null,
                "has_error": 0,
                "created_at": null,
                "updated_at": null,
                "task": {
                    "id": 87,
                    "task_category_id": 49,
                    "label": null,
                    "smarttags": null,
                    "state": 1,
                    "profile_type": 4,
                    "check_type": 5,
                    "min_value": null,
                    "max_value": null,
                    "rrule": null,
                    "created_at": "2022-01-09T21:55:36.000000Z",
                    "updated_at": "2022-01-09T21:55:36.000000Z",
                    "task_category": {
                        "id": 49,
                        "parent_id": 43,
                        "name": "F1 SunPartner/Garmin",
                        "instructions": null,
                        "created_at": "2022-01-09T21:55:36.000000Z",
                        "updated_at": "2022-01-09T21:55:36.000000Z"
                    }
                }
            },
            {
                "id": 7733,
                "user_id": 2,
                "tour_data_id": 31,
                "task_id": 79,
                "check_value": null,
                "numeric_value": null,
                "comment": null,
                "has_error": 0,
                "created_at": null,
                "updated_at": null,
                "task": {
                    "id": 79,
                    "task_category_id": 47,
                    "label": null,
                    "smarttags": null,
                    "state": 1,
                    "profile_type": 4,
                    "check_type": 1,
                    "min_value": null,
                    "max_value": null,
                    "rrule": null,
                    "created_at": "2022-01-09T21:55:36.000000Z",
                    "updated_at": "2022-01-09T21:55:36.000000Z",
                    "task_category": {
                        "id": 47,
                        "parent_id": 43,
                        "name": "F1 ST Microelectronics 8' bis",
                        "instructions": null,
                        "created_at": "2022-01-09T21:55:36.000000Z",
                        "updated_at": "2022-01-09T21:55:36.000000Z"
                    }
                }
            },
            {
                "id": 7734,
                "user_id": 2,
                "tour_data_id": 31,
                "task_id": 80,
                "check_value": null,
                "numeric_value": null,
                "comment": null,
                "has_error": 0,
                "created_at": null,
                "updated_at": null,
                "task": {
                    "id": 80,
                    "task_category_id": 47,
                    "label": null,
                    "smarttags": null,
                    "state": 1,
                    "profile_type": 4,
                    "check_type": 4,
                    "min_value": null,
                    "max_value": null,
                    "rrule": null,
                    "created_at": "2022-01-09T21:55:36.000000Z",
                    "updated_at": "2022-01-09T21:55:36.000000Z",
                    "task_category": {
                        "id": 47,
                        "parent_id": 43,
                        "name": "F1 ST Microelectronics 8' bis",
                        "instructions": null,
                        "created_at": "2022-01-09T21:55:36.000000Z",
                        "updated_at": "2022-01-09T21:55:36.000000Z"
                    }
                }
            },
            {
                "id": 7735,
                "user_id": 2,
                "tour_data_id": 31,
                "task_id": 81,
                "check_value": null,
                "numeric_value": null,
                "comment": null,
                "has_error": 0,
                "created_at": null,
                "updated_at": null,
                "task": {
                    "id": 81,
                    "task_category_id": 47,
                    "label": null,
                    "smarttags": null,
                    "state": 1,
                    "profile_type": 4,
                    "check_type": 5,
                    "min_value": null,
                    "max_value": null,
                    "rrule": null,
                    "created_at": "2022-01-09T21:55:36.000000Z",
                    "updated_at": "2022-01-09T21:55:36.000000Z",
                    "task_category": {
                        "id": 47,
                        "parent_id": 43,
                        "name": "F1 ST Microelectronics 8' bis",
                        "instructions": null,
                        "created_at": "2022-01-09T21:55:36.000000Z",
                        "updated_at": "2022-01-09T21:55:36.000000Z"
                    }
                }
            },
            {
                "id": 7736,
                "user_id": 2,
                "tour_data_id": 31,
                "task_id": 94,
                "check_value": null,
                "numeric_value": null,
                "comment": null,
                "has_error": 0,
                "created_at": null,
                "updated_at": null,
                "task": {
                    "id": 94,
                    "task_category_id": 52,
                    "label": null,
                    "smarttags": null,
                    "state": 1,
                    "profile_type": 4,
                    "check_type": 1,
                    "min_value": null,
                    "max_value": null,
                    "rrule": null,
                    "created_at": "2022-01-09T21:55:36.000000Z",
                    "updated_at": "2022-01-09T21:55:36.000000Z",
                    "task_category": {
                        "id": 52,
                        "parent_id": 43,
                        "name": "F2 ST Micro 8'",
                        "instructions": null,
                        "created_at": "2022-01-09T21:55:36.000000Z",
                        "updated_at": "2022-01-09T21:55:36.000000Z"
                    }
                }
            },
            {
                "id": 7737,
                "user_id": 2,
                "tour_data_id": 31,
                "task_id": 95,
                "check_value": null,
                "numeric_value": null,
                "comment": null,
                "has_error": 0,
                "created_at": null,
                "updated_at": null,
                "task": {
                    "id": 95,
                    "task_category_id": 52,
                    "label": null,
                    "smarttags": null,
                    "state": 1,
                    "profile_type": 4,
                    "check_type": 4,
                    "min_value": null,
                    "max_value": null,
                    "rrule": null,
                    "created_at": "2022-01-09T21:55:36.000000Z",
                    "updated_at": "2022-01-09T21:55:36.000000Z",
                    "task_category": {
                        "id": 52,
                        "parent_id": 43,
                        "name": "F2 ST Micro 8'",
                        "instructions": null,
                        "created_at": "2022-01-09T21:55:36.000000Z",
                        "updated_at": "2022-01-09T21:55:36.000000Z"
                    }
                }
            },
            {
                "id": 7738,
                "user_id": 2,
                "tour_data_id": 31,
                "task_id": 96,
                "check_value": null,
                "numeric_value": null,
                "comment": null,
                "has_error": 0,
                "created_at": null,
                "updated_at": null,
                "task": {
                    "id": 96,
                    "task_category_id": 52,
                    "label": null,
                    "smarttags": null,
                    "state": 1,
                    "profile_type": 4,
                    "check_type": 5,
                    "min_value": null,
                    "max_value": null,
                    "rrule": null,
                    "created_at": "2022-01-09T21:55:36.000000Z",
                    "updated_at": "2022-01-09T21:55:36.000000Z",
                    "task_category": {
                        "id": 52,
                        "parent_id": 43,
                        "name": "F2 ST Micro 8'",
                        "instructions": null,
                        "created_at": "2022-01-09T21:55:36.000000Z",
                        "updated_at": "2022-01-09T21:55:36.000000Z"
                    }
                }
            },
            {
                "id": 7739,
                "user_id": 2,
                "tour_data_id": 31,
                "task_id": 97,
                "check_value": null,
                "numeric_value": null,
                "comment": null,
                "has_error": 0,
                "created_at": null,
                "updated_at": null,
                "task": {
                    "id": 97,
                    "task_category_id": 53,
                    "label": null,
                    "smarttags": null,
                    "state": 1,
                    "profile_type": 4,
                    "check_type": 1,
                    "min_value": null,
                    "max_value": null,
                    "rrule": null,
                    "created_at": "2022-01-09T21:55:36.000000Z",
                    "updated_at": "2022-01-09T21:55:36.000000Z",
                    "task_category": {
                        "id": 53,
                        "parent_id": 43,
                        "name": "F2 Air Liquide",
                        "instructions": null,
                        "created_at": "2022-01-09T21:55:36.000000Z",
                        "updated_at": "2022-01-19T14:16:26.000000Z"
                    }
                }
            },
            {
                "id": 7740,
                "user_id": 2,
                "tour_data_id": 31,
                "task_id": 98,
                "check_value": null,
                "numeric_value": null,
                "comment": null,
                "has_error": 0,
                "created_at": null,
                "updated_at": null,
                "task": {
                    "id": 98,
                    "task_category_id": 53,
                    "label": null,
                    "smarttags": null,
                    "state": 1,
                    "profile_type": 4,
                    "check_type": 4,
                    "min_value": null,
                    "max_value": null,
                    "rrule": null,
                    "created_at": "2022-01-09T21:55:36.000000Z",
                    "updated_at": "2022-01-09T21:55:36.000000Z",
                    "task_category": {
                        "id": 53,
                        "parent_id": 43,
                        "name": "F2 Air Liquide",
                        "instructions": null,
                        "created_at": "2022-01-09T21:55:36.000000Z",
                        "updated_at": "2022-01-19T14:16:26.000000Z"
                    }
                }
            },
            {
                "id": 7741,
                "user_id": 2,
                "tour_data_id": 31,
                "task_id": 99,
                "check_value": null,
                "numeric_value": null,
                "comment": null,
                "has_error": 0,
                "created_at": null,
                "updated_at": null,
                "task": {
                    "id": 99,
                    "task_category_id": 53,
                    "label": null,
                    "smarttags": null,
                    "state": 1,
                    "profile_type": 4,
                    "check_type": 5,
                    "min_value": null,
                    "max_value": null,
                    "rrule": null,
                    "created_at": "2022-01-09T21:55:36.000000Z",
                    "updated_at": "2022-01-09T21:55:36.000000Z",
                    "task_category": {
                        "id": 53,
                        "parent_id": 43,
                        "name": "F2 Air Liquide",
                        "instructions": null,
                        "created_at": "2022-01-09T21:55:36.000000Z",
                        "updated_at": "2022-01-19T14:16:26.000000Z"
                    }
                }
            },
            {
                "id": 7742,
                "user_id": 2,
                "tour_data_id": 31,
                "task_id": 106,
                "check_value": null,
                "numeric_value": null,
                "comment": null,
                "has_error": 0,
                "created_at": null,
                "updated_at": null,
                "task": {
                    "id": 106,
                    "task_category_id": 56,
                    "label": null,
                    "smarttags": null,
                    "state": 1,
                    "profile_type": 4,
                    "check_type": 1,
                    "min_value": null,
                    "max_value": null,
                    "rrule": null,
                    "created_at": "2022-01-09T21:55:36.000000Z",
                    "updated_at": "2022-01-09T21:55:36.000000Z",
                    "task_category": {
                        "id": 56,
                        "parent_id": 43,
                        "name": "F3 ST Microelectronics 8'",
                        "instructions": null,
                        "created_at": "2022-01-09T21:55:36.000000Z",
                        "updated_at": "2022-01-09T21:55:36.000000Z"
                    }
                }
            },
            {
                "id": 7743,
                "user_id": 2,
                "tour_data_id": 31,
                "task_id": 107,
                "check_value": null,
                "numeric_value": null,
                "comment": null,
                "has_error": 0,
                "created_at": null,
                "updated_at": null,
                "task": {
                    "id": 107,
                    "task_category_id": 56,
                    "label": null,
                    "smarttags": null,
                    "state": 1,
                    "profile_type": 4,
                    "check_type": 4,
                    "min_value": null,
                    "max_value": null,
                    "rrule": null,
                    "created_at": "2022-01-09T21:55:36.000000Z",
                    "updated_at": "2022-01-09T21:55:36.000000Z",
                    "task_category": {
                        "id": 56,
                        "parent_id": 43,
                        "name": "F3 ST Microelectronics 8'",
                        "instructions": null,
                        "created_at": "2022-01-09T21:55:36.000000Z",
                        "updated_at": "2022-01-09T21:55:36.000000Z"
                    }
                }
            },
            {
                "id": 7744,
                "user_id": 2,
                "tour_data_id": 31,
                "task_id": 108,
                "check_value": null,
                "numeric_value": null,
                "comment": null,
                "has_error": 0,
                "created_at": null,
                "updated_at": null,
                "task": {
                    "id": 108,
                    "task_category_id": 56,
                    "label": null,
                    "smarttags": null,
                    "state": 1,
                    "profile_type": 4,
                    "check_type": 5,
                    "min_value": null,
                    "max_value": null,
                    "rrule": null,
                    "created_at": "2022-01-09T21:55:36.000000Z",
                    "updated_at": "2022-01-09T21:55:36.000000Z",
                    "task_category": {
                        "id": 56,
                        "parent_id": 43,
                        "name": "F3 ST Microelectronics 8'",
                        "instructions": null,
                        "created_at": "2022-01-09T21:55:36.000000Z",
                        "updated_at": "2022-01-09T21:55:36.000000Z"
                    }
                }
            },
            {
                "id": 7745,
                "user_id": 2,
                "tour_data_id": 31,
                "task_id": 103,
                "check_value": null,
                "numeric_value": null,
                "comment": null,
                "has_error": 0,
                "created_at": null,
                "updated_at": null,
                "task": {
                    "id": 103,
                    "task_category_id": 55,
                    "label": null,
                    "smarttags": null,
                    "state": 1,
                    "profile_type": 4,
                    "check_type": 1,
                    "min_value": null,
                    "max_value": null,
                    "rrule": null,
                    "created_at": "2022-01-09T21:55:36.000000Z",
                    "updated_at": "2022-01-09T21:55:36.000000Z",
                    "task_category": {
                        "id": 55,
                        "parent_id": 43,
                        "name": "F3 ST Microelectronics 6'",
                        "instructions": null,
                        "created_at": "2022-01-09T21:55:36.000000Z",
                        "updated_at": "2022-01-09T21:55:36.000000Z"
                    }
                }
            },
            {
                "id": 7746,
                "user_id": 2,
                "tour_data_id": 31,
                "task_id": 104,
                "check_value": null,
                "numeric_value": null,
                "comment": null,
                "has_error": 0,
                "created_at": null,
                "updated_at": null,
                "task": {
                    "id": 104,
                    "task_category_id": 55,
                    "label": null,
                    "smarttags": null,
                    "state": 1,
                    "profile_type": 4,
                    "check_type": 4,
                    "min_value": null,
                    "max_value": null,
                    "rrule": null,
                    "created_at": "2022-01-09T21:55:36.000000Z",
                    "updated_at": "2022-01-09T21:55:36.000000Z",
                    "task_category": {
                        "id": 55,
                        "parent_id": 43,
                        "name": "F3 ST Microelectronics 6'",
                        "instructions": null,
                        "created_at": "2022-01-09T21:55:36.000000Z",
                        "updated_at": "2022-01-09T21:55:36.000000Z"
                    }
                }
            },
            {
                "id": 7747,
                "user_id": 2,
                "tour_data_id": 31,
                "task_id": 105,
                "check_value": null,
                "numeric_value": null,
                "comment": null,
                "has_error": 0,
                "created_at": null,
                "updated_at": null,
                "task": {
                    "id": 105,
                    "task_category_id": 55,
                    "label": null,
                    "smarttags": null,
                    "state": 1,
                    "profile_type": 4,
                    "check_type": 5,
                    "min_value": null,
                    "max_value": null,
                    "rrule": null,
                    "created_at": "2022-01-09T21:55:36.000000Z",
                    "updated_at": "2022-01-09T21:55:36.000000Z",
                    "task_category": {
                        "id": 55,
                        "parent_id": 43,
                        "name": "F3 ST Microelectronics 6'",
                        "instructions": null,
                        "created_at": "2022-01-09T21:55:36.000000Z",
                        "updated_at": "2022-01-09T21:55:36.000000Z"
                    }
                }
            },
            {
                "id": 7748,
                "user_id": 2,
                "tour_data_id": 31,
                "task_id": 112,
                "check_value": 1,
                "numeric_value": null,
                "comment": null,
                "has_error": 0,
                "created_at": null,
                "updated_at": "2022-02-09T07:30:15.000000Z",
                "task": null
            },
            {
                "id": 7749,
                "user_id": 2,
                "tour_data_id": 31,
                "task_id": 110,
                "check_value": 1,
                "numeric_value": null,
                "comment": null,
                "has_error": 0,
                "created_at": null,
                "updated_at": "2022-02-09T07:30:15.000000Z",
                "task": {
                    "id": 110,
                    "task_category_id": 58,
                    "label": "Mode auto",
                    "smarttags": null,
                    "state": 1,
                    "profile_type": 4,
                    "check_type": 2,
                    "min_value": null,
                    "max_value": null,
                    "rrule": null,
                    "created_at": "2022-01-09T21:55:36.000000Z",
                    "updated_at": "2022-01-09T21:55:36.000000Z",
                    "task_category": {
                        "id": 58,
                        "parent_id": 57,
                        "name": "F1 ST8",
                        "instructions": null,
                        "created_at": "2022-01-09T21:55:36.000000Z",
                        "updated_at": "2022-01-09T21:55:36.000000Z"
                    }
                }
            },
            {
                "id": 7750,
                "user_id": 2,
                "tour_data_id": 31,
                "task_id": 111,
                "check_value": 1,
                "numeric_value": null,
                "comment": null,
                "has_error": 0,
                "created_at": null,
                "updated_at": "2022-02-09T07:30:15.000000Z",
                "task": {
                    "id": 111,
                    "task_category_id": 58,
                    "label": "Présence effluent",
                    "smarttags": null,
                    "state": 1,
                    "profile_type": 4,
                    "check_type": 2,
                    "min_value": null,
                    "max_value": null,
                    "rrule": null,
                    "created_at": "2022-01-09T21:55:36.000000Z",
                    "updated_at": "2022-01-09T21:55:36.000000Z",
                    "task_category": {
                        "id": 58,
                        "parent_id": 57,
                        "name": "F1 ST8",
                        "instructions": null,
                        "created_at": "2022-01-09T21:55:36.000000Z",
                        "updated_at": "2022-01-09T21:55:36.000000Z"
                    }
                }
            },
            {
                "id": 7751,
                "user_id": 2,
                "tour_data_id": 31,
                "task_id": 113,
                "check_value": null,
                "numeric_value": null,
                "comment": null,
                "has_error": 0,
                "created_at": null,
                "updated_at": null,
                "task": {
                    "id": 113,
                    "task_category_id": 58,
                    "label": "Fonctionnement groupe froid",
                    "smarttags": null,
                    "state": 1,
                    "profile_type": 4,
                    "check_type": 4,
                    "min_value": null,
                    "max_value": "10.000",
                    "rrule": null,
                    "created_at": "2022-01-09T21:55:36.000000Z",
                    "updated_at": "2022-01-09T21:55:36.000000Z",
                    "task_category": {
                        "id": 58,
                        "parent_id": 57,
                        "name": "F1 ST8",
                        "instructions": null,
                        "created_at": "2022-01-09T21:55:36.000000Z",
                        "updated_at": "2022-01-09T21:55:36.000000Z"
                    }
                }
            },
            {
                "id": 7752,
                "user_id": 2,
                "tour_data_id": 31,
                "task_id": 114,
                "check_value": null,
                "numeric_value": null,
                "comment": null,
                "has_error": 0,
                "created_at": null,
                "updated_at": null,
                "task": {
                    "id": 114,
                    "task_category_id": 58,
                    "label": null,
                    "smarttags": null,
                    "state": 1,
                    "profile_type": 4,
                    "check_type": 5,
                    "min_value": null,
                    "max_value": null,
                    "rrule": null,
                    "created_at": "2022-01-09T21:55:36.000000Z",
                    "updated_at": "2022-01-09T21:55:36.000000Z",
                    "task_category": {
                        "id": 58,
                        "parent_id": 57,
                        "name": "F1 ST8",
                        "instructions": null,
                        "created_at": "2022-01-09T21:55:36.000000Z",
                        "updated_at": "2022-01-09T21:55:36.000000Z"
                    }
                }
            },
            {
                "id": 7753,
                "user_id": 2,
                "tour_data_id": 31,
                "task_id": 124,
                "check_value": 1,
                "numeric_value": null,
                "comment": null,
                "has_error": 0,
                "created_at": null,
                "updated_at": "2022-02-09T07:30:15.000000Z",
                "task": null
            },
            {
                "id": 7754,
                "user_id": 2,
                "tour_data_id": 31,
                "task_id": 122,
                "check_value": 1,
                "numeric_value": null,
                "comment": null,
                "has_error": 0,
                "created_at": null,
                "updated_at": "2022-02-09T07:30:15.000000Z",
                "task": {
                    "id": 122,
                    "task_category_id": 60,
                    "label": "Mode auto",
                    "smarttags": null,
                    "state": 1,
                    "profile_type": 4,
                    "check_type": 2,
                    "min_value": null,
                    "max_value": null,
                    "rrule": null,
                    "created_at": "2022-01-09T21:55:36.000000Z",
                    "updated_at": "2022-01-09T21:55:36.000000Z",
                    "task_category": {
                        "id": 60,
                        "parent_id": 57,
                        "name": "F1 ST6",
                        "instructions": null,
                        "created_at": "2022-01-09T21:55:36.000000Z",
                        "updated_at": "2022-01-09T21:55:36.000000Z"
                    }
                }
            },
            {
                "id": 7755,
                "user_id": 2,
                "tour_data_id": 31,
                "task_id": 123,
                "check_value": 1,
                "numeric_value": null,
                "comment": null,
                "has_error": 0,
                "created_at": null,
                "updated_at": "2022-02-09T07:30:15.000000Z",
                "task": {
                    "id": 123,
                    "task_category_id": 60,
                    "label": "Présence effluent",
                    "smarttags": null,
                    "state": 1,
                    "profile_type": 4,
                    "check_type": 2,
                    "min_value": null,
                    "max_value": null,
                    "rrule": null,
                    "created_at": "2022-01-09T21:55:36.000000Z",
                    "updated_at": "2022-01-09T21:55:36.000000Z",
                    "task_category": {
                        "id": 60,
                        "parent_id": 57,
                        "name": "F1 ST6",
                        "instructions": null,
                        "created_at": "2022-01-09T21:55:36.000000Z",
                        "updated_at": "2022-01-09T21:55:36.000000Z"
                    }
                }
            },
            {
                "id": 7756,
                "user_id": 2,
                "tour_data_id": 31,
                "task_id": 125,
                "check_value": null,
                "numeric_value": null,
                "comment": null,
                "has_error": 0,
                "created_at": null,
                "updated_at": null,
                "task": {
                    "id": 125,
                    "task_category_id": 60,
                    "label": "Fonctionnement groupe froid",
                    "smarttags": null,
                    "state": 1,
                    "profile_type": 4,
                    "check_type": 4,
                    "min_value": null,
                    "max_value": "10.000",
                    "rrule": null,
                    "created_at": "2022-01-09T21:55:36.000000Z",
                    "updated_at": "2022-01-09T21:55:36.000000Z",
                    "task_category": {
                        "id": 60,
                        "parent_id": 57,
                        "name": "F1 ST6",
                        "instructions": null,
                        "created_at": "2022-01-09T21:55:36.000000Z",
                        "updated_at": "2022-01-09T21:55:36.000000Z"
                    }
                }
            },
            {
                "id": 7757,
                "user_id": 2,
                "tour_data_id": 31,
                "task_id": 126,
                "check_value": null,
                "numeric_value": null,
                "comment": null,
                "has_error": 0,
                "created_at": null,
                "updated_at": null,
                "task": {
                    "id": 126,
                    "task_category_id": 60,
                    "label": null,
                    "smarttags": null,
                    "state": 1,
                    "profile_type": 4,
                    "check_type": 5,
                    "min_value": null,
                    "max_value": null,
                    "rrule": null,
                    "created_at": "2022-01-09T21:55:36.000000Z",
                    "updated_at": "2022-01-09T21:55:36.000000Z",
                    "task_category": {
                        "id": 60,
                        "parent_id": 57,
                        "name": "F1 ST6",
                        "instructions": null,
                        "created_at": "2022-01-09T21:55:36.000000Z",
                        "updated_at": "2022-01-09T21:55:36.000000Z"
                    }
                }
            },
            {
                "id": 7758,
                "user_id": 2,
                "tour_data_id": 31,
                "task_id": 136,
                "check_value": 1,
                "numeric_value": null,
                "comment": null,
                "has_error": 0,
                "created_at": null,
                "updated_at": "2022-02-09T07:30:15.000000Z",
                "task": null
            },
            {
                "id": 7759,
                "user_id": 2,
                "tour_data_id": 31,
                "task_id": 134,
                "check_value": 1,
                "numeric_value": null,
                "comment": null,
                "has_error": 0,
                "created_at": null,
                "updated_at": "2022-02-09T07:30:15.000000Z",
                "task": {
                    "id": 134,
                    "task_category_id": 62,
                    "label": "Mode auto",
                    "smarttags": null,
                    "state": 1,
                    "profile_type": 4,
                    "check_type": 2,
                    "min_value": null,
                    "max_value": null,
                    "rrule": null,
                    "created_at": "2022-01-09T21:55:36.000000Z",
                    "updated_at": "2022-01-09T21:55:36.000000Z",
                    "task_category": {
                        "id": 62,
                        "parent_id": 57,
                        "name": "F2 ST8",
                        "instructions": null,
                        "created_at": "2022-01-09T21:55:36.000000Z",
                        "updated_at": "2022-01-09T21:55:36.000000Z"
                    }
                }
            },
            {
                "id": 7760,
                "user_id": 2,
                "tour_data_id": 31,
                "task_id": 135,
                "check_value": 1,
                "numeric_value": null,
                "comment": null,
                "has_error": 0,
                "created_at": null,
                "updated_at": "2022-02-09T07:30:15.000000Z",
                "task": {
                    "id": 135,
                    "task_category_id": 62,
                    "label": "Présence effluent",
                    "smarttags": null,
                    "state": 1,
                    "profile_type": 4,
                    "check_type": 2,
                    "min_value": null,
                    "max_value": null,
                    "rrule": null,
                    "created_at": "2022-01-09T21:55:36.000000Z",
                    "updated_at": "2022-01-09T21:55:36.000000Z",
                    "task_category": {
                        "id": 62,
                        "parent_id": 57,
                        "name": "F2 ST8",
                        "instructions": null,
                        "created_at": "2022-01-09T21:55:36.000000Z",
                        "updated_at": "2022-01-09T21:55:36.000000Z"
                    }
                }
            },
            {
                "id": 7761,
                "user_id": 2,
                "tour_data_id": 31,
                "task_id": 137,
                "check_value": null,
                "numeric_value": null,
                "comment": null,
                "has_error": 0,
                "created_at": null,
                "updated_at": null,
                "task": {
                    "id": 137,
                    "task_category_id": 62,
                    "label": "Fonctionnement groupe froid",
                    "smarttags": null,
                    "state": 1,
                    "profile_type": 4,
                    "check_type": 4,
                    "min_value": null,
                    "max_value": "10.000",
                    "rrule": null,
                    "created_at": "2022-01-09T21:55:36.000000Z",
                    "updated_at": "2022-01-09T21:55:36.000000Z",
                    "task_category": {
                        "id": 62,
                        "parent_id": 57,
                        "name": "F2 ST8",
                        "instructions": null,
                        "created_at": "2022-01-09T21:55:36.000000Z",
                        "updated_at": "2022-01-09T21:55:36.000000Z"
                    }
                }
            },
            {
                "id": 7762,
                "user_id": 2,
                "tour_data_id": 31,
                "task_id": 138,
                "check_value": null,
                "numeric_value": null,
                "comment": null,
                "has_error": 0,
                "created_at": null,
                "updated_at": null,
                "task": {
                    "id": 138,
                    "task_category_id": 62,
                    "label": null,
                    "smarttags": null,
                    "state": 1,
                    "profile_type": 4,
                    "check_type": 5,
                    "min_value": null,
                    "max_value": null,
                    "rrule": null,
                    "created_at": "2022-01-09T21:55:36.000000Z",
                    "updated_at": "2022-01-09T21:55:36.000000Z",
                    "task_category": {
                        "id": 62,
                        "parent_id": 57,
                        "name": "F2 ST8",
                        "instructions": null,
                        "created_at": "2022-01-09T21:55:36.000000Z",
                        "updated_at": "2022-01-09T21:55:36.000000Z"
                    }
                }
            },
            {
                "id": 7763,
                "user_id": 2,
                "tour_data_id": 31,
                "task_id": 142,
                "check_value": 1,
                "numeric_value": null,
                "comment": null,
                "has_error": 0,
                "created_at": null,
                "updated_at": "2022-02-09T07:30:15.000000Z",
                "task": null
            },
            {
                "id": 7764,
                "user_id": 2,
                "tour_data_id": 31,
                "task_id": 140,
                "check_value": 1,
                "numeric_value": null,
                "comment": null,
                "has_error": 0,
                "created_at": null,
                "updated_at": "2022-02-09T07:30:25.000000Z",
                "task": {
                    "id": 140,
                    "task_category_id": 63,
                    "label": "Mode auto",
                    "smarttags": null,
                    "state": 1,
                    "profile_type": 4,
                    "check_type": 2,
                    "min_value": null,
                    "max_value": null,
                    "rrule": null,
                    "created_at": "2022-01-09T21:55:36.000000Z",
                    "updated_at": "2022-01-09T21:55:36.000000Z",
                    "task_category": {
                        "id": 63,
                        "parent_id": 57,
                        "name": "ELIS",
                        "instructions": null,
                        "created_at": "2022-01-09T21:55:36.000000Z",
                        "updated_at": "2022-01-09T21:55:36.000000Z"
                    }
                }
            },
            {
                "id": 7765,
                "user_id": 2,
                "tour_data_id": 31,
                "task_id": 141,
                "check_value": 1,
                "numeric_value": null,
                "comment": null,
                "has_error": 0,
                "created_at": null,
                "updated_at": "2022-02-09T07:30:25.000000Z",
                "task": {
                    "id": 141,
                    "task_category_id": 63,
                    "label": "Présence effluent",
                    "smarttags": null,
                    "state": 1,
                    "profile_type": 4,
                    "check_type": 2,
                    "min_value": null,
                    "max_value": null,
                    "rrule": null,
                    "created_at": "2022-01-09T21:55:36.000000Z",
                    "updated_at": "2022-01-09T21:55:36.000000Z",
                    "task_category": {
                        "id": 63,
                        "parent_id": 57,
                        "name": "ELIS",
                        "instructions": null,
                        "created_at": "2022-01-09T21:55:36.000000Z",
                        "updated_at": "2022-01-09T21:55:36.000000Z"
                    }
                }
            },
            {
                "id": 7766,
                "user_id": 2,
                "tour_data_id": 31,
                "task_id": 143,
                "check_value": null,
                "numeric_value": null,
                "comment": null,
                "has_error": 0,
                "created_at": null,
                "updated_at": null,
                "task": {
                    "id": 143,
                    "task_category_id": 63,
                    "label": "Fonctionnement groupe froid",
                    "smarttags": null,
                    "state": 1,
                    "profile_type": 4,
                    "check_type": 4,
                    "min_value": null,
                    "max_value": "10.000",
                    "rrule": null,
                    "created_at": "2022-01-09T21:55:36.000000Z",
                    "updated_at": "2022-01-09T21:55:36.000000Z",
                    "task_category": {
                        "id": 63,
                        "parent_id": 57,
                        "name": "ELIS",
                        "instructions": null,
                        "created_at": "2022-01-09T21:55:36.000000Z",
                        "updated_at": "2022-01-09T21:55:36.000000Z"
                    }
                }
            },
            {
                "id": 7767,
                "user_id": 2,
                "tour_data_id": 31,
                "task_id": 144,
                "check_value": null,
                "numeric_value": null,
                "comment": null,
                "has_error": 0,
                "created_at": null,
                "updated_at": null,
                "task": {
                    "id": 144,
                    "task_category_id": 63,
                    "label": null,
                    "smarttags": null,
                    "state": 1,
                    "profile_type": 4,
                    "check_type": 5,
                    "min_value": null,
                    "max_value": null,
                    "rrule": null,
                    "created_at": "2022-01-09T21:55:36.000000Z",
                    "updated_at": "2022-01-09T21:55:36.000000Z",
                    "task_category": {
                        "id": 63,
                        "parent_id": 57,
                        "name": "ELIS",
                        "instructions": null,
                        "created_at": "2022-01-09T21:55:36.000000Z",
                        "updated_at": "2022-01-09T21:55:36.000000Z"
                    }
                }
            },
            {
                "id": 7768,
                "user_id": 2,
                "tour_data_id": 31,
                "task_id": 148,
                "check_value": 1,
                "numeric_value": null,
                "comment": null,
                "has_error": 0,
                "created_at": null,
                "updated_at": "2022-02-09T07:30:25.000000Z",
                "task": null
            },
            {
                "id": 7769,
                "user_id": 2,
                "tour_data_id": 31,
                "task_id": 146,
                "check_value": 1,
                "numeric_value": null,
                "comment": null,
                "has_error": 0,
                "created_at": null,
                "updated_at": "2022-02-09T07:30:25.000000Z",
                "task": {
                    "id": 146,
                    "task_category_id": 64,
                    "label": "Mode auto",
                    "smarttags": null,
                    "state": 1,
                    "profile_type": 4,
                    "check_type": 2,
                    "min_value": null,
                    "max_value": null,
                    "rrule": null,
                    "created_at": "2022-01-09T21:55:36.000000Z",
                    "updated_at": "2022-01-09T21:55:36.000000Z",
                    "task_category": {
                        "id": 64,
                        "parent_id": 57,
                        "name": "F3 ST8",
                        "instructions": null,
                        "created_at": "2022-01-09T21:55:36.000000Z",
                        "updated_at": "2022-01-09T21:55:36.000000Z"
                    }
                }
            },
            {
                "id": 7770,
                "user_id": 2,
                "tour_data_id": 31,
                "task_id": 147,
                "check_value": 1,
                "numeric_value": null,
                "comment": null,
                "has_error": 0,
                "created_at": null,
                "updated_at": "2022-02-09T07:30:25.000000Z",
                "task": {
                    "id": 147,
                    "task_category_id": 64,
                    "label": "Présence effluent",
                    "smarttags": null,
                    "state": 1,
                    "profile_type": 4,
                    "check_type": 2,
                    "min_value": null,
                    "max_value": null,
                    "rrule": null,
                    "created_at": "2022-01-09T21:55:36.000000Z",
                    "updated_at": "2022-01-09T21:55:36.000000Z",
                    "task_category": {
                        "id": 64,
                        "parent_id": 57,
                        "name": "F3 ST8",
                        "instructions": null,
                        "created_at": "2022-01-09T21:55:36.000000Z",
                        "updated_at": "2022-01-09T21:55:36.000000Z"
                    }
                }
            },
            {
                "id": 7771,
                "user_id": 2,
                "tour_data_id": 31,
                "task_id": 149,
                "check_value": null,
                "numeric_value": null,
                "comment": null,
                "has_error": 0,
                "created_at": null,
                "updated_at": null,
                "task": {
                    "id": 149,
                    "task_category_id": 64,
                    "label": "Fonctionnement groupe froid",
                    "smarttags": null,
                    "state": 1,
                    "profile_type": 4,
                    "check_type": 4,
                    "min_value": null,
                    "max_value": "10.000",
                    "rrule": null,
                    "created_at": "2022-01-09T21:55:36.000000Z",
                    "updated_at": "2022-01-09T21:55:36.000000Z",
                    "task_category": {
                        "id": 64,
                        "parent_id": 57,
                        "name": "F3 ST8",
                        "instructions": null,
                        "created_at": "2022-01-09T21:55:36.000000Z",
                        "updated_at": "2022-01-09T21:55:36.000000Z"
                    }
                }
            },
            {
                "id": 7772,
                "user_id": 2,
                "tour_data_id": 31,
                "task_id": 150,
                "check_value": null,
                "numeric_value": null,
                "comment": null,
                "has_error": 0,
                "created_at": null,
                "updated_at": null,
                "task": {
                    "id": 150,
                    "task_category_id": 64,
                    "label": null,
                    "smarttags": null,
                    "state": 1,
                    "profile_type": 4,
                    "check_type": 5,
                    "min_value": null,
                    "max_value": null,
                    "rrule": null,
                    "created_at": "2022-01-09T21:55:36.000000Z",
                    "updated_at": "2022-01-09T21:55:36.000000Z",
                    "task_category": {
                        "id": 64,
                        "parent_id": 57,
                        "name": "F3 ST8",
                        "instructions": null,
                        "created_at": "2022-01-09T21:55:36.000000Z",
                        "updated_at": "2022-01-09T21:55:36.000000Z"
                    }
                }
            },
            {
                "id": 7773,
                "user_id": 2,
                "tour_data_id": 31,
                "task_id": 160,
                "check_value": 1,
                "numeric_value": null,
                "comment": null,
                "has_error": 0,
                "created_at": null,
                "updated_at": "2022-02-09T07:30:25.000000Z",
                "task": null
            },
            {
                "id": 7774,
                "user_id": 2,
                "tour_data_id": 31,
                "task_id": 158,
                "check_value": 1,
                "numeric_value": null,
                "comment": null,
                "has_error": 0,
                "created_at": null,
                "updated_at": "2022-02-09T07:30:25.000000Z",
                "task": {
                    "id": 158,
                    "task_category_id": 66,
                    "label": "Mode auto",
                    "smarttags": null,
                    "state": 1,
                    "profile_type": 4,
                    "check_type": 2,
                    "min_value": null,
                    "max_value": null,
                    "rrule": null,
                    "created_at": "2022-01-09T21:55:36.000000Z",
                    "updated_at": "2022-01-09T21:55:36.000000Z",
                    "task_category": {
                        "id": 66,
                        "parent_id": 57,
                        "name": "F3 ST6",
                        "instructions": null,
                        "created_at": "2022-01-09T21:55:36.000000Z",
                        "updated_at": "2022-01-09T21:55:36.000000Z"
                    }
                }
            },
            {
                "id": 7775,
                "user_id": 2,
                "tour_data_id": 31,
                "task_id": 159,
                "check_value": 1,
                "numeric_value": null,
                "comment": null,
                "has_error": 0,
                "created_at": null,
                "updated_at": "2022-02-09T07:30:25.000000Z",
                "task": {
                    "id": 159,
                    "task_category_id": 66,
                    "label": "Présence effluent",
                    "smarttags": null,
                    "state": 1,
                    "profile_type": 4,
                    "check_type": 2,
                    "min_value": null,
                    "max_value": null,
                    "rrule": null,
                    "created_at": "2022-01-09T21:55:36.000000Z",
                    "updated_at": "2022-01-09T21:55:36.000000Z",
                    "task_category": {
                        "id": 66,
                        "parent_id": 57,
                        "name": "F3 ST6",
                        "instructions": null,
                        "created_at": "2022-01-09T21:55:36.000000Z",
                        "updated_at": "2022-01-09T21:55:36.000000Z"
                    }
                }
            },
            {
                "id": 7776,
                "user_id": 2,
                "tour_data_id": 31,
                "task_id": 161,
                "check_value": null,
                "numeric_value": null,
                "comment": null,
                "has_error": 0,
                "created_at": null,
                "updated_at": null,
                "task": {
                    "id": 161,
                    "task_category_id": 66,
                    "label": "Fonctionnement groupe froid",
                    "smarttags": null,
                    "state": 1,
                    "profile_type": 4,
                    "check_type": 4,
                    "min_value": null,
                    "max_value": "10.000",
                    "rrule": null,
                    "created_at": "2022-01-09T21:55:36.000000Z",
                    "updated_at": "2022-01-09T21:55:36.000000Z",
                    "task_category": {
                        "id": 66,
                        "parent_id": 57,
                        "name": "F3 ST6",
                        "instructions": null,
                        "created_at": "2022-01-09T21:55:36.000000Z",
                        "updated_at": "2022-01-09T21:55:36.000000Z"
                    }
                }
            },
            {
                "id": 7777,
                "user_id": 2,
                "tour_data_id": 31,
                "task_id": 162,
                "check_value": null,
                "numeric_value": null,
                "comment": null,
                "has_error": 0,
                "created_at": null,
                "updated_at": null,
                "task": {
                    "id": 162,
                    "task_category_id": 66,
                    "label": null,
                    "smarttags": null,
                    "state": 1,
                    "profile_type": 4,
                    "check_type": 5,
                    "min_value": null,
                    "max_value": null,
                    "rrule": null,
                    "created_at": "2022-01-09T21:55:36.000000Z",
                    "updated_at": "2022-01-09T21:55:36.000000Z",
                    "task_category": {
                        "id": 66,
                        "parent_id": 57,
                        "name": "F3 ST6",
                        "instructions": null,
                        "created_at": "2022-01-09T21:55:36.000000Z",
                        "updated_at": "2022-01-09T21:55:36.000000Z"
                    }
                }
            },
            {
                "id": 7778,
                "user_id": 2,
                "tour_data_id": 31,
                "task_id": 166,
                "check_value": 1,
                "numeric_value": null,
                "comment": null,
                "has_error": 0,
                "created_at": null,
                "updated_at": "2022-02-09T07:30:25.000000Z",
                "task": null
            },
            {
                "id": 7779,
                "user_id": 2,
                "tour_data_id": 31,
                "task_id": 164,
                "check_value": 1,
                "numeric_value": null,
                "comment": null,
                "has_error": 0,
                "created_at": null,
                "updated_at": "2022-02-09T07:30:25.000000Z",
                "task": {
                    "id": 164,
                    "task_category_id": 67,
                    "label": "Mode auto",
                    "smarttags": null,
                    "state": 1,
                    "profile_type": 4,
                    "check_type": 2,
                    "min_value": null,
                    "max_value": null,
                    "rrule": null,
                    "created_at": "2022-01-09T21:55:36.000000Z",
                    "updated_at": "2022-01-09T21:55:36.000000Z",
                    "task_category": {
                        "id": 67,
                        "parent_id": 57,
                        "name": "F1 SunPartner/Garmin",
                        "instructions": null,
                        "created_at": "2022-01-09T21:55:36.000000Z",
                        "updated_at": "2022-01-09T21:55:36.000000Z"
                    }
                }
            },
            {
                "id": 7780,
                "user_id": 2,
                "tour_data_id": 31,
                "task_id": 165,
                "check_value": 1,
                "numeric_value": null,
                "comment": null,
                "has_error": 0,
                "created_at": null,
                "updated_at": "2022-02-09T07:30:25.000000Z",
                "task": {
                    "id": 165,
                    "task_category_id": 67,
                    "label": "Présence effluent",
                    "smarttags": null,
                    "state": 1,
                    "profile_type": 4,
                    "check_type": 2,
                    "min_value": null,
                    "max_value": null,
                    "rrule": null,
                    "created_at": "2022-01-09T21:55:36.000000Z",
                    "updated_at": "2022-01-09T21:55:36.000000Z",
                    "task_category": {
                        "id": 67,
                        "parent_id": 57,
                        "name": "F1 SunPartner/Garmin",
                        "instructions": null,
                        "created_at": "2022-01-09T21:55:36.000000Z",
                        "updated_at": "2022-01-09T21:55:36.000000Z"
                    }
                }
            },
            {
                "id": 7781,
                "user_id": 2,
                "tour_data_id": 31,
                "task_id": 167,
                "check_value": null,
                "numeric_value": null,
                "comment": null,
                "has_error": 0,
                "created_at": null,
                "updated_at": null,
                "task": {
                    "id": 167,
                    "task_category_id": 67,
                    "label": "Fonctionnement groupe froid",
                    "smarttags": null,
                    "state": 1,
                    "profile_type": 4,
                    "check_type": 4,
                    "min_value": null,
                    "max_value": "10.000",
                    "rrule": null,
                    "created_at": "2022-01-09T21:55:36.000000Z",
                    "updated_at": "2022-01-09T21:55:36.000000Z",
                    "task_category": {
                        "id": 67,
                        "parent_id": 57,
                        "name": "F1 SunPartner/Garmin",
                        "instructions": null,
                        "created_at": "2022-01-09T21:55:36.000000Z",
                        "updated_at": "2022-01-09T21:55:36.000000Z"
                    }
                }
            },
            {
                "id": 7782,
                "user_id": 2,
                "tour_data_id": 31,
                "task_id": 168,
                "check_value": null,
                "numeric_value": null,
                "comment": null,
                "has_error": 0,
                "created_at": null,
                "updated_at": null,
                "task": {
                    "id": 168,
                    "task_category_id": 67,
                    "label": null,
                    "smarttags": null,
                    "state": 1,
                    "profile_type": 4,
                    "check_type": 5,
                    "min_value": null,
                    "max_value": null,
                    "rrule": null,
                    "created_at": "2022-01-09T21:55:36.000000Z",
                    "updated_at": "2022-01-09T21:55:36.000000Z",
                    "task_category": {
                        "id": 67,
                        "parent_id": 57,
                        "name": "F1 SunPartner/Garmin",
                        "instructions": null,
                        "created_at": "2022-01-09T21:55:36.000000Z",
                        "updated_at": "2022-01-09T21:55:36.000000Z"
                    }
                }
            },
            {
                "id": 7783,
                "user_id": 2,
                "tour_data_id": 31,
                "task_id": 172,
                "check_value": 1,
                "numeric_value": null,
                "comment": null,
                "has_error": 0,
                "created_at": null,
                "updated_at": "2022-02-09T07:30:35.000000Z",
                "task": null
            },
            {
                "id": 7784,
                "user_id": 2,
                "tour_data_id": 31,
                "task_id": 170,
                "check_value": 1,
                "numeric_value": null,
                "comment": null,
                "has_error": 0,
                "created_at": null,
                "updated_at": "2022-02-09T07:30:35.000000Z",
                "task": {
                    "id": 170,
                    "task_category_id": 68,
                    "label": "Mode auto",
                    "smarttags": null,
                    "state": 1,
                    "profile_type": 4,
                    "check_type": 2,
                    "min_value": null,
                    "max_value": null,
                    "rrule": null,
                    "created_at": "2022-01-09T21:55:36.000000Z",
                    "updated_at": "2022-01-09T21:55:36.000000Z",
                    "task_category": {
                        "id": 68,
                        "parent_id": 57,
                        "name": "F5 ST8",
                        "instructions": null,
                        "created_at": "2022-01-09T21:55:36.000000Z",
                        "updated_at": "2022-01-09T21:55:36.000000Z"
                    }
                }
            },
            {
                "id": 7785,
                "user_id": 2,
                "tour_data_id": 31,
                "task_id": 171,
                "check_value": 1,
                "numeric_value": null,
                "comment": null,
                "has_error": 0,
                "created_at": null,
                "updated_at": "2022-02-09T07:30:35.000000Z",
                "task": {
                    "id": 171,
                    "task_category_id": 68,
                    "label": "Présence effluent",
                    "smarttags": null,
                    "state": 1,
                    "profile_type": 4,
                    "check_type": 2,
                    "min_value": null,
                    "max_value": null,
                    "rrule": null,
                    "created_at": "2022-01-09T21:55:36.000000Z",
                    "updated_at": "2022-01-09T21:55:36.000000Z",
                    "task_category": {
                        "id": 68,
                        "parent_id": 57,
                        "name": "F5 ST8",
                        "instructions": null,
                        "created_at": "2022-01-09T21:55:36.000000Z",
                        "updated_at": "2022-01-09T21:55:36.000000Z"
                    }
                }
            },
            {
                "id": 7786,
                "user_id": 2,
                "tour_data_id": 31,
                "task_id": 173,
                "check_value": null,
                "numeric_value": null,
                "comment": null,
                "has_error": 0,
                "created_at": null,
                "updated_at": null,
                "task": {
                    "id": 173,
                    "task_category_id": 68,
                    "label": "Fonctionnement groupe froid",
                    "smarttags": null,
                    "state": 1,
                    "profile_type": 4,
                    "check_type": 4,
                    "min_value": null,
                    "max_value": "10.000",
                    "rrule": null,
                    "created_at": "2022-01-09T21:55:36.000000Z",
                    "updated_at": "2022-01-09T21:55:36.000000Z",
                    "task_category": {
                        "id": 68,
                        "parent_id": 57,
                        "name": "F5 ST8",
                        "instructions": null,
                        "created_at": "2022-01-09T21:55:36.000000Z",
                        "updated_at": "2022-01-09T21:55:36.000000Z"
                    }
                }
            },
            {
                "id": 7787,
                "user_id": 2,
                "tour_data_id": 31,
                "task_id": 174,
                "check_value": null,
                "numeric_value": null,
                "comment": null,
                "has_error": 0,
                "created_at": null,
                "updated_at": null,
                "task": {
                    "id": 174,
                    "task_category_id": 68,
                    "label": null,
                    "smarttags": null,
                    "state": 1,
                    "profile_type": 4,
                    "check_type": 5,
                    "min_value": null,
                    "max_value": null,
                    "rrule": null,
                    "created_at": "2022-01-09T21:55:36.000000Z",
                    "updated_at": "2022-01-09T21:55:36.000000Z",
                    "task_category": {
                        "id": 68,
                        "parent_id": 57,
                        "name": "F5 ST8",
                        "instructions": null,
                        "created_at": "2022-01-09T21:55:36.000000Z",
                        "updated_at": "2022-01-09T21:55:36.000000Z"
                    }
                }
            },
            {
                "id": 7788,
                "user_id": 2,
                "tour_data_id": 31,
                "task_id": 176,
                "check_value": 1,
                "numeric_value": null,
                "comment": null,
                "has_error": 0,
                "created_at": null,
                "updated_at": "2022-02-09T07:30:35.000000Z",
                "task": {
                    "id": 176,
                    "task_category_id": 69,
                    "label": "Mode auto",
                    "smarttags": null,
                    "state": 1,
                    "profile_type": 4,
                    "check_type": 2,
                    "min_value": null,
                    "max_value": null,
                    "rrule": null,
                    "created_at": "2022-01-09T21:55:36.000000Z",
                    "updated_at": "2022-01-09T21:55:36.000000Z",
                    "task_category": {
                        "id": 69,
                        "parent_id": 57,
                        "name": "F2 Air Liquide",
                        "instructions": null,
                        "created_at": "2022-01-09T21:55:36.000000Z",
                        "updated_at": "2022-01-09T21:55:36.000000Z"
                    }
                }
            },
            {
                "id": 7789,
                "user_id": 2,
                "tour_data_id": 31,
                "task_id": 177,
                "check_value": 1,
                "numeric_value": null,
                "comment": null,
                "has_error": 0,
                "created_at": null,
                "updated_at": "2022-02-09T07:30:35.000000Z",
                "task": {
                    "id": 177,
                    "task_category_id": 69,
                    "label": "Présence effluent",
                    "smarttags": null,
                    "state": 1,
                    "profile_type": 4,
                    "check_type": 2,
                    "min_value": null,
                    "max_value": null,
                    "rrule": null,
                    "created_at": "2022-01-09T21:55:36.000000Z",
                    "updated_at": "2022-01-09T21:55:36.000000Z",
                    "task_category": {
                        "id": 69,
                        "parent_id": 57,
                        "name": "F2 Air Liquide",
                        "instructions": null,
                        "created_at": "2022-01-09T21:55:36.000000Z",
                        "updated_at": "2022-01-09T21:55:36.000000Z"
                    }
                }
            },
            {
                "id": 7790,
                "user_id": 2,
                "tour_data_id": 31,
                "task_id": 178,
                "check_value": 1,
                "numeric_value": null,
                "comment": null,
                "has_error": 0,
                "created_at": null,
                "updated_at": "2022-02-09T07:30:35.000000Z",
                "task": null
            },
            {
                "id": 7791,
                "user_id": 2,
                "tour_data_id": 31,
                "task_id": 179,
                "check_value": null,
                "numeric_value": null,
                "comment": null,
                "has_error": 0,
                "created_at": null,
                "updated_at": null,
                "task": {
                    "id": 179,
                    "task_category_id": 69,
                    "label": "Fonctionnement groupe froid",
                    "smarttags": null,
                    "state": 1,
                    "profile_type": 4,
                    "check_type": 4,
                    "min_value": null,
                    "max_value": "10.000",
                    "rrule": null,
                    "created_at": "2022-01-09T21:55:36.000000Z",
                    "updated_at": "2022-01-09T21:55:36.000000Z",
                    "task_category": {
                        "id": 69,
                        "parent_id": 57,
                        "name": "F2 Air Liquide",
                        "instructions": null,
                        "created_at": "2022-01-09T21:55:36.000000Z",
                        "updated_at": "2022-01-09T21:55:36.000000Z"
                    }
                }
            },
            {
                "id": 7792,
                "user_id": 2,
                "tour_data_id": 31,
                "task_id": 180,
                "check_value": null,
                "numeric_value": null,
                "comment": null,
                "has_error": 0,
                "created_at": null,
                "updated_at": null,
                "task": {
                    "id": 180,
                    "task_category_id": 69,
                    "label": null,
                    "smarttags": null,
                    "state": 1,
                    "profile_type": 4,
                    "check_type": 5,
                    "min_value": null,
                    "max_value": null,
                    "rrule": null,
                    "created_at": "2022-01-09T21:55:36.000000Z",
                    "updated_at": "2022-01-09T21:55:36.000000Z",
                    "task_category": {
                        "id": 69,
                        "parent_id": 57,
                        "name": "F2 Air Liquide",
                        "instructions": null,
                        "created_at": "2022-01-09T21:55:36.000000Z",
                        "updated_at": "2022-01-09T21:55:36.000000Z"
                    }
                }
            },
            {
                "id": 7793,
                "user_id": 2,
                "tour_data_id": 31,
                "task_id": 188,
                "check_value": 1,
                "numeric_value": null,
                "comment": null,
                "has_error": 0,
                "created_at": null,
                "updated_at": "2022-02-09T07:30:35.000000Z",
                "task": {
                    "id": 188,
                    "task_category_id": 72,
                    "label": "Mode auto",
                    "smarttags": null,
                    "state": 1,
                    "profile_type": 4,
                    "check_type": 2,
                    "min_value": null,
                    "max_value": null,
                    "rrule": null,
                    "created_at": "2022-01-09T21:55:36.000000Z",
                    "updated_at": "2022-01-09T21:55:36.000000Z",
                    "task_category": {
                        "id": 72,
                        "parent_id": 70,
                        "name": "F1 ST6",
                        "instructions": null,
                        "created_at": "2022-01-09T21:55:36.000000Z",
                        "updated_at": "2022-01-09T21:55:36.000000Z"
                    }
                }
            },
            {
                "id": 7794,
                "user_id": 2,
                "tour_data_id": 31,
                "task_id": 189,
                "check_value": 1,
                "numeric_value": null,
                "comment": null,
                "has_error": 0,
                "created_at": null,
                "updated_at": "2022-02-09T07:30:35.000000Z",
                "task": {
                    "id": 189,
                    "task_category_id": 72,
                    "label": "Présence effluent",
                    "smarttags": null,
                    "state": 1,
                    "profile_type": 4,
                    "check_type": 2,
                    "min_value": null,
                    "max_value": null,
                    "rrule": null,
                    "created_at": "2022-01-09T21:55:36.000000Z",
                    "updated_at": "2022-01-09T21:55:36.000000Z",
                    "task_category": {
                        "id": 72,
                        "parent_id": 70,
                        "name": "F1 ST6",
                        "instructions": null,
                        "created_at": "2022-01-09T21:55:36.000000Z",
                        "updated_at": "2022-01-09T21:55:36.000000Z"
                    }
                }
            },
            {
                "id": 7795,
                "user_id": 2,
                "tour_data_id": 31,
                "task_id": 190,
                "check_value": 1,
                "numeric_value": null,
                "comment": null,
                "has_error": 0,
                "created_at": null,
                "updated_at": "2022-02-09T07:30:35.000000Z",
                "task": null
            },
            {
                "id": 7796,
                "user_id": 2,
                "tour_data_id": 31,
                "task_id": 191,
                "check_value": null,
                "numeric_value": null,
                "comment": null,
                "has_error": 0,
                "created_at": null,
                "updated_at": null,
                "task": {
                    "id": 191,
                    "task_category_id": 72,
                    "label": "Fonctionnement groupe froid",
                    "smarttags": null,
                    "state": 1,
                    "profile_type": 4,
                    "check_type": 4,
                    "min_value": null,
                    "max_value": "10.000",
                    "rrule": null,
                    "created_at": "2022-01-09T21:55:36.000000Z",
                    "updated_at": "2022-01-09T21:55:36.000000Z",
                    "task_category": {
                        "id": 72,
                        "parent_id": 70,
                        "name": "F1 ST6",
                        "instructions": null,
                        "created_at": "2022-01-09T21:55:36.000000Z",
                        "updated_at": "2022-01-09T21:55:36.000000Z"
                    }
                }
            },
            {
                "id": 7797,
                "user_id": 2,
                "tour_data_id": 31,
                "task_id": 192,
                "check_value": null,
                "numeric_value": null,
                "comment": null,
                "has_error": 0,
                "created_at": null,
                "updated_at": null,
                "task": {
                    "id": 192,
                    "task_category_id": 72,
                    "label": null,
                    "smarttags": null,
                    "state": 1,
                    "profile_type": 4,
                    "check_type": 5,
                    "min_value": null,
                    "max_value": null,
                    "rrule": null,
                    "created_at": "2022-01-09T21:55:36.000000Z",
                    "updated_at": "2022-01-09T21:55:36.000000Z",
                    "task_category": {
                        "id": 72,
                        "parent_id": 70,
                        "name": "F1 ST6",
                        "instructions": null,
                        "created_at": "2022-01-09T21:55:36.000000Z",
                        "updated_at": "2022-01-09T21:55:36.000000Z"
                    }
                }
            },
            {
                "id": 7798,
                "user_id": 2,
                "tour_data_id": 31,
                "task_id": 194,
                "check_value": 1,
                "numeric_value": null,
                "comment": null,
                "has_error": 0,
                "created_at": null,
                "updated_at": "2022-02-09T07:30:46.000000Z",
                "task": {
                    "id": 194,
                    "task_category_id": 73,
                    "label": "Mode auto",
                    "smarttags": null,
                    "state": 1,
                    "profile_type": 4,
                    "check_type": 2,
                    "min_value": null,
                    "max_value": null,
                    "rrule": null,
                    "created_at": "2022-01-09T21:55:36.000000Z",
                    "updated_at": "2022-01-09T21:55:36.000000Z",
                    "task_category": {
                        "id": 73,
                        "parent_id": 70,
                        "name": "F1 ST8",
                        "instructions": null,
                        "created_at": "2022-01-09T21:55:36.000000Z",
                        "updated_at": "2022-01-09T21:55:36.000000Z"
                    }
                }
            },
            {
                "id": 7799,
                "user_id": 2,
                "tour_data_id": 31,
                "task_id": 195,
                "check_value": 1,
                "numeric_value": null,
                "comment": null,
                "has_error": 0,
                "created_at": null,
                "updated_at": "2022-02-09T07:30:46.000000Z",
                "task": {
                    "id": 195,
                    "task_category_id": 73,
                    "label": "Présence effluent",
                    "smarttags": null,
                    "state": 1,
                    "profile_type": 4,
                    "check_type": 2,
                    "min_value": null,
                    "max_value": null,
                    "rrule": null,
                    "created_at": "2022-01-09T21:55:36.000000Z",
                    "updated_at": "2022-01-09T21:55:36.000000Z",
                    "task_category": {
                        "id": 73,
                        "parent_id": 70,
                        "name": "F1 ST8",
                        "instructions": null,
                        "created_at": "2022-01-09T21:55:36.000000Z",
                        "updated_at": "2022-01-09T21:55:36.000000Z"
                    }
                }
            },
            {
                "id": 7800,
                "user_id": 2,
                "tour_data_id": 31,
                "task_id": 196,
                "check_value": 1,
                "numeric_value": null,
                "comment": null,
                "has_error": 0,
                "created_at": null,
                "updated_at": "2022-02-09T07:30:46.000000Z",
                "task": null
            },
            {
                "id": 7801,
                "user_id": 2,
                "tour_data_id": 31,
                "task_id": 197,
                "check_value": null,
                "numeric_value": null,
                "comment": null,
                "has_error": 0,
                "created_at": null,
                "updated_at": null,
                "task": {
                    "id": 197,
                    "task_category_id": 73,
                    "label": "Fonctionnement groupe froid",
                    "smarttags": null,
                    "state": 1,
                    "profile_type": 4,
                    "check_type": 4,
                    "min_value": null,
                    "max_value": "10.000",
                    "rrule": null,
                    "created_at": "2022-01-09T21:55:36.000000Z",
                    "updated_at": "2022-01-09T21:55:36.000000Z",
                    "task_category": {
                        "id": 73,
                        "parent_id": 70,
                        "name": "F1 ST8",
                        "instructions": null,
                        "created_at": "2022-01-09T21:55:36.000000Z",
                        "updated_at": "2022-01-09T21:55:36.000000Z"
                    }
                }
            },
            {
                "id": 7802,
                "user_id": 2,
                "tour_data_id": 31,
                "task_id": 198,
                "check_value": null,
                "numeric_value": null,
                "comment": null,
                "has_error": 0,
                "created_at": null,
                "updated_at": null,
                "task": {
                    "id": 198,
                    "task_category_id": 73,
                    "label": null,
                    "smarttags": null,
                    "state": 1,
                    "profile_type": 4,
                    "check_type": 5,
                    "min_value": null,
                    "max_value": null,
                    "rrule": null,
                    "created_at": "2022-01-09T21:55:36.000000Z",
                    "updated_at": "2022-01-09T21:55:36.000000Z",
                    "task_category": {
                        "id": 73,
                        "parent_id": 70,
                        "name": "F1 ST8",
                        "instructions": null,
                        "created_at": "2022-01-09T21:55:36.000000Z",
                        "updated_at": "2022-01-09T21:55:36.000000Z"
                    }
                }
            },
            {
                "id": 7803,
                "user_id": 2,
                "tour_data_id": 31,
                "task_id": 206,
                "check_value": 1,
                "numeric_value": null,
                "comment": null,
                "has_error": 0,
                "created_at": null,
                "updated_at": "2022-02-09T07:30:46.000000Z",
                "task": {
                    "id": 206,
                    "task_category_id": 75,
                    "label": "Mode auto",
                    "smarttags": null,
                    "state": 1,
                    "profile_type": 4,
                    "check_type": 2,
                    "min_value": null,
                    "max_value": null,
                    "rrule": null,
                    "created_at": "2022-01-09T21:55:36.000000Z",
                    "updated_at": "2022-01-09T21:55:36.000000Z",
                    "task_category": {
                        "id": 75,
                        "parent_id": 70,
                        "name": "F2 ST8",
                        "instructions": null,
                        "created_at": "2022-01-09T21:55:36.000000Z",
                        "updated_at": "2022-01-09T21:55:36.000000Z"
                    }
                }
            },
            {
                "id": 7804,
                "user_id": 2,
                "tour_data_id": 31,
                "task_id": 207,
                "check_value": 1,
                "numeric_value": null,
                "comment": null,
                "has_error": 0,
                "created_at": null,
                "updated_at": "2022-02-09T07:30:46.000000Z",
                "task": {
                    "id": 207,
                    "task_category_id": 75,
                    "label": "Présence effluent",
                    "smarttags": null,
                    "state": 1,
                    "profile_type": 4,
                    "check_type": 2,
                    "min_value": null,
                    "max_value": null,
                    "rrule": null,
                    "created_at": "2022-01-09T21:55:36.000000Z",
                    "updated_at": "2022-01-09T21:55:36.000000Z",
                    "task_category": {
                        "id": 75,
                        "parent_id": 70,
                        "name": "F2 ST8",
                        "instructions": null,
                        "created_at": "2022-01-09T21:55:36.000000Z",
                        "updated_at": "2022-01-09T21:55:36.000000Z"
                    }
                }
            },
            {
                "id": 7805,
                "user_id": 2,
                "tour_data_id": 31,
                "task_id": 208,
                "check_value": 1,
                "numeric_value": null,
                "comment": null,
                "has_error": 0,
                "created_at": null,
                "updated_at": "2022-02-09T07:30:46.000000Z",
                "task": null
            },
            {
                "id": 7806,
                "user_id": 2,
                "tour_data_id": 31,
                "task_id": 209,
                "check_value": null,
                "numeric_value": null,
                "comment": null,
                "has_error": 0,
                "created_at": null,
                "updated_at": null,
                "task": {
                    "id": 209,
                    "task_category_id": 75,
                    "label": "Fonctionnement groupe froid",
                    "smarttags": null,
                    "state": 1,
                    "profile_type": 4,
                    "check_type": 4,
                    "min_value": null,
                    "max_value": "10.000",
                    "rrule": null,
                    "created_at": "2022-01-09T21:55:37.000000Z",
                    "updated_at": "2022-01-09T21:55:37.000000Z",
                    "task_category": {
                        "id": 75,
                        "parent_id": 70,
                        "name": "F2 ST8",
                        "instructions": null,
                        "created_at": "2022-01-09T21:55:36.000000Z",
                        "updated_at": "2022-01-09T21:55:36.000000Z"
                    }
                }
            },
            {
                "id": 7807,
                "user_id": 2,
                "tour_data_id": 31,
                "task_id": 210,
                "check_value": null,
                "numeric_value": null,
                "comment": null,
                "has_error": 0,
                "created_at": null,
                "updated_at": null,
                "task": {
                    "id": 210,
                    "task_category_id": 75,
                    "label": null,
                    "smarttags": null,
                    "state": 1,
                    "profile_type": 4,
                    "check_type": 5,
                    "min_value": null,
                    "max_value": null,
                    "rrule": null,
                    "created_at": "2022-01-09T21:55:37.000000Z",
                    "updated_at": "2022-01-09T21:55:37.000000Z",
                    "task_category": {
                        "id": 75,
                        "parent_id": 70,
                        "name": "F2 ST8",
                        "instructions": null,
                        "created_at": "2022-01-09T21:55:36.000000Z",
                        "updated_at": "2022-01-09T21:55:36.000000Z"
                    }
                }
            },
            {
                "id": 7808,
                "user_id": 2,
                "tour_data_id": 31,
                "task_id": 212,
                "check_value": 1,
                "numeric_value": null,
                "comment": null,
                "has_error": 0,
                "created_at": null,
                "updated_at": "2022-02-09T07:30:46.000000Z",
                "task": {
                    "id": 212,
                    "task_category_id": 76,
                    "label": "Mode auto",
                    "smarttags": null,
                    "state": 1,
                    "profile_type": 4,
                    "check_type": 2,
                    "min_value": null,
                    "max_value": null,
                    "rrule": null,
                    "created_at": "2022-01-09T21:55:37.000000Z",
                    "updated_at": "2022-01-09T21:55:37.000000Z",
                    "task_category": {
                        "id": 76,
                        "parent_id": 70,
                        "name": "F4 ELIS",
                        "instructions": null,
                        "created_at": "2022-01-09T21:55:37.000000Z",
                        "updated_at": "2022-01-09T21:55:37.000000Z"
                    }
                }
            },
            {
                "id": 7809,
                "user_id": 2,
                "tour_data_id": 31,
                "task_id": 213,
                "check_value": 1,
                "numeric_value": null,
                "comment": null,
                "has_error": 0,
                "created_at": null,
                "updated_at": "2022-02-09T07:30:46.000000Z",
                "task": {
                    "id": 213,
                    "task_category_id": 76,
                    "label": "Présence effluent",
                    "smarttags": null,
                    "state": 1,
                    "profile_type": 4,
                    "check_type": 2,
                    "min_value": null,
                    "max_value": null,
                    "rrule": null,
                    "created_at": "2022-01-09T21:55:37.000000Z",
                    "updated_at": "2022-01-09T21:55:37.000000Z",
                    "task_category": {
                        "id": 76,
                        "parent_id": 70,
                        "name": "F4 ELIS",
                        "instructions": null,
                        "created_at": "2022-01-09T21:55:37.000000Z",
                        "updated_at": "2022-01-09T21:55:37.000000Z"
                    }
                }
            },
            {
                "id": 7810,
                "user_id": 2,
                "tour_data_id": 31,
                "task_id": 214,
                "check_value": 1,
                "numeric_value": null,
                "comment": null,
                "has_error": 0,
                "created_at": null,
                "updated_at": "2022-02-09T07:30:46.000000Z",
                "task": null
            },
            {
                "id": 7811,
                "user_id": 2,
                "tour_data_id": 31,
                "task_id": 215,
                "check_value": null,
                "numeric_value": null,
                "comment": null,
                "has_error": 0,
                "created_at": null,
                "updated_at": null,
                "task": {
                    "id": 215,
                    "task_category_id": 76,
                    "label": "Fonctionnement groupe froid",
                    "smarttags": null,
                    "state": 1,
                    "profile_type": 4,
                    "check_type": 4,
                    "min_value": null,
                    "max_value": "10.000",
                    "rrule": null,
                    "created_at": "2022-01-09T21:55:37.000000Z",
                    "updated_at": "2022-01-09T21:55:37.000000Z",
                    "task_category": {
                        "id": 76,
                        "parent_id": 70,
                        "name": "F4 ELIS",
                        "instructions": null,
                        "created_at": "2022-01-09T21:55:37.000000Z",
                        "updated_at": "2022-01-09T21:55:37.000000Z"
                    }
                }
            },
            {
                "id": 7812,
                "user_id": 2,
                "tour_data_id": 31,
                "task_id": 216,
                "check_value": null,
                "numeric_value": null,
                "comment": null,
                "has_error": 0,
                "created_at": null,
                "updated_at": null,
                "task": {
                    "id": 216,
                    "task_category_id": 76,
                    "label": null,
                    "smarttags": null,
                    "state": 1,
                    "profile_type": 4,
                    "check_type": 5,
                    "min_value": null,
                    "max_value": null,
                    "rrule": null,
                    "created_at": "2022-01-09T21:55:37.000000Z",
                    "updated_at": "2022-01-09T21:55:37.000000Z",
                    "task_category": {
                        "id": 76,
                        "parent_id": 70,
                        "name": "F4 ELIS",
                        "instructions": null,
                        "created_at": "2022-01-09T21:55:37.000000Z",
                        "updated_at": "2022-01-09T21:55:37.000000Z"
                    }
                }
            },
            {
                "id": 7813,
                "user_id": 2,
                "tour_data_id": 31,
                "task_id": 218,
                "check_value": 1,
                "numeric_value": null,
                "comment": null,
                "has_error": 0,
                "created_at": null,
                "updated_at": "2022-02-09T07:30:46.000000Z",
                "task": {
                    "id": 218,
                    "task_category_id": 77,
                    "label": "Mode auto",
                    "smarttags": null,
                    "state": 1,
                    "profile_type": 4,
                    "check_type": 2,
                    "min_value": null,
                    "max_value": null,
                    "rrule": null,
                    "created_at": "2022-01-09T21:55:37.000000Z",
                    "updated_at": "2022-01-09T21:55:37.000000Z",
                    "task_category": {
                        "id": 77,
                        "parent_id": 70,
                        "name": "F2 Air Liquide",
                        "instructions": null,
                        "created_at": "2022-01-09T21:55:37.000000Z",
                        "updated_at": "2022-01-09T21:55:37.000000Z"
                    }
                }
            },
            {
                "id": 7814,
                "user_id": 2,
                "tour_data_id": 31,
                "task_id": 219,
                "check_value": 1,
                "numeric_value": null,
                "comment": null,
                "has_error": 0,
                "created_at": null,
                "updated_at": "2022-02-09T07:30:57.000000Z",
                "task": {
                    "id": 219,
                    "task_category_id": 77,
                    "label": "Présence effluent",
                    "smarttags": null,
                    "state": 1,
                    "profile_type": 4,
                    "check_type": 2,
                    "min_value": null,
                    "max_value": null,
                    "rrule": null,
                    "created_at": "2022-01-09T21:55:37.000000Z",
                    "updated_at": "2022-01-09T21:55:37.000000Z",
                    "task_category": {
                        "id": 77,
                        "parent_id": 70,
                        "name": "F2 Air Liquide",
                        "instructions": null,
                        "created_at": "2022-01-09T21:55:37.000000Z",
                        "updated_at": "2022-01-09T21:55:37.000000Z"
                    }
                }
            },
            {
                "id": 7815,
                "user_id": 2,
                "tour_data_id": 31,
                "task_id": 220,
                "check_value": 1,
                "numeric_value": null,
                "comment": null,
                "has_error": 0,
                "created_at": null,
                "updated_at": "2022-02-09T07:30:57.000000Z",
                "task": null
            },
            {
                "id": 7816,
                "user_id": 2,
                "tour_data_id": 31,
                "task_id": 221,
                "check_value": null,
                "numeric_value": null,
                "comment": null,
                "has_error": 0,
                "created_at": null,
                "updated_at": null,
                "task": {
                    "id": 221,
                    "task_category_id": 77,
                    "label": "Fonctionnement groupe froid",
                    "smarttags": null,
                    "state": 1,
                    "profile_type": 4,
                    "check_type": 4,
                    "min_value": null,
                    "max_value": "10.000",
                    "rrule": null,
                    "created_at": "2022-01-09T21:55:37.000000Z",
                    "updated_at": "2022-01-09T21:55:37.000000Z",
                    "task_category": {
                        "id": 77,
                        "parent_id": 70,
                        "name": "F2 Air Liquide",
                        "instructions": null,
                        "created_at": "2022-01-09T21:55:37.000000Z",
                        "updated_at": "2022-01-09T21:55:37.000000Z"
                    }
                }
            },
            {
                "id": 7817,
                "user_id": 2,
                "tour_data_id": 31,
                "task_id": 222,
                "check_value": null,
                "numeric_value": null,
                "comment": null,
                "has_error": 0,
                "created_at": null,
                "updated_at": null,
                "task": {
                    "id": 222,
                    "task_category_id": 77,
                    "label": null,
                    "smarttags": null,
                    "state": 1,
                    "profile_type": 4,
                    "check_type": 5,
                    "min_value": null,
                    "max_value": null,
                    "rrule": null,
                    "created_at": "2022-01-09T21:55:37.000000Z",
                    "updated_at": "2022-01-09T21:55:37.000000Z",
                    "task_category": {
                        "id": 77,
                        "parent_id": 70,
                        "name": "F2 Air Liquide",
                        "instructions": null,
                        "created_at": "2022-01-09T21:55:37.000000Z",
                        "updated_at": "2022-01-09T21:55:37.000000Z"
                    }
                }
            },
            {
                "id": 7818,
                "user_id": 2,
                "tour_data_id": 31,
                "task_id": 224,
                "check_value": 1,
                "numeric_value": null,
                "comment": null,
                "has_error": 0,
                "created_at": null,
                "updated_at": "2022-02-09T07:30:57.000000Z",
                "task": {
                    "id": 224,
                    "task_category_id": 78,
                    "label": "Mode auto",
                    "smarttags": null,
                    "state": 1,
                    "profile_type": 4,
                    "check_type": 2,
                    "min_value": null,
                    "max_value": null,
                    "rrule": null,
                    "created_at": "2022-01-09T21:55:37.000000Z",
                    "updated_at": "2022-01-09T21:55:37.000000Z",
                    "task_category": {
                        "id": 78,
                        "parent_id": 70,
                        "name": "F1 SunPartner/Garmin",
                        "instructions": null,
                        "created_at": "2022-01-09T21:55:37.000000Z",
                        "updated_at": "2022-01-09T21:55:37.000000Z"
                    }
                }
            },
            {
                "id": 7819,
                "user_id": 2,
                "tour_data_id": 31,
                "task_id": 225,
                "check_value": 1,
                "numeric_value": null,
                "comment": null,
                "has_error": 0,
                "created_at": null,
                "updated_at": "2022-02-09T07:30:57.000000Z",
                "task": {
                    "id": 225,
                    "task_category_id": 78,
                    "label": "Présence effluent",
                    "smarttags": null,
                    "state": 1,
                    "profile_type": 4,
                    "check_type": 2,
                    "min_value": null,
                    "max_value": null,
                    "rrule": null,
                    "created_at": "2022-01-09T21:55:37.000000Z",
                    "updated_at": "2022-01-09T21:55:37.000000Z",
                    "task_category": {
                        "id": 78,
                        "parent_id": 70,
                        "name": "F1 SunPartner/Garmin",
                        "instructions": null,
                        "created_at": "2022-01-09T21:55:37.000000Z",
                        "updated_at": "2022-01-09T21:55:37.000000Z"
                    }
                }
            },
            {
                "id": 7820,
                "user_id": 2,
                "tour_data_id": 31,
                "task_id": 226,
                "check_value": 1,
                "numeric_value": null,
                "comment": null,
                "has_error": 0,
                "created_at": null,
                "updated_at": "2022-02-09T07:30:57.000000Z",
                "task": null
            },
            {
                "id": 7821,
                "user_id": 2,
                "tour_data_id": 31,
                "task_id": 227,
                "check_value": null,
                "numeric_value": null,
                "comment": null,
                "has_error": 0,
                "created_at": null,
                "updated_at": null,
                "task": {
                    "id": 227,
                    "task_category_id": 78,
                    "label": "Fonctionnement groupe froid",
                    "smarttags": null,
                    "state": 1,
                    "profile_type": 4,
                    "check_type": 4,
                    "min_value": null,
                    "max_value": "10.000",
                    "rrule": null,
                    "created_at": "2022-01-09T21:55:37.000000Z",
                    "updated_at": "2022-01-09T21:55:37.000000Z",
                    "task_category": {
                        "id": 78,
                        "parent_id": 70,
                        "name": "F1 SunPartner/Garmin",
                        "instructions": null,
                        "created_at": "2022-01-09T21:55:37.000000Z",
                        "updated_at": "2022-01-09T21:55:37.000000Z"
                    }
                }
            },
            {
                "id": 7822,
                "user_id": 2,
                "tour_data_id": 31,
                "task_id": 228,
                "check_value": null,
                "numeric_value": null,
                "comment": null,
                "has_error": 0,
                "created_at": null,
                "updated_at": null,
                "task": {
                    "id": 228,
                    "task_category_id": 78,
                    "label": null,
                    "smarttags": null,
                    "state": 1,
                    "profile_type": 4,
                    "check_type": 5,
                    "min_value": null,
                    "max_value": null,
                    "rrule": null,
                    "created_at": "2022-01-09T21:55:37.000000Z",
                    "updated_at": "2022-01-09T21:55:37.000000Z",
                    "task_category": {
                        "id": 78,
                        "parent_id": 70,
                        "name": "F1 SunPartner/Garmin",
                        "instructions": null,
                        "created_at": "2022-01-09T21:55:37.000000Z",
                        "updated_at": "2022-01-09T21:55:37.000000Z"
                    }
                }
            },
            {
                "id": 7823,
                "user_id": 2,
                "tour_data_id": 31,
                "task_id": 229,
                "check_value": 1,
                "numeric_value": null,
                "comment": null,
                "has_error": 0,
                "created_at": null,
                "updated_at": "2022-02-09T07:25:24.000000Z",
                "task": null
            },
            {
                "id": 7824,
                "user_id": 2,
                "tour_data_id": 31,
                "task_id": 230,
                "check_value": null,
                "numeric_value": null,
                "comment": null,
                "has_error": 0,
                "created_at": null,
                "updated_at": null,
                "task": null
            },
            {
                "id": 7825,
                "user_id": 2,
                "tour_data_id": 31,
                "task_id": 231,
                "check_value": 1,
                "numeric_value": null,
                "comment": null,
                "has_error": 0,
                "created_at": null,
                "updated_at": "2022-02-09T07:25:24.000000Z",
                "task": null
            },
            {
                "id": 7826,
                "user_id": 2,
                "tour_data_id": 31,
                "task_id": 232,
                "check_value": null,
                "numeric_value": null,
                "comment": null,
                "has_error": 0,
                "created_at": null,
                "updated_at": null,
                "task": null
            },
            {
                "id": 7827,
                "user_id": 2,
                "tour_data_id": 31,
                "task_id": 233,
                "check_value": 1,
                "numeric_value": null,
                "comment": null,
                "has_error": 0,
                "created_at": null,
                "updated_at": "2022-02-09T07:25:24.000000Z",
                "task": null
            },
            {
                "id": 7828,
                "user_id": 2,
                "tour_data_id": 31,
                "task_id": 234,
                "check_value": null,
                "numeric_value": null,
                "comment": null,
                "has_error": 0,
                "created_at": null,
                "updated_at": null,
                "task": null
            },
            {
                "id": 7829,
                "user_id": 2,
                "tour_data_id": 31,
                "task_id": 239,
                "check_value": null,
                "numeric_value": null,
                "comment": null,
                "has_error": 0,
                "created_at": null,
                "updated_at": null,
                "task": null
            },
            {
                "id": 7830,
                "user_id": 2,
                "tour_data_id": 31,
                "task_id": 240,
                "check_value": null,
                "numeric_value": null,
                "comment": null,
                "has_error": 0,
                "created_at": null,
                "updated_at": null,
                "task": null
            },
            {
                "id": 7831,
                "user_id": 2,
                "tour_data_id": 31,
                "task_id": 241,
                "check_value": null,
                "numeric_value": null,
                "comment": null,
                "has_error": 0,
                "created_at": null,
                "updated_at": null,
                "task": null
            },
            {
                "id": 7832,
                "user_id": 2,
                "tour_data_id": 31,
                "task_id": 242,
                "check_value": null,
                "numeric_value": null,
                "comment": null,
                "has_error": 0,
                "created_at": null,
                "updated_at": null,
                "task": null
            },
            {
                "id": 7833,
                "user_id": 2,
                "tour_data_id": 31,
                "task_id": 243,
                "check_value": null,
                "numeric_value": null,
                "comment": null,
                "has_error": 0,
                "created_at": null,
                "updated_at": null,
                "task": null
            },
            {
                "id": 7834,
                "user_id": 2,
                "tour_data_id": 31,
                "task_id": 244,
                "check_value": null,
                "numeric_value": null,
                "comment": null,
                "has_error": 0,
                "created_at": null,
                "updated_at": null,
                "task": null
            },
            {
                "id": 7835,
                "user_id": 2,
                "tour_data_id": 31,
                "task_id": 235,
                "check_value": 1,
                "numeric_value": null,
                "comment": null,
                "has_error": 0,
                "created_at": null,
                "updated_at": "2022-02-09T07:25:35.000000Z",
                "task": null
            },
            {
                "id": 7836,
                "user_id": 2,
                "tour_data_id": 31,
                "task_id": 236,
                "check_value": null,
                "numeric_value": null,
                "comment": null,
                "has_error": 0,
                "created_at": null,
                "updated_at": null,
                "task": null
            },
            {
                "id": 7837,
                "user_id": 2,
                "tour_data_id": 31,
                "task_id": 237,
                "check_value": 1,
                "numeric_value": null,
                "comment": null,
                "has_error": 0,
                "created_at": null,
                "updated_at": "2022-02-09T07:25:35.000000Z",
                "task": null
            },
            {
                "id": 7838,
                "user_id": 2,
                "tour_data_id": 31,
                "task_id": 238,
                "check_value": null,
                "numeric_value": null,
                "comment": null,
                "has_error": 0,
                "created_at": null,
                "updated_at": null,
                "task": null
            },
            {
                "id": 7839,
                "user_id": 2,
                "tour_data_id": 31,
                "task_id": 938,
                "check_value": 1,
                "numeric_value": null,
                "comment": null,
                "has_error": 0,
                "created_at": null,
                "updated_at": "2022-02-09T07:25:45.000000Z",
                "task": {
                    "id": 938,
                    "task_category_id": 89,
                    "label": null,
                    "smarttags": null,
                    "state": 1,
                    "profile_type": 4,
                    "check_type": 1,
                    "min_value": null,
                    "max_value": null,
                    "rrule": null,
                    "created_at": "2022-01-25T07:07:53.000000Z",
                    "updated_at": "2022-01-25T07:07:53.000000Z",
                    "task_category": {
                        "id": 89,
                        "parent_id": 88,
                        "name": "Niveau de polymère",
                        "instructions": null,
                        "created_at": "2022-01-09T21:55:37.000000Z",
                        "updated_at": "2022-01-09T21:55:37.000000Z"
                    }
                }
            },
            {
                "id": 7840,
                "user_id": 2,
                "tour_data_id": 31,
                "task_id": 683,
                "check_value": null,
                "numeric_value": "0.00000",
                "comment": null,
                "has_error": 0,
                "created_at": null,
                "updated_at": "2022-02-09T07:25:45.000000Z",
                "task": {
                    "id": 683,
                    "task_category_id": 89,
                    "label": "Nombre de sacs ajoutés",
                    "smarttags": null,
                    "state": 1,
                    "profile_type": 4,
                    "check_type": 4,
                    "min_value": null,
                    "max_value": null,
                    "rrule": null,
                    "created_at": "2022-01-10T18:25:12.000000Z",
                    "updated_at": "2022-01-19T14:19:02.000000Z",
                    "task_category": {
                        "id": 89,
                        "parent_id": 88,
                        "name": "Niveau de polymère",
                        "instructions": null,
                        "created_at": "2022-01-09T21:55:37.000000Z",
                        "updated_at": "2022-01-09T21:55:37.000000Z"
                    }
                }
            },
            {
                "id": 7841,
                "user_id": 2,
                "tour_data_id": 31,
                "task_id": 797,
                "check_value": null,
                "numeric_value": null,
                "comment": null,
                "has_error": 0,
                "created_at": null,
                "updated_at": null,
                "task": {
                    "id": 797,
                    "task_category_id": 89,
                    "label": "Concentration péparante polymère",
                    "smarttags": null,
                    "state": 1,
                    "profile_type": 4,
                    "check_type": 2,
                    "min_value": null,
                    "max_value": null,
                    "rrule": "DTSTART:20220110T000000\nRRULE:FREQ=WEEKLY;INTERVAL=1\n",
                    "created_at": "2022-01-10T20:00:16.000000Z",
                    "updated_at": "2022-01-20T05:53:50.000000Z",
                    "task_category": {
                        "id": 89,
                        "parent_id": 88,
                        "name": "Niveau de polymère",
                        "instructions": null,
                        "created_at": "2022-01-09T21:55:37.000000Z",
                        "updated_at": "2022-01-09T21:55:37.000000Z"
                    }
                }
            },
            {
                "id": 7842,
                "user_id": 2,
                "tour_data_id": 31,
                "task_id": 248,
                "check_value": null,
                "numeric_value": null,
                "comment": null,
                "has_error": 0,
                "created_at": null,
                "updated_at": null,
                "task": {
                    "id": 248,
                    "task_category_id": 89,
                    "label": null,
                    "smarttags": null,
                    "state": 1,
                    "profile_type": 4,
                    "check_type": 5,
                    "min_value": null,
                    "max_value": null,
                    "rrule": null,
                    "created_at": "2022-01-09T21:55:37.000000Z",
                    "updated_at": "2022-01-09T21:55:37.000000Z",
                    "task_category": {
                        "id": 89,
                        "parent_id": 88,
                        "name": "Niveau de polymère",
                        "instructions": null,
                        "created_at": "2022-01-09T21:55:37.000000Z",
                        "updated_at": "2022-01-09T21:55:37.000000Z"
                    }
                }
            },
            {
                "id": 7843,
                "user_id": 2,
                "tour_data_id": 31,
                "task_id": 255,
                "check_value": null,
                "numeric_value": null,
                "comment": null,
                "has_error": 0,
                "created_at": null,
                "updated_at": null,
                "task": {
                    "id": 255,
                    "task_category_id": 94,
                    "label": "Relevé hauteur voile de boue",
                    "smarttags": null,
                    "state": 1,
                    "profile_type": 4,
                    "check_type": 2,
                    "min_value": null,
                    "max_value": null,
                    "rrule": "DTSTART:20220110T000000\nRRULE:FREQ=WEEKLY;INTERVAL=1;BYDAY=TU,TH\n",
                    "created_at": "2022-01-09T21:55:37.000000Z",
                    "updated_at": "2022-06-06T12:02:18.000000Z",
                    "task_category": {
                        "id": 94,
                        "parent_id": 91,
                        "name": "F2 n°1",
                        "instructions": null,
                        "created_at": "2022-01-09T21:55:37.000000Z",
                        "updated_at": "2022-01-19T14:21:14.000000Z"
                    }
                }
            },
            {
                "id": 7844,
                "user_id": 2,
                "tour_data_id": 31,
                "task_id": 915,
                "check_value": null,
                "numeric_value": null,
                "comment": null,
                "has_error": 0,
                "created_at": null,
                "updated_at": null,
                "task": {
                    "id": 915,
                    "task_category_id": 94,
                    "label": "Absence départ de flocs",
                    "smarttags": null,
                    "state": 1,
                    "profile_type": 4,
                    "check_type": 1,
                    "min_value": null,
                    "max_value": null,
                    "rrule": null,
                    "created_at": "2022-01-19T14:21:36.000000Z",
                    "updated_at": "2022-01-19T14:21:36.000000Z",
                    "task_category": {
                        "id": 94,
                        "parent_id": 91,
                        "name": "F2 n°1",
                        "instructions": null,
                        "created_at": "2022-01-09T21:55:37.000000Z",
                        "updated_at": "2022-01-19T14:21:14.000000Z"
                    }
                }
            },
            {
                "id": 7845,
                "user_id": 2,
                "tour_data_id": 31,
                "task_id": 918,
                "check_value": null,
                "numeric_value": null,
                "comment": null,
                "has_error": 0,
                "created_at": null,
                "updated_at": null,
                "task": {
                    "id": 918,
                    "task_category_id": 94,
                    "label": "Propreté des goulottes",
                    "smarttags": null,
                    "state": 1,
                    "profile_type": 4,
                    "check_type": 1,
                    "min_value": null,
                    "max_value": null,
                    "rrule": null,
                    "created_at": "2022-01-20T05:59:23.000000Z",
                    "updated_at": "2022-01-20T05:59:23.000000Z",
                    "task_category": {
                        "id": 94,
                        "parent_id": 91,
                        "name": "F2 n°1",
                        "instructions": null,
                        "created_at": "2022-01-09T21:55:37.000000Z",
                        "updated_at": "2022-01-19T14:21:14.000000Z"
                    }
                }
            },
            {
                "id": 7846,
                "user_id": 2,
                "tour_data_id": 31,
                "task_id": 256,
                "check_value": null,
                "numeric_value": null,
                "comment": null,
                "has_error": 0,
                "created_at": null,
                "updated_at": null,
                "task": {
                    "id": 256,
                    "task_category_id": 94,
                    "label": null,
                    "smarttags": null,
                    "state": 1,
                    "profile_type": 4,
                    "check_type": 5,
                    "min_value": null,
                    "max_value": null,
                    "rrule": null,
                    "created_at": "2022-01-09T21:55:37.000000Z",
                    "updated_at": "2022-01-09T21:55:37.000000Z",
                    "task_category": {
                        "id": 94,
                        "parent_id": 91,
                        "name": "F2 n°1",
                        "instructions": null,
                        "created_at": "2022-01-09T21:55:37.000000Z",
                        "updated_at": "2022-01-19T14:21:14.000000Z"
                    }
                }
            },
            {
                "id": 7847,
                "user_id": 2,
                "tour_data_id": 31,
                "task_id": 259,
                "check_value": null,
                "numeric_value": null,
                "comment": null,
                "has_error": 0,
                "created_at": null,
                "updated_at": null,
                "task": {
                    "id": 259,
                    "task_category_id": 96,
                    "label": "Relevé hauteur voile de boue",
                    "smarttags": null,
                    "state": 1,
                    "profile_type": 4,
                    "check_type": 2,
                    "min_value": null,
                    "max_value": null,
                    "rrule": "DTSTART:20220110T000000\nRRULE:FREQ=WEEKLY;INTERVAL=1;BYDAY=TU,TH\n",
                    "created_at": "2022-01-09T21:55:37.000000Z",
                    "updated_at": "2022-06-06T12:02:24.000000Z",
                    "task_category": {
                        "id": 96,
                        "parent_id": 91,
                        "name": "F2 n°2",
                        "instructions": null,
                        "created_at": "2022-01-09T21:55:37.000000Z",
                        "updated_at": "2022-01-20T05:56:37.000000Z"
                    }
                }
            },
            {
                "id": 7848,
                "user_id": 2,
                "tour_data_id": 31,
                "task_id": 916,
                "check_value": null,
                "numeric_value": null,
                "comment": null,
                "has_error": 0,
                "created_at": null,
                "updated_at": null,
                "task": {
                    "id": 916,
                    "task_category_id": 96,
                    "label": "Absence départ de flocs",
                    "smarttags": null,
                    "state": 1,
                    "profile_type": 4,
                    "check_type": 1,
                    "min_value": null,
                    "max_value": null,
                    "rrule": null,
                    "created_at": "2022-01-20T05:56:15.000000Z",
                    "updated_at": "2022-01-20T05:56:15.000000Z",
                    "task_category": {
                        "id": 96,
                        "parent_id": 91,
                        "name": "F2 n°2",
                        "instructions": null,
                        "created_at": "2022-01-09T21:55:37.000000Z",
                        "updated_at": "2022-01-20T05:56:37.000000Z"
                    }
                }
            },
            {
                "id": 7849,
                "user_id": 2,
                "tour_data_id": 31,
                "task_id": 919,
                "check_value": null,
                "numeric_value": null,
                "comment": null,
                "has_error": 0,
                "created_at": null,
                "updated_at": null,
                "task": {
                    "id": 919,
                    "task_category_id": 96,
                    "label": "Propreté des goulottes",
                    "smarttags": null,
                    "state": 1,
                    "profile_type": 4,
                    "check_type": 1,
                    "min_value": null,
                    "max_value": null,
                    "rrule": null,
                    "created_at": "2022-01-20T05:59:41.000000Z",
                    "updated_at": "2022-01-20T05:59:41.000000Z",
                    "task_category": {
                        "id": 96,
                        "parent_id": 91,
                        "name": "F2 n°2",
                        "instructions": null,
                        "created_at": "2022-01-09T21:55:37.000000Z",
                        "updated_at": "2022-01-20T05:56:37.000000Z"
                    }
                }
            },
            {
                "id": 7850,
                "user_id": 2,
                "tour_data_id": 31,
                "task_id": 260,
                "check_value": null,
                "numeric_value": null,
                "comment": null,
                "has_error": 0,
                "created_at": null,
                "updated_at": null,
                "task": {
                    "id": 260,
                    "task_category_id": 96,
                    "label": null,
                    "smarttags": null,
                    "state": 1,
                    "profile_type": 4,
                    "check_type": 5,
                    "min_value": null,
                    "max_value": null,
                    "rrule": null,
                    "created_at": "2022-01-09T21:55:37.000000Z",
                    "updated_at": "2022-01-09T21:55:37.000000Z",
                    "task_category": {
                        "id": 96,
                        "parent_id": 91,
                        "name": "F2 n°2",
                        "instructions": null,
                        "created_at": "2022-01-09T21:55:37.000000Z",
                        "updated_at": "2022-01-20T05:56:37.000000Z"
                    }
                }
            },
            {
                "id": 7851,
                "user_id": 2,
                "tour_data_id": 31,
                "task_id": 265,
                "check_value": null,
                "numeric_value": null,
                "comment": null,
                "has_error": 0,
                "created_at": null,
                "updated_at": null,
                "task": null
            },
            {
                "id": 7852,
                "user_id": 2,
                "tour_data_id": 31,
                "task_id": 266,
                "check_value": null,
                "numeric_value": null,
                "comment": null,
                "has_error": 0,
                "created_at": null,
                "updated_at": null,
                "task": {
                    "id": 266,
                    "task_category_id": 100,
                    "label": "Valeur du compteur",
                    "smarttags": null,
                    "state": 1,
                    "profile_type": 4,
                    "check_type": 4,
                    "min_value": null,
                    "max_value": null,
                    "rrule": null,
                    "created_at": "2022-01-09T21:55:37.000000Z",
                    "updated_at": "2022-01-09T21:55:37.000000Z",
                    "task_category": {
                        "id": 100,
                        "parent_id": 99,
                        "name": "Compteur",
                        "instructions": null,
                        "created_at": "2022-01-09T21:55:37.000000Z",
                        "updated_at": "2023-06-16T05:04:39.000000Z"
                    }
                }
            },
            {
                "id": 7853,
                "user_id": 2,
                "tour_data_id": 31,
                "task_id": 267,
                "check_value": null,
                "numeric_value": null,
                "comment": null,
                "has_error": 0,
                "created_at": null,
                "updated_at": null,
                "task": {
                    "id": 267,
                    "task_category_id": 100,
                    "label": null,
                    "smarttags": null,
                    "state": 1,
                    "profile_type": 4,
                    "check_type": 5,
                    "min_value": null,
                    "max_value": null,
                    "rrule": null,
                    "created_at": "2022-01-09T21:55:37.000000Z",
                    "updated_at": "2022-01-09T21:55:37.000000Z",
                    "task_category": {
                        "id": 100,
                        "parent_id": 99,
                        "name": "Compteur",
                        "instructions": null,
                        "created_at": "2022-01-09T21:55:37.000000Z",
                        "updated_at": "2023-06-16T05:04:39.000000Z"
                    }
                }
            },
            {
                "id": 7854,
                "user_id": 2,
                "tour_data_id": 31,
                "task_id": 269,
                "check_value": 1,
                "numeric_value": null,
                "comment": null,
                "has_error": 0,
                "created_at": null,
                "updated_at": "2022-02-09T07:29:54.000000Z",
                "task": null
            },
            {
                "id": 7855,
                "user_id": 2,
                "tour_data_id": 31,
                "task_id": 270,
                "check_value": 1,
                "numeric_value": null,
                "comment": null,
                "has_error": 0,
                "created_at": null,
                "updated_at": "2022-02-09T07:29:54.000000Z",
                "task": null
            },
            {
                "id": 7856,
                "user_id": 2,
                "tour_data_id": 31,
                "task_id": 684,
                "check_value": 1,
                "numeric_value": null,
                "comment": null,
                "has_error": 0,
                "created_at": null,
                "updated_at": "2022-02-09T07:29:54.000000Z",
                "task": null
            },
            {
                "id": 7857,
                "user_id": 2,
                "tour_data_id": 31,
                "task_id": 271,
                "check_value": null,
                "numeric_value": null,
                "comment": null,
                "has_error": 0,
                "created_at": null,
                "updated_at": null,
                "task": null
            },
            {
                "id": 7858,
                "user_id": 2,
                "tour_data_id": 31,
                "task_id": 272,
                "check_value": null,
                "numeric_value": null,
                "comment": null,
                "has_error": 0,
                "created_at": null,
                "updated_at": null,
                "task": null
            },
            {
                "id": 7859,
                "user_id": 2,
                "tour_data_id": 31,
                "task_id": 273,
                "check_value": 0,
                "numeric_value": "1.00000",
                "comment": null,
                "has_error": 1,
                "created_at": null,
                "updated_at": "2022-02-09T07:26:06.000000Z",
                "task": null
            },
            {
                "id": 7860,
                "user_id": 2,
                "tour_data_id": 31,
                "task_id": 274,
                "check_value": null,
                "numeric_value": null,
                "comment": "Fuite pompe brassage BS F2",
                "has_error": 0,
                "created_at": null,
                "updated_at": "2022-02-09T07:26:17.000000Z",
                "task": null
            },
            {
                "id": 7861,
                "user_id": 2,
                "tour_data_id": 31,
                "task_id": 275,
                "check_value": 1,
                "numeric_value": null,
                "comment": null,
                "has_error": 0,
                "created_at": null,
                "updated_at": "2022-02-09T07:26:27.000000Z",
                "task": null
            },
            {
                "id": 7862,
                "user_id": 2,
                "tour_data_id": 31,
                "task_id": 276,
                "check_value": null,
                "numeric_value": null,
                "comment": null,
                "has_error": 0,
                "created_at": null,
                "updated_at": null,
                "task": null
            },
            {
                "id": 7863,
                "user_id": 2,
                "tour_data_id": 31,
                "task_id": 277,
                "check_value": 1,
                "numeric_value": null,
                "comment": null,
                "has_error": 0,
                "created_at": null,
                "updated_at": "2022-02-09T07:26:27.000000Z",
                "task": null
            },
            {
                "id": 7864,
                "user_id": 2,
                "tour_data_id": 31,
                "task_id": 278,
                "check_value": null,
                "numeric_value": null,
                "comment": null,
                "has_error": 0,
                "created_at": null,
                "updated_at": null,
                "task": null
            },
            {
                "id": 7865,
                "user_id": 2,
                "tour_data_id": 31,
                "task_id": 279,
                "check_value": 1,
                "numeric_value": null,
                "comment": null,
                "has_error": 0,
                "created_at": null,
                "updated_at": "2022-02-09T07:26:27.000000Z",
                "task": null
            },
            {
                "id": 7866,
                "user_id": 2,
                "tour_data_id": 31,
                "task_id": 280,
                "check_value": null,
                "numeric_value": null,
                "comment": null,
                "has_error": 0,
                "created_at": null,
                "updated_at": null,
                "task": null
            },
            {
                "id": 7867,
                "user_id": 2,
                "tour_data_id": 31,
                "task_id": 281,
                "check_value": 1,
                "numeric_value": null,
                "comment": null,
                "has_error": 0,
                "created_at": null,
                "updated_at": "2022-02-09T07:26:38.000000Z",
                "task": null
            },
            {
                "id": 7868,
                "user_id": 2,
                "tour_data_id": 31,
                "task_id": 282,
                "check_value": null,
                "numeric_value": null,
                "comment": null,
                "has_error": 0,
                "created_at": null,
                "updated_at": null,
                "task": null
            },
            {
                "id": 7869,
                "user_id": 2,
                "tour_data_id": 31,
                "task_id": 285,
                "check_value": 1,
                "numeric_value": null,
                "comment": null,
                "has_error": 0,
                "created_at": null,
                "updated_at": "2022-02-09T07:26:38.000000Z",
                "task": null
            },
            {
                "id": 7870,
                "user_id": 2,
                "tour_data_id": 31,
                "task_id": 286,
                "check_value": null,
                "numeric_value": null,
                "comment": null,
                "has_error": 0,
                "created_at": null,
                "updated_at": null,
                "task": null
            },
            {
                "id": 7871,
                "user_id": 2,
                "tour_data_id": 31,
                "task_id": 804,
                "check_value": null,
                "numeric_value": null,
                "comment": null,
                "has_error": 0,
                "created_at": null,
                "updated_at": null,
                "task": null
            },
            {
                "id": 7872,
                "user_id": 2,
                "tour_data_id": 31,
                "task_id": 288,
                "check_value": null,
                "numeric_value": null,
                "comment": null,
                "has_error": 0,
                "created_at": null,
                "updated_at": null,
                "task": null
            },
            {
                "id": 7873,
                "user_id": 2,
                "tour_data_id": 31,
                "task_id": 686,
                "check_value": null,
                "numeric_value": null,
                "comment": null,
                "has_error": 0,
                "created_at": null,
                "updated_at": null,
                "task": null
            },
            {
                "id": 7874,
                "user_id": 2,
                "tour_data_id": 31,
                "task_id": 289,
                "check_value": null,
                "numeric_value": null,
                "comment": null,
                "has_error": 0,
                "created_at": null,
                "updated_at": null,
                "task": null
            },
            {
                "id": 7875,
                "user_id": 2,
                "tour_data_id": 31,
                "task_id": 291,
                "check_value": null,
                "numeric_value": null,
                "comment": null,
                "has_error": 0,
                "created_at": null,
                "updated_at": null,
                "task": null
            },
            {
                "id": 7876,
                "user_id": 2,
                "tour_data_id": 31,
                "task_id": 806,
                "check_value": null,
                "numeric_value": null,
                "comment": null,
                "has_error": 0,
                "created_at": null,
                "updated_at": null,
                "task": null
            },
            {
                "id": 7877,
                "user_id": 2,
                "tour_data_id": 31,
                "task_id": 826,
                "check_value": null,
                "numeric_value": null,
                "comment": null,
                "has_error": 0,
                "created_at": null,
                "updated_at": null,
                "task": null
            },
            {
                "id": 7878,
                "user_id": 2,
                "tour_data_id": 31,
                "task_id": 292,
                "check_value": 0,
                "numeric_value": "1.00000",
                "comment": null,
                "has_error": 1,
                "created_at": null,
                "updated_at": "2022-02-09T07:27:09.000000Z",
                "task": {
                    "id": 292,
                    "task_category_id": 114,
                    "label": null,
                    "smarttags": null,
                    "state": 1,
                    "profile_type": 4,
                    "check_type": 1,
                    "min_value": null,
                    "max_value": null,
                    "rrule": null,
                    "created_at": "2022-01-09T21:55:37.000000Z",
                    "updated_at": "2023-06-16T05:11:18.000000Z",
                    "task_category": {
                        "id": 114,
                        "parent_id": 113,
                        "name": "Propreté, Bruits, Fuites",
                        "instructions": null,
                        "created_at": "2022-01-09T21:55:37.000000Z",
                        "updated_at": "2022-01-09T21:55:37.000000Z"
                    }
                }
            },
            {
                "id": 7879,
                "user_id": 2,
                "tour_data_id": 31,
                "task_id": 805,
                "check_value": null,
                "numeric_value": null,
                "comment": null,
                "has_error": 0,
                "created_at": null,
                "updated_at": null,
                "task": {
                    "id": 805,
                    "task_category_id": 114,
                    "label": "Concentration de la préparante",
                    "smarttags": null,
                    "state": 1,
                    "profile_type": 4,
                    "check_type": 2,
                    "min_value": null,
                    "max_value": null,
                    "rrule": "DTSTART:20220110T000000\nRRULE:FREQ=WEEKLY;INTERVAL=1\n",
                    "created_at": "2022-01-10T20:05:07.000000Z",
                    "updated_at": "2022-01-20T06:05:35.000000Z",
                    "task_category": {
                        "id": 114,
                        "parent_id": 113,
                        "name": "Propreté, Bruits, Fuites",
                        "instructions": null,
                        "created_at": "2022-01-09T21:55:37.000000Z",
                        "updated_at": "2022-01-09T21:55:37.000000Z"
                    }
                }
            },
            {
                "id": 7880,
                "user_id": 2,
                "tour_data_id": 31,
                "task_id": 293,
                "check_value": null,
                "numeric_value": null,
                "comment": "Légère fuite d'huile",
                "has_error": 0,
                "created_at": null,
                "updated_at": "2022-02-09T07:27:51.000000Z",
                "task": {
                    "id": 293,
                    "task_category_id": 114,
                    "label": null,
                    "smarttags": null,
                    "state": 1,
                    "profile_type": 4,
                    "check_type": 5,
                    "min_value": null,
                    "max_value": null,
                    "rrule": null,
                    "created_at": "2022-01-09T21:55:37.000000Z",
                    "updated_at": "2022-01-09T21:55:37.000000Z",
                    "task_category": {
                        "id": 114,
                        "parent_id": 113,
                        "name": "Propreté, Bruits, Fuites",
                        "instructions": null,
                        "created_at": "2022-01-09T21:55:37.000000Z",
                        "updated_at": "2022-01-09T21:55:37.000000Z"
                    }
                }
            },
            {
                "id": 7881,
                "user_id": 2,
                "tour_data_id": 31,
                "task_id": 294,
                "check_value": 1,
                "numeric_value": null,
                "comment": null,
                "has_error": 0,
                "created_at": null,
                "updated_at": "2022-02-09T07:29:43.000000Z",
                "task": {
                    "id": 294,
                    "task_category_id": 116,
                    "label": null,
                    "smarttags": null,
                    "state": 1,
                    "profile_type": 4,
                    "check_type": 1,
                    "min_value": null,
                    "max_value": null,
                    "rrule": "DTSTART:20230616T000000\nRRULE:FREQ=WEEKLY;INTERVAL=1;BYDAY=MO,WE,FR\n",
                    "created_at": "2022-01-09T21:55:37.000000Z",
                    "updated_at": "2023-06-16T05:11:40.000000Z",
                    "task_category": {
                        "id": 116,
                        "parent_id": 115,
                        "name": "Propreté, bruits, odeurs",
                        "instructions": null,
                        "created_at": "2022-01-09T21:55:37.000000Z",
                        "updated_at": "2022-01-09T21:55:37.000000Z"
                    }
                }
            },
            {
                "id": 7882,
                "user_id": 2,
                "tour_data_id": 31,
                "task_id": 295,
                "check_value": null,
                "numeric_value": null,
                "comment": null,
                "has_error": 0,
                "created_at": null,
                "updated_at": null,
                "task": {
                    "id": 295,
                    "task_category_id": 116,
                    "label": null,
                    "smarttags": null,
                    "state": 1,
                    "profile_type": 4,
                    "check_type": 5,
                    "min_value": null,
                    "max_value": null,
                    "rrule": "DTSTART:20230616T000000\nRRULE:FREQ=WEEKLY;INTERVAL=1;BYDAY=MO,WE,FR\n",
                    "created_at": "2022-01-09T21:55:37.000000Z",
                    "updated_at": "2023-06-16T05:11:51.000000Z",
                    "task_category": {
                        "id": 116,
                        "parent_id": 115,
                        "name": "Propreté, bruits, odeurs",
                        "instructions": null,
                        "created_at": "2022-01-09T21:55:37.000000Z",
                        "updated_at": "2022-01-09T21:55:37.000000Z"
                    }
                }
            },
            {
                "id": 7883,
                "user_id": 2,
                "tour_data_id": 31,
                "task_id": 302,
                "check_value": null,
                "numeric_value": null,
                "comment": null,
                "has_error": 0,
                "created_at": null,
                "updated_at": null,
                "task": {
                    "id": 302,
                    "task_category_id": 122,
                    "label": "Niveaux et état cuves de désodo",
                    "smarttags": null,
                    "state": 1,
                    "profile_type": 4,
                    "check_type": 1,
                    "min_value": null,
                    "max_value": null,
                    "rrule": "DTSTART:20220120T000000\nRRULE:FREQ=WEEKLY;INTERVAL=1\n",
                    "created_at": "2022-01-09T21:55:37.000000Z",
                    "updated_at": "2022-06-13T03:39:43.000000Z",
                    "task_category": {
                        "id": 122,
                        "parent_id": 121,
                        "name": "Etat général des cuves",
                        "instructions": null,
                        "created_at": "2022-01-09T21:55:37.000000Z",
                        "updated_at": "2023-06-16T05:36:02.000000Z"
                    }
                }
            },
            {
                "id": 7884,
                "user_id": 2,
                "tour_data_id": 31,
                "task_id": 303,
                "check_value": null,
                "numeric_value": null,
                "comment": null,
                "has_error": 0,
                "created_at": null,
                "updated_at": null,
                "task": {
                    "id": 303,
                    "task_category_id": 122,
                    "label": null,
                    "smarttags": null,
                    "state": 1,
                    "profile_type": 4,
                    "check_type": 5,
                    "min_value": null,
                    "max_value": null,
                    "rrule": "DTSTART:20220120T000000\nRRULE:FREQ=WEEKLY;INTERVAL=1\n",
                    "created_at": "2022-01-09T21:55:37.000000Z",
                    "updated_at": "2022-02-11T13:09:03.000000Z",
                    "task_category": {
                        "id": 122,
                        "parent_id": 121,
                        "name": "Etat général des cuves",
                        "instructions": null,
                        "created_at": "2022-01-09T21:55:37.000000Z",
                        "updated_at": "2023-06-16T05:36:02.000000Z"
                    }
                }
            },
            {
                "id": 7885,
                "user_id": 2,
                "tour_data_id": 31,
                "task_id": 304,
                "check_value": null,
                "numeric_value": null,
                "comment": null,
                "has_error": 0,
                "created_at": null,
                "updated_at": null,
                "task": null
            },
            {
                "id": 7886,
                "user_id": 2,
                "tour_data_id": 31,
                "task_id": 305,
                "check_value": null,
                "numeric_value": null,
                "comment": null,
                "has_error": 0,
                "created_at": null,
                "updated_at": null,
                "task": null
            },
            {
                "id": 7887,
                "user_id": 2,
                "tour_data_id": 31,
                "task_id": 308,
                "check_value": 1,
                "numeric_value": null,
                "comment": null,
                "has_error": 0,
                "created_at": null,
                "updated_at": "2022-02-09T07:35:38.000000Z",
                "task": {
                    "id": 308,
                    "task_category_id": 125,
                    "label": "Pompe recirculation tour n°1 désodo",
                    "smarttags": null,
                    "state": 1,
                    "profile_type": 4,
                    "check_type": 1,
                    "min_value": null,
                    "max_value": null,
                    "rrule": "DTSTART:20220120T000000\nRRULE:FREQ=WEEKLY;INTERVAL=1\n",
                    "created_at": "2022-01-09T21:55:37.000000Z",
                    "updated_at": "2022-06-13T03:40:24.000000Z",
                    "task_category": {
                        "id": 125,
                        "parent_id": 121,
                        "name": "Pompe recirculation tour n°1",
                        "instructions": null,
                        "created_at": "2022-01-09T21:55:37.000000Z",
                        "updated_at": "2023-06-16T05:35:38.000000Z"
                    }
                }
            },
            {
                "id": 7888,
                "user_id": 2,
                "tour_data_id": 31,
                "task_id": 309,
                "check_value": null,
                "numeric_value": null,
                "comment": null,
                "has_error": 0,
                "created_at": null,
                "updated_at": null,
                "task": {
                    "id": 309,
                    "task_category_id": 125,
                    "label": null,
                    "smarttags": null,
                    "state": 1,
                    "profile_type": 4,
                    "check_type": 5,
                    "min_value": null,
                    "max_value": null,
                    "rrule": "DTSTART:20220120T000000\nRRULE:FREQ=WEEKLY;INTERVAL=1\n",
                    "created_at": "2022-01-09T21:55:37.000000Z",
                    "updated_at": "2022-02-11T13:09:21.000000Z",
                    "task_category": {
                        "id": 125,
                        "parent_id": 121,
                        "name": "Pompe recirculation tour n°1",
                        "instructions": null,
                        "created_at": "2022-01-09T21:55:37.000000Z",
                        "updated_at": "2023-06-16T05:35:38.000000Z"
                    }
                }
            },
            {
                "id": 7889,
                "user_id": 2,
                "tour_data_id": 31,
                "task_id": 310,
                "check_value": 1,
                "numeric_value": null,
                "comment": null,
                "has_error": 0,
                "created_at": null,
                "updated_at": "2022-02-09T07:35:38.000000Z",
                "task": {
                    "id": 310,
                    "task_category_id": 126,
                    "label": "Pompe recirculation tour n°2 désodo",
                    "smarttags": null,
                    "state": 1,
                    "profile_type": 4,
                    "check_type": 1,
                    "min_value": null,
                    "max_value": null,
                    "rrule": "DTSTART:20220120T000000\nRRULE:FREQ=WEEKLY;INTERVAL=1\n",
                    "created_at": "2022-01-09T21:55:37.000000Z",
                    "updated_at": "2022-06-13T03:40:46.000000Z",
                    "task_category": {
                        "id": 126,
                        "parent_id": 121,
                        "name": "Pompe recirculation tour n°2",
                        "instructions": null,
                        "created_at": "2022-01-09T21:55:37.000000Z",
                        "updated_at": "2023-06-16T05:35:29.000000Z"
                    }
                }
            },
            {
                "id": 7890,
                "user_id": 2,
                "tour_data_id": 31,
                "task_id": 311,
                "check_value": null,
                "numeric_value": null,
                "comment": null,
                "has_error": 0,
                "created_at": null,
                "updated_at": null,
                "task": {
                    "id": 311,
                    "task_category_id": 126,
                    "label": null,
                    "smarttags": null,
                    "state": 1,
                    "profile_type": 4,
                    "check_type": 5,
                    "min_value": null,
                    "max_value": null,
                    "rrule": "DTSTART:20220120T000000\nRRULE:FREQ=WEEKLY;INTERVAL=1\n",
                    "created_at": "2022-01-09T21:55:37.000000Z",
                    "updated_at": "2022-02-11T13:09:29.000000Z",
                    "task_category": {
                        "id": 126,
                        "parent_id": 121,
                        "name": "Pompe recirculation tour n°2",
                        "instructions": null,
                        "created_at": "2022-01-09T21:55:37.000000Z",
                        "updated_at": "2023-06-16T05:35:29.000000Z"
                    }
                }
            },
            {
                "id": 7891,
                "user_id": 2,
                "tour_data_id": 31,
                "task_id": 312,
                "check_value": 1,
                "numeric_value": null,
                "comment": null,
                "has_error": 0,
                "created_at": null,
                "updated_at": "2022-02-09T07:35:38.000000Z",
                "task": null
            },
            {
                "id": 7892,
                "user_id": 2,
                "tour_data_id": 31,
                "task_id": 313,
                "check_value": null,
                "numeric_value": null,
                "comment": null,
                "has_error": 0,
                "created_at": null,
                "updated_at": null,
                "task": null
            },
            {
                "id": 7893,
                "user_id": 2,
                "tour_data_id": 31,
                "task_id": 688,
                "check_value": null,
                "numeric_value": "0.00000",
                "comment": null,
                "has_error": 0,
                "created_at": null,
                "updated_at": "2022-02-09T07:35:27.000000Z",
                "task": null
            },
            {
                "id": 7894,
                "user_id": 2,
                "tour_data_id": 31,
                "task_id": 325,
                "check_value": 1,
                "numeric_value": null,
                "comment": null,
                "has_error": 0,
                "created_at": null,
                "updated_at": "2022-02-09T07:35:27.000000Z",
                "task": null
            },
            {
                "id": 7895,
                "user_id": 2,
                "tour_data_id": 31,
                "task_id": 326,
                "check_value": null,
                "numeric_value": null,
                "comment": null,
                "has_error": 0,
                "created_at": null,
                "updated_at": null,
                "task": null
            },
            {
                "id": 7896,
                "user_id": 2,
                "tour_data_id": 31,
                "task_id": 329,
                "check_value": null,
                "numeric_value": null,
                "comment": null,
                "has_error": 0,
                "created_at": null,
                "updated_at": null,
                "task": {
                    "id": 329,
                    "task_category_id": 137,
                    "label": null,
                    "smarttags": null,
                    "state": 1,
                    "profile_type": 4,
                    "check_type": 1,
                    "min_value": null,
                    "max_value": null,
                    "rrule": null,
                    "created_at": "2022-01-09T21:55:37.000000Z",
                    "updated_at": "2022-01-09T21:55:37.000000Z",
                    "task_category": {
                        "id": 137,
                        "parent_id": 136,
                        "name": "Débitmètre poste toutes eaux n°2",
                        "instructions": null,
                        "created_at": "2022-01-09T21:55:37.000000Z",
                        "updated_at": "2022-01-09T21:55:37.000000Z"
                    }
                }
            },
            {
                "id": 7897,
                "user_id": 2,
                "tour_data_id": 31,
                "task_id": 330,
                "check_value": null,
                "numeric_value": null,
                "comment": null,
                "has_error": 0,
                "created_at": null,
                "updated_at": null,
                "task": {
                    "id": 330,
                    "task_category_id": 137,
                    "label": "Valeur du débitmètre",
                    "smarttags": null,
                    "state": 1,
                    "profile_type": 4,
                    "check_type": 4,
                    "min_value": null,
                    "max_value": null,
                    "rrule": null,
                    "created_at": "2022-01-09T21:55:37.000000Z",
                    "updated_at": "2022-01-09T21:55:37.000000Z",
                    "task_category": {
                        "id": 137,
                        "parent_id": 136,
                        "name": "Débitmètre poste toutes eaux n°2",
                        "instructions": null,
                        "created_at": "2022-01-09T21:55:37.000000Z",
                        "updated_at": "2022-01-09T21:55:37.000000Z"
                    }
                }
            },
            {
                "id": 7898,
                "user_id": 2,
                "tour_data_id": 31,
                "task_id": 331,
                "check_value": null,
                "numeric_value": null,
                "comment": null,
                "has_error": 0,
                "created_at": null,
                "updated_at": null,
                "task": {
                    "id": 331,
                    "task_category_id": 137,
                    "label": null,
                    "smarttags": null,
                    "state": 1,
                    "profile_type": 4,
                    "check_type": 5,
                    "min_value": null,
                    "max_value": null,
                    "rrule": null,
                    "created_at": "2022-01-09T21:55:37.000000Z",
                    "updated_at": "2022-01-09T21:55:37.000000Z",
                    "task_category": {
                        "id": 137,
                        "parent_id": 136,
                        "name": "Débitmètre poste toutes eaux n°2",
                        "instructions": null,
                        "created_at": "2022-01-09T21:55:37.000000Z",
                        "updated_at": "2022-01-09T21:55:37.000000Z"
                    }
                }
            },
            {
                "id": 7899,
                "user_id": 2,
                "tour_data_id": 31,
                "task_id": 332,
                "check_value": null,
                "numeric_value": null,
                "comment": null,
                "has_error": 0,
                "created_at": null,
                "updated_at": null,
                "task": {
                    "id": 332,
                    "task_category_id": 138,
                    "label": null,
                    "smarttags": null,
                    "state": 1,
                    "profile_type": 4,
                    "check_type": 1,
                    "min_value": null,
                    "max_value": null,
                    "rrule": null,
                    "created_at": "2022-01-09T21:55:37.000000Z",
                    "updated_at": "2022-01-09T21:55:37.000000Z",
                    "task_category": {
                        "id": 138,
                        "parent_id": 136,
                        "name": "Pompe de transfert n°1",
                        "instructions": null,
                        "created_at": "2022-01-09T21:55:37.000000Z",
                        "updated_at": "2022-01-09T21:55:37.000000Z"
                    }
                }
            },
            {
                "id": 7900,
                "user_id": 2,
                "tour_data_id": 31,
                "task_id": 333,
                "check_value": null,
                "numeric_value": null,
                "comment": null,
                "has_error": 0,
                "created_at": null,
                "updated_at": null,
                "task": {
                    "id": 333,
                    "task_category_id": 138,
                    "label": null,
                    "smarttags": null,
                    "state": 1,
                    "profile_type": 4,
                    "check_type": 5,
                    "min_value": null,
                    "max_value": null,
                    "rrule": null,
                    "created_at": "2022-01-09T21:55:37.000000Z",
                    "updated_at": "2022-01-09T21:55:37.000000Z",
                    "task_category": {
                        "id": 138,
                        "parent_id": 136,
                        "name": "Pompe de transfert n°1",
                        "instructions": null,
                        "created_at": "2022-01-09T21:55:37.000000Z",
                        "updated_at": "2022-01-09T21:55:37.000000Z"
                    }
                }
            },
            {
                "id": 7901,
                "user_id": 2,
                "tour_data_id": 31,
                "task_id": 334,
                "check_value": null,
                "numeric_value": null,
                "comment": null,
                "has_error": 0,
                "created_at": null,
                "updated_at": null,
                "task": {
                    "id": 334,
                    "task_category_id": 139,
                    "label": null,
                    "smarttags": null,
                    "state": 1,
                    "profile_type": 4,
                    "check_type": 1,
                    "min_value": null,
                    "max_value": null,
                    "rrule": null,
                    "created_at": "2022-01-09T21:55:37.000000Z",
                    "updated_at": "2022-01-09T21:55:37.000000Z",
                    "task_category": {
                        "id": 139,
                        "parent_id": 136,
                        "name": "Pompe de transfert n°2",
                        "instructions": null,
                        "created_at": "2022-01-09T21:55:37.000000Z",
                        "updated_at": "2022-01-09T21:55:37.000000Z"
                    }
                }
            },
            {
                "id": 7902,
                "user_id": 2,
                "tour_data_id": 31,
                "task_id": 335,
                "check_value": null,
                "numeric_value": null,
                "comment": null,
                "has_error": 0,
                "created_at": null,
                "updated_at": null,
                "task": {
                    "id": 335,
                    "task_category_id": 139,
                    "label": null,
                    "smarttags": null,
                    "state": 1,
                    "profile_type": 4,
                    "check_type": 5,
                    "min_value": null,
                    "max_value": null,
                    "rrule": null,
                    "created_at": "2022-01-09T21:55:37.000000Z",
                    "updated_at": "2022-01-09T21:55:37.000000Z",
                    "task_category": {
                        "id": 139,
                        "parent_id": 136,
                        "name": "Pompe de transfert n°2",
                        "instructions": null,
                        "created_at": "2022-01-09T21:55:37.000000Z",
                        "updated_at": "2022-01-09T21:55:37.000000Z"
                    }
                }
            },
            {
                "id": 7903,
                "user_id": 2,
                "tour_data_id": 31,
                "task_id": 336,
                "check_value": null,
                "numeric_value": null,
                "comment": null,
                "has_error": 0,
                "created_at": null,
                "updated_at": null,
                "task": {
                    "id": 336,
                    "task_category_id": 140,
                    "label": null,
                    "smarttags": null,
                    "state": 1,
                    "profile_type": 4,
                    "check_type": 1,
                    "min_value": null,
                    "max_value": null,
                    "rrule": null,
                    "created_at": "2022-01-09T21:55:37.000000Z",
                    "updated_at": "2022-01-09T21:55:37.000000Z",
                    "task_category": {
                        "id": 140,
                        "parent_id": 136,
                        "name": "Pompe 1 soutirage décanteur 1 F2",
                        "instructions": null,
                        "created_at": "2022-01-09T21:55:37.000000Z",
                        "updated_at": "2022-01-09T21:55:37.000000Z"
                    }
                }
            },
            {
                "id": 7904,
                "user_id": 2,
                "tour_data_id": 31,
                "task_id": 337,
                "check_value": null,
                "numeric_value": null,
                "comment": null,
                "has_error": 0,
                "created_at": null,
                "updated_at": null,
                "task": {
                    "id": 337,
                    "task_category_id": 140,
                    "label": null,
                    "smarttags": null,
                    "state": 1,
                    "profile_type": 4,
                    "check_type": 5,
                    "min_value": null,
                    "max_value": null,
                    "rrule": null,
                    "created_at": "2022-01-09T21:55:37.000000Z",
                    "updated_at": "2022-01-09T21:55:37.000000Z",
                    "task_category": {
                        "id": 140,
                        "parent_id": 136,
                        "name": "Pompe 1 soutirage décanteur 1 F2",
                        "instructions": null,
                        "created_at": "2022-01-09T21:55:37.000000Z",
                        "updated_at": "2022-01-09T21:55:37.000000Z"
                    }
                }
            },
            {
                "id": 7905,
                "user_id": 2,
                "tour_data_id": 31,
                "task_id": 338,
                "check_value": null,
                "numeric_value": null,
                "comment": null,
                "has_error": 0,
                "created_at": null,
                "updated_at": null,
                "task": {
                    "id": 338,
                    "task_category_id": 141,
                    "label": null,
                    "smarttags": null,
                    "state": 1,
                    "profile_type": 4,
                    "check_type": 1,
                    "min_value": null,
                    "max_value": null,
                    "rrule": null,
                    "created_at": "2022-01-09T21:55:37.000000Z",
                    "updated_at": "2022-01-09T21:55:37.000000Z",
                    "task_category": {
                        "id": 141,
                        "parent_id": 136,
                        "name": "Pompe 2 soutirage décanteur 1 F2",
                        "instructions": null,
                        "created_at": "2022-01-09T21:55:37.000000Z",
                        "updated_at": "2022-01-09T21:55:37.000000Z"
                    }
                }
            },
            {
                "id": 7906,
                "user_id": 2,
                "tour_data_id": 31,
                "task_id": 339,
                "check_value": null,
                "numeric_value": null,
                "comment": null,
                "has_error": 0,
                "created_at": null,
                "updated_at": null,
                "task": {
                    "id": 339,
                    "task_category_id": 141,
                    "label": null,
                    "smarttags": null,
                    "state": 1,
                    "profile_type": 4,
                    "check_type": 5,
                    "min_value": null,
                    "max_value": null,
                    "rrule": null,
                    "created_at": "2022-01-09T21:55:37.000000Z",
                    "updated_at": "2022-01-09T21:55:37.000000Z",
                    "task_category": {
                        "id": 141,
                        "parent_id": 136,
                        "name": "Pompe 2 soutirage décanteur 1 F2",
                        "instructions": null,
                        "created_at": "2022-01-09T21:55:37.000000Z",
                        "updated_at": "2022-01-09T21:55:37.000000Z"
                    }
                }
            },
            {
                "id": 7907,
                "user_id": 2,
                "tour_data_id": 31,
                "task_id": 340,
                "check_value": null,
                "numeric_value": null,
                "comment": null,
                "has_error": 0,
                "created_at": null,
                "updated_at": null,
                "task": {
                    "id": 340,
                    "task_category_id": 142,
                    "label": null,
                    "smarttags": null,
                    "state": 1,
                    "profile_type": 4,
                    "check_type": 1,
                    "min_value": null,
                    "max_value": null,
                    "rrule": null,
                    "created_at": "2022-01-09T21:55:37.000000Z",
                    "updated_at": "2022-01-09T21:55:37.000000Z",
                    "task_category": {
                        "id": 142,
                        "parent_id": 136,
                        "name": "Pompe 1 soutirage décanteur 2 F2",
                        "instructions": null,
                        "created_at": "2022-01-09T21:55:37.000000Z",
                        "updated_at": "2022-01-09T21:55:37.000000Z"
                    }
                }
            },
            {
                "id": 7908,
                "user_id": 2,
                "tour_data_id": 31,
                "task_id": 341,
                "check_value": null,
                "numeric_value": null,
                "comment": null,
                "has_error": 0,
                "created_at": null,
                "updated_at": null,
                "task": {
                    "id": 341,
                    "task_category_id": 142,
                    "label": null,
                    "smarttags": null,
                    "state": 1,
                    "profile_type": 4,
                    "check_type": 5,
                    "min_value": null,
                    "max_value": null,
                    "rrule": null,
                    "created_at": "2022-01-09T21:55:37.000000Z",
                    "updated_at": "2022-01-09T21:55:37.000000Z",
                    "task_category": {
                        "id": 142,
                        "parent_id": 136,
                        "name": "Pompe 1 soutirage décanteur 2 F2",
                        "instructions": null,
                        "created_at": "2022-01-09T21:55:37.000000Z",
                        "updated_at": "2022-01-09T21:55:37.000000Z"
                    }
                }
            },
            {
                "id": 7909,
                "user_id": 2,
                "tour_data_id": 31,
                "task_id": 342,
                "check_value": null,
                "numeric_value": null,
                "comment": null,
                "has_error": 0,
                "created_at": null,
                "updated_at": null,
                "task": {
                    "id": 342,
                    "task_category_id": 143,
                    "label": null,
                    "smarttags": null,
                    "state": 1,
                    "profile_type": 4,
                    "check_type": 1,
                    "min_value": null,
                    "max_value": null,
                    "rrule": null,
                    "created_at": "2022-01-09T21:55:37.000000Z",
                    "updated_at": "2022-01-09T21:55:37.000000Z",
                    "task_category": {
                        "id": 143,
                        "parent_id": 136,
                        "name": "Pompe 2 soutirage décanteur 2 F2",
                        "instructions": null,
                        "created_at": "2022-01-09T21:55:37.000000Z",
                        "updated_at": "2022-01-09T21:55:37.000000Z"
                    }
                }
            },
            {
                "id": 7910,
                "user_id": 2,
                "tour_data_id": 31,
                "task_id": 343,
                "check_value": null,
                "numeric_value": null,
                "comment": null,
                "has_error": 0,
                "created_at": null,
                "updated_at": null,
                "task": {
                    "id": 343,
                    "task_category_id": 143,
                    "label": null,
                    "smarttags": null,
                    "state": 1,
                    "profile_type": 4,
                    "check_type": 5,
                    "min_value": null,
                    "max_value": null,
                    "rrule": null,
                    "created_at": "2022-01-09T21:55:37.000000Z",
                    "updated_at": "2022-01-09T21:55:37.000000Z",
                    "task_category": {
                        "id": 143,
                        "parent_id": 136,
                        "name": "Pompe 2 soutirage décanteur 2 F2",
                        "instructions": null,
                        "created_at": "2022-01-09T21:55:37.000000Z",
                        "updated_at": "2022-01-09T21:55:37.000000Z"
                    }
                }
            },
            {
                "id": 7911,
                "user_id": 2,
                "tour_data_id": 31,
                "task_id": 352,
                "check_value": null,
                "numeric_value": null,
                "comment": null,
                "has_error": 0,
                "created_at": null,
                "updated_at": null,
                "task": {
                    "id": 352,
                    "task_category_id": 148,
                    "label": null,
                    "smarttags": null,
                    "state": 1,
                    "profile_type": 4,
                    "check_type": 1,
                    "min_value": null,
                    "max_value": null,
                    "rrule": null,
                    "created_at": "2022-01-09T21:55:37.000000Z",
                    "updated_at": "2022-01-09T21:55:37.000000Z",
                    "task_category": {
                        "id": 148,
                        "parent_id": 136,
                        "name": "Pompe table d'égouttage n°1",
                        "instructions": null,
                        "created_at": "2022-01-09T21:55:37.000000Z",
                        "updated_at": "2022-01-09T21:55:37.000000Z"
                    }
                }
            },
            {
                "id": 7912,
                "user_id": 2,
                "tour_data_id": 31,
                "task_id": 353,
                "check_value": null,
                "numeric_value": null,
                "comment": null,
                "has_error": 0,
                "created_at": null,
                "updated_at": null,
                "task": {
                    "id": 353,
                    "task_category_id": 148,
                    "label": null,
                    "smarttags": null,
                    "state": 1,
                    "profile_type": 4,
                    "check_type": 5,
                    "min_value": null,
                    "max_value": null,
                    "rrule": null,
                    "created_at": "2022-01-09T21:55:37.000000Z",
                    "updated_at": "2022-01-09T21:55:37.000000Z",
                    "task_category": {
                        "id": 148,
                        "parent_id": 136,
                        "name": "Pompe table d'égouttage n°1",
                        "instructions": null,
                        "created_at": "2022-01-09T21:55:37.000000Z",
                        "updated_at": "2022-01-09T21:55:37.000000Z"
                    }
                }
            },
            {
                "id": 7913,
                "user_id": 2,
                "tour_data_id": 31,
                "task_id": 354,
                "check_value": null,
                "numeric_value": null,
                "comment": null,
                "has_error": 0,
                "created_at": null,
                "updated_at": null,
                "task": {
                    "id": 354,
                    "task_category_id": 149,
                    "label": null,
                    "smarttags": null,
                    "state": 1,
                    "profile_type": 4,
                    "check_type": 1,
                    "min_value": null,
                    "max_value": null,
                    "rrule": null,
                    "created_at": "2022-01-09T21:55:37.000000Z",
                    "updated_at": "2022-01-09T21:55:37.000000Z",
                    "task_category": {
                        "id": 149,
                        "parent_id": 136,
                        "name": "Pompe table d'égouttage n°2",
                        "instructions": null,
                        "created_at": "2022-01-09T21:55:37.000000Z",
                        "updated_at": "2022-01-09T21:55:37.000000Z"
                    }
                }
            },
            {
                "id": 7914,
                "user_id": 2,
                "tour_data_id": 31,
                "task_id": 355,
                "check_value": null,
                "numeric_value": null,
                "comment": null,
                "has_error": 0,
                "created_at": null,
                "updated_at": null,
                "task": {
                    "id": 355,
                    "task_category_id": 149,
                    "label": null,
                    "smarttags": null,
                    "state": 1,
                    "profile_type": 4,
                    "check_type": 5,
                    "min_value": null,
                    "max_value": null,
                    "rrule": null,
                    "created_at": "2022-01-09T21:55:37.000000Z",
                    "updated_at": "2022-01-09T21:55:37.000000Z",
                    "task_category": {
                        "id": 149,
                        "parent_id": 136,
                        "name": "Pompe table d'égouttage n°2",
                        "instructions": null,
                        "created_at": "2022-01-09T21:55:37.000000Z",
                        "updated_at": "2022-01-09T21:55:37.000000Z"
                    }
                }
            },
            {
                "id": 7915,
                "user_id": 2,
                "tour_data_id": 31,
                "task_id": 356,
                "check_value": null,
                "numeric_value": null,
                "comment": null,
                "has_error": 0,
                "created_at": null,
                "updated_at": null,
                "task": null
            },
            {
                "id": 7916,
                "user_id": 2,
                "tour_data_id": 31,
                "task_id": 357,
                "check_value": null,
                "numeric_value": null,
                "comment": null,
                "has_error": 0,
                "created_at": null,
                "updated_at": null,
                "task": null
            },
            {
                "id": 7917,
                "user_id": 2,
                "tour_data_id": 31,
                "task_id": 819,
                "check_value": null,
                "numeric_value": null,
                "comment": null,
                "has_error": 0,
                "created_at": null,
                "updated_at": null,
                "task": null
            },
            {
                "id": 7918,
                "user_id": 2,
                "tour_data_id": 31,
                "task_id": 820,
                "check_value": null,
                "numeric_value": null,
                "comment": null,
                "has_error": 0,
                "created_at": null,
                "updated_at": null,
                "task": null
            },
            {
                "id": 7919,
                "user_id": 2,
                "tour_data_id": 31,
                "task_id": 821,
                "check_value": null,
                "numeric_value": null,
                "comment": null,
                "has_error": 0,
                "created_at": null,
                "updated_at": null,
                "task": {
                    "id": 821,
                    "task_category_id": 410,
                    "label": null,
                    "smarttags": null,
                    "state": 1,
                    "profile_type": 4,
                    "check_type": 4,
                    "min_value": null,
                    "max_value": null,
                    "rrule": null,
                    "created_at": "2022-01-10T20:25:38.000000Z",
                    "updated_at": "2022-01-10T20:25:38.000000Z",
                    "task_category": {
                        "id": 410,
                        "parent_id": 136,
                        "name": "Sonde concentration bâche à boue (g/L)",
                        "instructions": null,
                        "created_at": "2022-01-10T20:25:27.000000Z",
                        "updated_at": "2022-01-10T20:25:29.000000Z"
                    }
                }
            },
            {
                "id": 7920,
                "user_id": 2,
                "tour_data_id": 31,
                "task_id": 822,
                "check_value": null,
                "numeric_value": null,
                "comment": null,
                "has_error": 0,
                "created_at": null,
                "updated_at": null,
                "task": {
                    "id": 822,
                    "task_category_id": 410,
                    "label": null,
                    "smarttags": null,
                    "state": 1,
                    "profile_type": 4,
                    "check_type": 1,
                    "min_value": null,
                    "max_value": null,
                    "rrule": null,
                    "created_at": "2022-01-10T20:25:56.000000Z",
                    "updated_at": "2022-01-24T08:27:41.000000Z",
                    "task_category": {
                        "id": 410,
                        "parent_id": 136,
                        "name": "Sonde concentration bâche à boue (g/L)",
                        "instructions": null,
                        "created_at": "2022-01-10T20:25:27.000000Z",
                        "updated_at": "2022-01-10T20:25:29.000000Z"
                    }
                }
            },
            {
                "id": 7921,
                "user_id": 2,
                "tour_data_id": 31,
                "task_id": 360,
                "check_value": 1,
                "numeric_value": null,
                "comment": null,
                "has_error": 0,
                "created_at": null,
                "updated_at": "2022-02-09T07:35:59.000000Z",
                "task": {
                    "id": 360,
                    "task_category_id": 153,
                    "label": null,
                    "smarttags": null,
                    "state": 1,
                    "profile_type": 4,
                    "check_type": 1,
                    "min_value": null,
                    "max_value": null,
                    "rrule": null,
                    "created_at": "2022-01-09T21:55:37.000000Z",
                    "updated_at": "2022-01-09T21:55:37.000000Z",
                    "task_category": {
                        "id": 153,
                        "parent_id": 152,
                        "name": "État général",
                        "instructions": null,
                        "created_at": "2022-01-09T21:55:37.000000Z",
                        "updated_at": "2023-06-16T05:42:24.000000Z"
                    }
                }
            },
            {
                "id": 7922,
                "user_id": 2,
                "tour_data_id": 31,
                "task_id": 362,
                "check_value": null,
                "numeric_value": null,
                "comment": null,
                "has_error": 0,
                "created_at": null,
                "updated_at": null,
                "task": {
                    "id": 362,
                    "task_category_id": 153,
                    "label": null,
                    "smarttags": null,
                    "state": 1,
                    "profile_type": 4,
                    "check_type": 5,
                    "min_value": null,
                    "max_value": null,
                    "rrule": null,
                    "created_at": "2022-01-09T21:55:37.000000Z",
                    "updated_at": "2022-01-09T21:55:37.000000Z",
                    "task_category": {
                        "id": 153,
                        "parent_id": 152,
                        "name": "État général",
                        "instructions": null,
                        "created_at": "2022-01-09T21:55:37.000000Z",
                        "updated_at": "2023-06-16T05:42:24.000000Z"
                    }
                }
            },
            {
                "id": 7923,
                "user_id": 2,
                "tour_data_id": 31,
                "task_id": 363,
                "check_value": 1,
                "numeric_value": null,
                "comment": null,
                "has_error": 0,
                "created_at": null,
                "updated_at": "2022-02-09T07:35:59.000000Z",
                "task": null
            },
            {
                "id": 7924,
                "user_id": 2,
                "tour_data_id": 31,
                "task_id": 365,
                "check_value": null,
                "numeric_value": null,
                "comment": null,
                "has_error": 0,
                "created_at": null,
                "updated_at": null,
                "task": null
            },
            {
                "id": 7925,
                "user_id": 2,
                "tour_data_id": 31,
                "task_id": 372,
                "check_value": 1,
                "numeric_value": null,
                "comment": null,
                "has_error": 0,
                "created_at": null,
                "updated_at": "2022-02-09T07:35:59.000000Z",
                "task": {
                    "id": 372,
                    "task_category_id": 158,
                    "label": null,
                    "smarttags": null,
                    "state": 1,
                    "profile_type": 4,
                    "check_type": 1,
                    "min_value": null,
                    "max_value": null,
                    "rrule": null,
                    "created_at": "2022-01-09T21:55:37.000000Z",
                    "updated_at": "2022-01-09T21:55:37.000000Z",
                    "task_category": {
                        "id": 158,
                        "parent_id": 157,
                        "name": "État général",
                        "instructions": null,
                        "created_at": "2022-01-09T21:55:37.000000Z",
                        "updated_at": "2023-06-16T05:42:33.000000Z"
                    }
                }
            },
            {
                "id": 7926,
                "user_id": 2,
                "tour_data_id": 31,
                "task_id": 374,
                "check_value": null,
                "numeric_value": null,
                "comment": null,
                "has_error": 0,
                "created_at": null,
                "updated_at": null,
                "task": {
                    "id": 374,
                    "task_category_id": 158,
                    "label": null,
                    "smarttags": null,
                    "state": 1,
                    "profile_type": 4,
                    "check_type": 5,
                    "min_value": null,
                    "max_value": null,
                    "rrule": null,
                    "created_at": "2022-01-09T21:55:37.000000Z",
                    "updated_at": "2022-01-09T21:55:37.000000Z",
                    "task_category": {
                        "id": 158,
                        "parent_id": 157,
                        "name": "État général",
                        "instructions": null,
                        "created_at": "2022-01-09T21:55:37.000000Z",
                        "updated_at": "2023-06-16T05:42:33.000000Z"
                    }
                }
            },
            {
                "id": 7927,
                "user_id": 2,
                "tour_data_id": 31,
                "task_id": 375,
                "check_value": 1,
                "numeric_value": null,
                "comment": null,
                "has_error": 0,
                "created_at": null,
                "updated_at": "2022-02-09T07:35:59.000000Z",
                "task": null
            },
            {
                "id": 7928,
                "user_id": 2,
                "tour_data_id": 31,
                "task_id": 377,
                "check_value": null,
                "numeric_value": null,
                "comment": null,
                "has_error": 0,
                "created_at": null,
                "updated_at": null,
                "task": null
            },
            {
                "id": 7929,
                "user_id": 2,
                "tour_data_id": 31,
                "task_id": 386,
                "check_value": 1,
                "numeric_value": null,
                "comment": null,
                "has_error": 0,
                "created_at": null,
                "updated_at": "2022-02-09T07:35:59.000000Z",
                "task": {
                    "id": 386,
                    "task_category_id": 164,
                    "label": "Vanne ouverte",
                    "smarttags": null,
                    "state": 1,
                    "profile_type": 4,
                    "check_type": 2,
                    "min_value": null,
                    "max_value": null,
                    "rrule": null,
                    "created_at": "2022-01-09T21:55:37.000000Z",
                    "updated_at": "2023-06-16T05:52:10.000000Z",
                    "task_category": {
                        "id": 164,
                        "parent_id": 162,
                        "name": "État général",
                        "instructions": null,
                        "created_at": "2022-01-09T21:55:37.000000Z",
                        "updated_at": "2022-01-09T21:55:37.000000Z"
                    }
                }
            },
            {
                "id": 7930,
                "user_id": 2,
                "tour_data_id": 31,
                "task_id": 387,
                "check_value": null,
                "numeric_value": null,
                "comment": null,
                "has_error": 0,
                "created_at": null,
                "updated_at": null,
                "task": {
                    "id": 387,
                    "task_category_id": 164,
                    "label": null,
                    "smarttags": null,
                    "state": 1,
                    "profile_type": 4,
                    "check_type": 5,
                    "min_value": null,
                    "max_value": null,
                    "rrule": null,
                    "created_at": "2022-01-09T21:55:37.000000Z",
                    "updated_at": "2022-01-09T21:55:37.000000Z",
                    "task_category": {
                        "id": 164,
                        "parent_id": 162,
                        "name": "État général",
                        "instructions": null,
                        "created_at": "2022-01-09T21:55:37.000000Z",
                        "updated_at": "2022-01-09T21:55:37.000000Z"
                    }
                }
            },
            {
                "id": 7931,
                "user_id": 2,
                "tour_data_id": 31,
                "task_id": 921,
                "check_value": null,
                "numeric_value": null,
                "comment": null,
                "has_error": 0,
                "created_at": null,
                "updated_at": null,
                "task": {
                    "id": 921,
                    "task_category_id": 445,
                    "label": "Hauteur du voile de boue",
                    "smarttags": null,
                    "state": 1,
                    "profile_type": 4,
                    "check_type": 2,
                    "min_value": null,
                    "max_value": null,
                    "rrule": "DTSTART:20220120T000000\nRRULE:FREQ=WEEKLY;INTERVAL=1;BYDAY=TU,TH\n",
                    "created_at": "2022-01-20T06:12:57.000000Z",
                    "updated_at": "2022-06-28T05:43:20.000000Z",
                    "task_category": {
                        "id": 445,
                        "parent_id": 167,
                        "name": "Clarificateur F1 n°1",
                        "instructions": null,
                        "created_at": "2022-01-20T06:12:11.000000Z",
                        "updated_at": "2022-01-20T06:14:17.000000Z"
                    }
                }
            },
            {
                "id": 7932,
                "user_id": 2,
                "tour_data_id": 31,
                "task_id": 922,
                "check_value": null,
                "numeric_value": null,
                "comment": null,
                "has_error": 0,
                "created_at": null,
                "updated_at": null,
                "task": {
                    "id": 922,
                    "task_category_id": 445,
                    "label": "Absence départ de flocs",
                    "smarttags": null,
                    "state": 1,
                    "profile_type": 4,
                    "check_type": 1,
                    "min_value": null,
                    "max_value": null,
                    "rrule": null,
                    "created_at": "2022-01-20T06:13:34.000000Z",
                    "updated_at": "2022-01-20T06:13:34.000000Z",
                    "task_category": {
                        "id": 445,
                        "parent_id": 167,
                        "name": "Clarificateur F1 n°1",
                        "instructions": null,
                        "created_at": "2022-01-20T06:12:11.000000Z",
                        "updated_at": "2022-01-20T06:14:17.000000Z"
                    }
                }
            },
            {
                "id": 7933,
                "user_id": 2,
                "tour_data_id": 31,
                "task_id": 924,
                "check_value": null,
                "numeric_value": null,
                "comment": null,
                "has_error": 0,
                "created_at": null,
                "updated_at": null,
                "task": {
                    "id": 924,
                    "task_category_id": 445,
                    "label": "Propreté des goulottes",
                    "smarttags": null,
                    "state": 1,
                    "profile_type": 4,
                    "check_type": 1,
                    "min_value": null,
                    "max_value": null,
                    "rrule": null,
                    "created_at": "2022-01-20T06:14:59.000000Z",
                    "updated_at": "2022-01-20T06:14:59.000000Z",
                    "task_category": {
                        "id": 445,
                        "parent_id": 167,
                        "name": "Clarificateur F1 n°1",
                        "instructions": null,
                        "created_at": "2022-01-20T06:12:11.000000Z",
                        "updated_at": "2022-01-20T06:14:17.000000Z"
                    }
                }
            },
            {
                "id": 7934,
                "user_id": 2,
                "tour_data_id": 31,
                "task_id": 923,
                "check_value": null,
                "numeric_value": null,
                "comment": null,
                "has_error": 0,
                "created_at": null,
                "updated_at": null,
                "task": {
                    "id": 923,
                    "task_category_id": 445,
                    "label": null,
                    "smarttags": null,
                    "state": 1,
                    "profile_type": 4,
                    "check_type": 5,
                    "min_value": null,
                    "max_value": null,
                    "rrule": null,
                    "created_at": "2022-01-20T06:13:39.000000Z",
                    "updated_at": "2022-01-20T06:13:39.000000Z",
                    "task_category": {
                        "id": 445,
                        "parent_id": 167,
                        "name": "Clarificateur F1 n°1",
                        "instructions": null,
                        "created_at": "2022-01-20T06:12:11.000000Z",
                        "updated_at": "2022-01-20T06:14:17.000000Z"
                    }
                }
            },
            {
                "id": 7935,
                "user_id": 2,
                "tour_data_id": 31,
                "task_id": 925,
                "check_value": null,
                "numeric_value": null,
                "comment": null,
                "has_error": 0,
                "created_at": null,
                "updated_at": null,
                "task": {
                    "id": 925,
                    "task_category_id": 446,
                    "label": "Hauteur du voile de boue",
                    "smarttags": null,
                    "state": 1,
                    "profile_type": 4,
                    "check_type": 2,
                    "min_value": null,
                    "max_value": null,
                    "rrule": "DTSTART:20220120T000000\nRRULE:FREQ=WEEKLY;INTERVAL=1;BYDAY=TU,TH\n",
                    "created_at": "2022-01-20T06:16:14.000000Z",
                    "updated_at": "2022-06-28T05:43:28.000000Z",
                    "task_category": {
                        "id": 446,
                        "parent_id": 167,
                        "name": "Clarificateur F1 n°2",
                        "instructions": null,
                        "created_at": "2022-01-20T06:15:35.000000Z",
                        "updated_at": "2022-01-20T06:15:53.000000Z"
                    }
                }
            },
            {
                "id": 7936,
                "user_id": 2,
                "tour_data_id": 31,
                "task_id": 926,
                "check_value": null,
                "numeric_value": null,
                "comment": null,
                "has_error": 0,
                "created_at": null,
                "updated_at": null,
                "task": {
                    "id": 926,
                    "task_category_id": 446,
                    "label": "Absence départ de flocs",
                    "smarttags": null,
                    "state": 1,
                    "profile_type": 4,
                    "check_type": 1,
                    "min_value": null,
                    "max_value": null,
                    "rrule": null,
                    "created_at": "2022-01-20T06:16:44.000000Z",
                    "updated_at": "2022-01-20T06:16:44.000000Z",
                    "task_category": {
                        "id": 446,
                        "parent_id": 167,
                        "name": "Clarificateur F1 n°2",
                        "instructions": null,
                        "created_at": "2022-01-20T06:15:35.000000Z",
                        "updated_at": "2022-01-20T06:15:53.000000Z"
                    }
                }
            },
            {
                "id": 7937,
                "user_id": 2,
                "tour_data_id": 31,
                "task_id": 927,
                "check_value": null,
                "numeric_value": null,
                "comment": null,
                "has_error": 0,
                "created_at": null,
                "updated_at": null,
                "task": {
                    "id": 927,
                    "task_category_id": 446,
                    "label": "Propreté des goulottes",
                    "smarttags": null,
                    "state": 1,
                    "profile_type": 4,
                    "check_type": 1,
                    "min_value": null,
                    "max_value": null,
                    "rrule": null,
                    "created_at": "2022-01-20T06:17:02.000000Z",
                    "updated_at": "2022-01-20T06:17:02.000000Z",
                    "task_category": {
                        "id": 446,
                        "parent_id": 167,
                        "name": "Clarificateur F1 n°2",
                        "instructions": null,
                        "created_at": "2022-01-20T06:15:35.000000Z",
                        "updated_at": "2022-01-20T06:15:53.000000Z"
                    }
                }
            },
            {
                "id": 7938,
                "user_id": 2,
                "tour_data_id": 31,
                "task_id": 928,
                "check_value": null,
                "numeric_value": null,
                "comment": null,
                "has_error": 0,
                "created_at": null,
                "updated_at": null,
                "task": {
                    "id": 928,
                    "task_category_id": 446,
                    "label": null,
                    "smarttags": null,
                    "state": 1,
                    "profile_type": 4,
                    "check_type": 5,
                    "min_value": null,
                    "max_value": null,
                    "rrule": null,
                    "created_at": "2022-01-20T06:17:06.000000Z",
                    "updated_at": "2022-01-20T06:17:06.000000Z",
                    "task_category": {
                        "id": 446,
                        "parent_id": 167,
                        "name": "Clarificateur F1 n°2",
                        "instructions": null,
                        "created_at": "2022-01-20T06:15:35.000000Z",
                        "updated_at": "2022-01-20T06:15:53.000000Z"
                    }
                }
            },
            {
                "id": 7939,
                "user_id": 2,
                "tour_data_id": 31,
                "task_id": 398,
                "check_value": null,
                "numeric_value": null,
                "comment": null,
                "has_error": 0,
                "created_at": null,
                "updated_at": null,
                "task": null
            },
            {
                "id": 7940,
                "user_id": 2,
                "tour_data_id": 31,
                "task_id": 399,
                "check_value": null,
                "numeric_value": null,
                "comment": null,
                "has_error": 0,
                "created_at": null,
                "updated_at": null,
                "task": null
            },
            {
                "id": 7941,
                "user_id": 2,
                "tour_data_id": 31,
                "task_id": 400,
                "check_value": null,
                "numeric_value": null,
                "comment": null,
                "has_error": 0,
                "created_at": null,
                "updated_at": null,
                "task": null
            },
            {
                "id": 7942,
                "user_id": 2,
                "tour_data_id": 31,
                "task_id": 401,
                "check_value": null,
                "numeric_value": null,
                "comment": null,
                "has_error": 0,
                "created_at": null,
                "updated_at": null,
                "task": null
            },
            {
                "id": 7943,
                "user_id": 2,
                "tour_data_id": 31,
                "task_id": 402,
                "check_value": null,
                "numeric_value": null,
                "comment": null,
                "has_error": 0,
                "created_at": null,
                "updated_at": null,
                "task": {
                    "id": 402,
                    "task_category_id": 175,
                    "label": null,
                    "smarttags": null,
                    "state": 1,
                    "profile_type": 4,
                    "check_type": 1,
                    "min_value": null,
                    "max_value": null,
                    "rrule": null,
                    "created_at": "2022-01-09T21:55:37.000000Z",
                    "updated_at": "2022-01-09T21:55:37.000000Z",
                    "task_category": {
                        "id": 175,
                        "parent_id": 174,
                        "name": "Propreté, Bruits, Fuites",
                        "instructions": null,
                        "created_at": "2022-01-09T21:55:37.000000Z",
                        "updated_at": "2022-01-09T21:55:37.000000Z"
                    }
                }
            },
            {
                "id": 7944,
                "user_id": 2,
                "tour_data_id": 31,
                "task_id": 403,
                "check_value": null,
                "numeric_value": null,
                "comment": null,
                "has_error": 0,
                "created_at": null,
                "updated_at": null,
                "task": {
                    "id": 403,
                    "task_category_id": 175,
                    "label": null,
                    "smarttags": null,
                    "state": 1,
                    "profile_type": 4,
                    "check_type": 5,
                    "min_value": null,
                    "max_value": null,
                    "rrule": null,
                    "created_at": "2022-01-09T21:55:37.000000Z",
                    "updated_at": "2022-01-09T21:55:37.000000Z",
                    "task_category": {
                        "id": 175,
                        "parent_id": 174,
                        "name": "Propreté, Bruits, Fuites",
                        "instructions": null,
                        "created_at": "2022-01-09T21:55:37.000000Z",
                        "updated_at": "2022-01-09T21:55:37.000000Z"
                    }
                }
            },
            {
                "id": 7945,
                "user_id": 2,
                "tour_data_id": 31,
                "task_id": 404,
                "check_value": null,
                "numeric_value": null,
                "comment": null,
                "has_error": 0,
                "created_at": null,
                "updated_at": null,
                "task": {
                    "id": 404,
                    "task_category_id": 176,
                    "label": null,
                    "smarttags": null,
                    "state": 1,
                    "profile_type": 4,
                    "check_type": 1,
                    "min_value": null,
                    "max_value": null,
                    "rrule": null,
                    "created_at": "2022-01-09T21:55:37.000000Z",
                    "updated_at": "2022-01-09T21:55:37.000000Z",
                    "task_category": {
                        "id": 176,
                        "parent_id": 174,
                        "name": "Poste reprise local",
                        "instructions": null,
                        "created_at": "2022-01-09T21:55:37.000000Z",
                        "updated_at": "2022-01-09T21:55:37.000000Z"
                    }
                }
            },
            {
                "id": 7946,
                "user_id": 2,
                "tour_data_id": 31,
                "task_id": 405,
                "check_value": null,
                "numeric_value": null,
                "comment": null,
                "has_error": 0,
                "created_at": null,
                "updated_at": null,
                "task": {
                    "id": 405,
                    "task_category_id": 176,
                    "label": null,
                    "smarttags": null,
                    "state": 1,
                    "profile_type": 4,
                    "check_type": 5,
                    "min_value": null,
                    "max_value": null,
                    "rrule": null,
                    "created_at": "2022-01-09T21:55:37.000000Z",
                    "updated_at": "2022-01-09T21:55:37.000000Z",
                    "task_category": {
                        "id": 176,
                        "parent_id": 174,
                        "name": "Poste reprise local",
                        "instructions": null,
                        "created_at": "2022-01-09T21:55:37.000000Z",
                        "updated_at": "2022-01-09T21:55:37.000000Z"
                    }
                }
            },
            {
                "id": 7947,
                "user_id": 2,
                "tour_data_id": 31,
                "task_id": 406,
                "check_value": null,
                "numeric_value": null,
                "comment": null,
                "has_error": 0,
                "created_at": null,
                "updated_at": null,
                "task": null
            },
            {
                "id": 7948,
                "user_id": 2,
                "tour_data_id": 31,
                "task_id": 407,
                "check_value": null,
                "numeric_value": null,
                "comment": null,
                "has_error": 0,
                "created_at": null,
                "updated_at": null,
                "task": null
            },
            {
                "id": 7949,
                "user_id": 2,
                "tour_data_id": 31,
                "task_id": 410,
                "check_value": null,
                "numeric_value": null,
                "comment": null,
                "has_error": 0,
                "created_at": null,
                "updated_at": null,
                "task": null
            },
            {
                "id": 7950,
                "user_id": 2,
                "tour_data_id": 31,
                "task_id": 411,
                "check_value": null,
                "numeric_value": null,
                "comment": null,
                "has_error": 0,
                "created_at": null,
                "updated_at": null,
                "task": null
            },
            {
                "id": 7951,
                "user_id": 2,
                "tour_data_id": 31,
                "task_id": 412,
                "check_value": null,
                "numeric_value": null,
                "comment": null,
                "has_error": 0,
                "created_at": null,
                "updated_at": null,
                "task": null
            },
            {
                "id": 7952,
                "user_id": 2,
                "tour_data_id": 31,
                "task_id": 413,
                "check_value": null,
                "numeric_value": null,
                "comment": null,
                "has_error": 0,
                "created_at": null,
                "updated_at": null,
                "task": null
            },
            {
                "id": 7953,
                "user_id": 2,
                "tour_data_id": 31,
                "task_id": 414,
                "check_value": null,
                "numeric_value": null,
                "comment": null,
                "has_error": 0,
                "created_at": null,
                "updated_at": null,
                "task": null
            },
            {
                "id": 7954,
                "user_id": 2,
                "tour_data_id": 31,
                "task_id": 415,
                "check_value": null,
                "numeric_value": null,
                "comment": null,
                "has_error": 0,
                "created_at": null,
                "updated_at": null,
                "task": null
            },
            {
                "id": 7955,
                "user_id": 2,
                "tour_data_id": 31,
                "task_id": 424,
                "check_value": null,
                "numeric_value": null,
                "comment": null,
                "has_error": 0,
                "created_at": null,
                "updated_at": null,
                "task": {
                    "id": 424,
                    "task_category_id": 189,
                    "label": null,
                    "smarttags": null,
                    "state": 1,
                    "profile_type": 4,
                    "check_type": 1,
                    "min_value": null,
                    "max_value": null,
                    "rrule": "DTSTART:20220209T000000\nRRULE:FREQ=WEEKLY;INTERVAL=1\n",
                    "created_at": "2022-01-09T21:55:37.000000Z",
                    "updated_at": "2023-06-16T05:53:40.000000Z",
                    "task_category": {
                        "id": 189,
                        "parent_id": 188,
                        "name": "Débitmètre relevage NH4-1",
                        "instructions": null,
                        "created_at": "2022-01-09T21:55:37.000000Z",
                        "updated_at": "2023-06-16T05:53:33.000000Z"
                    }
                }
            },
            {
                "id": 7956,
                "user_id": 2,
                "tour_data_id": 31,
                "task_id": 425,
                "check_value": null,
                "numeric_value": null,
                "comment": null,
                "has_error": 0,
                "created_at": null,
                "updated_at": null,
                "task": {
                    "id": 425,
                    "task_category_id": 189,
                    "label": null,
                    "smarttags": null,
                    "state": 1,
                    "profile_type": 4,
                    "check_type": 4,
                    "min_value": null,
                    "max_value": null,
                    "rrule": "DTSTART:20220209T000000\nRRULE:FREQ=WEEKLY;INTERVAL=1\n",
                    "created_at": "2022-01-09T21:55:37.000000Z",
                    "updated_at": "2023-06-16T05:53:46.000000Z",
                    "task_category": {
                        "id": 189,
                        "parent_id": 188,
                        "name": "Débitmètre relevage NH4-1",
                        "instructions": null,
                        "created_at": "2022-01-09T21:55:37.000000Z",
                        "updated_at": "2023-06-16T05:53:33.000000Z"
                    }
                }
            },
            {
                "id": 7957,
                "user_id": 2,
                "tour_data_id": 31,
                "task_id": 426,
                "check_value": null,
                "numeric_value": null,
                "comment": null,
                "has_error": 0,
                "created_at": null,
                "updated_at": null,
                "task": {
                    "id": 426,
                    "task_category_id": 189,
                    "label": null,
                    "smarttags": null,
                    "state": 1,
                    "profile_type": 4,
                    "check_type": 5,
                    "min_value": null,
                    "max_value": null,
                    "rrule": "DTSTART:20220209T000000\nRRULE:FREQ=WEEKLY;INTERVAL=1\n",
                    "created_at": "2022-01-09T21:55:37.000000Z",
                    "updated_at": "2022-02-11T13:10:07.000000Z",
                    "task_category": {
                        "id": 189,
                        "parent_id": 188,
                        "name": "Débitmètre relevage NH4-1",
                        "instructions": null,
                        "created_at": "2022-01-09T21:55:37.000000Z",
                        "updated_at": "2023-06-16T05:53:33.000000Z"
                    }
                }
            },
            {
                "id": 7958,
                "user_id": 2,
                "tour_data_id": 31,
                "task_id": 478,
                "check_value": 1,
                "numeric_value": null,
                "comment": null,
                "has_error": 0,
                "created_at": null,
                "updated_at": "2022-02-09T07:36:20.000000Z",
                "task": null
            },
            {
                "id": 7959,
                "user_id": 2,
                "tour_data_id": 31,
                "task_id": 479,
                "check_value": null,
                "numeric_value": null,
                "comment": null,
                "has_error": 0,
                "created_at": null,
                "updated_at": null,
                "task": null
            },
            {
                "id": 7960,
                "user_id": 2,
                "tour_data_id": 31,
                "task_id": 480,
                "check_value": null,
                "numeric_value": null,
                "comment": null,
                "has_error": 0,
                "created_at": null,
                "updated_at": null,
                "task": {
                    "id": 480,
                    "task_category_id": 220,
                    "label": null,
                    "smarttags": null,
                    "state": 1,
                    "profile_type": 4,
                    "check_type": 1,
                    "min_value": null,
                    "max_value": null,
                    "rrule": null,
                    "created_at": "2022-01-09T21:55:37.000000Z",
                    "updated_at": "2022-01-09T21:55:37.000000Z",
                    "task_category": {
                        "id": 220,
                        "parent_id": 219,
                        "name": "Propreté, Bruits, Fuites",
                        "instructions": null,
                        "created_at": "2022-01-09T21:55:37.000000Z",
                        "updated_at": "2022-01-09T21:55:37.000000Z"
                    }
                }
            },
            {
                "id": 7961,
                "user_id": 2,
                "tour_data_id": 31,
                "task_id": 481,
                "check_value": null,
                "numeric_value": null,
                "comment": null,
                "has_error": 0,
                "created_at": null,
                "updated_at": null,
                "task": {
                    "id": 481,
                    "task_category_id": 220,
                    "label": null,
                    "smarttags": null,
                    "state": 1,
                    "profile_type": 4,
                    "check_type": 5,
                    "min_value": null,
                    "max_value": null,
                    "rrule": null,
                    "created_at": "2022-01-09T21:55:37.000000Z",
                    "updated_at": "2022-01-09T21:55:37.000000Z",
                    "task_category": {
                        "id": 220,
                        "parent_id": 219,
                        "name": "Propreté, Bruits, Fuites",
                        "instructions": null,
                        "created_at": "2022-01-09T21:55:37.000000Z",
                        "updated_at": "2022-01-09T21:55:37.000000Z"
                    }
                }
            },
            {
                "id": 7962,
                "user_id": 2,
                "tour_data_id": 31,
                "task_id": 482,
                "check_value": null,
                "numeric_value": null,
                "comment": null,
                "has_error": 0,
                "created_at": null,
                "updated_at": null,
                "task": {
                    "id": 482,
                    "task_category_id": 221,
                    "label": null,
                    "smarttags": null,
                    "state": 1,
                    "profile_type": 4,
                    "check_type": 1,
                    "min_value": null,
                    "max_value": null,
                    "rrule": null,
                    "created_at": "2022-01-09T21:55:37.000000Z",
                    "updated_at": "2022-01-09T21:55:37.000000Z",
                    "task_category": {
                        "id": 221,
                        "parent_id": 219,
                        "name": "Pompes",
                        "instructions": null,
                        "created_at": "2022-01-09T21:55:37.000000Z",
                        "updated_at": "2023-06-16T05:57:03.000000Z"
                    }
                }
            },
            {
                "id": 7963,
                "user_id": 2,
                "tour_data_id": 31,
                "task_id": 483,
                "check_value": null,
                "numeric_value": null,
                "comment": null,
                "has_error": 0,
                "created_at": null,
                "updated_at": null,
                "task": {
                    "id": 483,
                    "task_category_id": 221,
                    "label": null,
                    "smarttags": null,
                    "state": 1,
                    "profile_type": 4,
                    "check_type": 5,
                    "min_value": null,
                    "max_value": null,
                    "rrule": null,
                    "created_at": "2022-01-09T21:55:37.000000Z",
                    "updated_at": "2022-01-09T21:55:37.000000Z",
                    "task_category": {
                        "id": 221,
                        "parent_id": 219,
                        "name": "Pompes",
                        "instructions": null,
                        "created_at": "2022-01-09T21:55:37.000000Z",
                        "updated_at": "2023-06-16T05:57:03.000000Z"
                    }
                }
            },
            {
                "id": 7964,
                "user_id": 2,
                "tour_data_id": 31,
                "task_id": 484,
                "check_value": null,
                "numeric_value": null,
                "comment": null,
                "has_error": 0,
                "created_at": null,
                "updated_at": null,
                "task": null
            },
            {
                "id": 7965,
                "user_id": 2,
                "tour_data_id": 31,
                "task_id": 485,
                "check_value": null,
                "numeric_value": null,
                "comment": null,
                "has_error": 0,
                "created_at": null,
                "updated_at": null,
                "task": null
            },
            {
                "id": 7966,
                "user_id": 2,
                "tour_data_id": 31,
                "task_id": 486,
                "check_value": null,
                "numeric_value": null,
                "comment": null,
                "has_error": 0,
                "created_at": null,
                "updated_at": null,
                "task": null
            },
            {
                "id": 7967,
                "user_id": 2,
                "tour_data_id": 31,
                "task_id": 487,
                "check_value": null,
                "numeric_value": null,
                "comment": null,
                "has_error": 0,
                "created_at": null,
                "updated_at": null,
                "task": null
            },
            {
                "id": 7968,
                "user_id": 2,
                "tour_data_id": 31,
                "task_id": 808,
                "check_value": null,
                "numeric_value": null,
                "comment": null,
                "has_error": 0,
                "created_at": null,
                "updated_at": null,
                "task": {
                    "id": 808,
                    "task_category_id": 404,
                    "label": "Concentration de la préparante",
                    "smarttags": null,
                    "state": 1,
                    "profile_type": 4,
                    "check_type": 2,
                    "min_value": null,
                    "max_value": null,
                    "rrule": "DTSTART:20220110T000000\nRRULE:FREQ=WEEKLY;INTERVAL=1\n",
                    "created_at": "2022-01-10T20:11:58.000000Z",
                    "updated_at": "2022-01-24T08:28:21.000000Z",
                    "task_category": {
                        "id": 404,
                        "parent_id": 219,
                        "name": "Concentration",
                        "instructions": null,
                        "created_at": "2022-01-10T20:11:37.000000Z",
                        "updated_at": "2022-01-10T20:11:49.000000Z"
                    }
                }
            },
            {
                "id": 7969,
                "user_id": 2,
                "tour_data_id": 31,
                "task_id": 811,
                "check_value": null,
                "numeric_value": null,
                "comment": null,
                "has_error": 0,
                "created_at": null,
                "updated_at": null,
                "task": {
                    "id": 811,
                    "task_category_id": 404,
                    "label": null,
                    "smarttags": null,
                    "state": 1,
                    "profile_type": 4,
                    "check_type": 5,
                    "min_value": null,
                    "max_value": null,
                    "rrule": "DTSTART:20220110T000000\nRRULE:FREQ=WEEKLY;INTERVAL=1\n",
                    "created_at": "2022-01-10T20:12:39.000000Z",
                    "updated_at": "2022-01-24T08:28:24.000000Z",
                    "task_category": {
                        "id": 404,
                        "parent_id": 219,
                        "name": "Concentration",
                        "instructions": null,
                        "created_at": "2022-01-10T20:11:37.000000Z",
                        "updated_at": "2022-01-10T20:11:49.000000Z"
                    }
                }
            },
            {
                "id": 7970,
                "user_id": 2,
                "tour_data_id": 31,
                "task_id": 488,
                "check_value": null,
                "numeric_value": null,
                "comment": null,
                "has_error": 0,
                "created_at": null,
                "updated_at": null,
                "task": null
            },
            {
                "id": 7971,
                "user_id": 2,
                "tour_data_id": 31,
                "task_id": 489,
                "check_value": null,
                "numeric_value": null,
                "comment": null,
                "has_error": 0,
                "created_at": null,
                "updated_at": null,
                "task": null
            },
            {
                "id": 7972,
                "user_id": 2,
                "tour_data_id": 31,
                "task_id": 490,
                "check_value": null,
                "numeric_value": null,
                "comment": null,
                "has_error": 0,
                "created_at": null,
                "updated_at": null,
                "task": {
                    "id": 490,
                    "task_category_id": 226,
                    "label": null,
                    "smarttags": null,
                    "state": 1,
                    "profile_type": 4,
                    "check_type": 1,
                    "min_value": null,
                    "max_value": null,
                    "rrule": null,
                    "created_at": "2022-01-09T21:55:37.000000Z",
                    "updated_at": "2022-01-09T21:55:37.000000Z",
                    "task_category": {
                        "id": 226,
                        "parent_id": 224,
                        "name": "Relevé débit d'air",
                        "instructions": null,
                        "created_at": "2022-01-09T21:55:37.000000Z",
                        "updated_at": "2022-01-09T21:55:37.000000Z"
                    }
                }
            },
            {
                "id": 7973,
                "user_id": 2,
                "tour_data_id": 31,
                "task_id": 491,
                "check_value": null,
                "numeric_value": null,
                "comment": null,
                "has_error": 0,
                "created_at": null,
                "updated_at": null,
                "task": {
                    "id": 491,
                    "task_category_id": 226,
                    "label": null,
                    "smarttags": null,
                    "state": 1,
                    "profile_type": 4,
                    "check_type": 4,
                    "min_value": null,
                    "max_value": null,
                    "rrule": null,
                    "created_at": "2022-01-09T21:55:37.000000Z",
                    "updated_at": "2022-01-09T21:55:37.000000Z",
                    "task_category": {
                        "id": 226,
                        "parent_id": 224,
                        "name": "Relevé débit d'air",
                        "instructions": null,
                        "created_at": "2022-01-09T21:55:37.000000Z",
                        "updated_at": "2022-01-09T21:55:37.000000Z"
                    }
                }
            },
            {
                "id": 7974,
                "user_id": 2,
                "tour_data_id": 31,
                "task_id": 492,
                "check_value": null,
                "numeric_value": null,
                "comment": null,
                "has_error": 0,
                "created_at": null,
                "updated_at": null,
                "task": {
                    "id": 492,
                    "task_category_id": 226,
                    "label": null,
                    "smarttags": null,
                    "state": 1,
                    "profile_type": 4,
                    "check_type": 5,
                    "min_value": null,
                    "max_value": null,
                    "rrule": null,
                    "created_at": "2022-01-09T21:55:37.000000Z",
                    "updated_at": "2022-01-09T21:55:37.000000Z",
                    "task_category": {
                        "id": 226,
                        "parent_id": 224,
                        "name": "Relevé débit d'air",
                        "instructions": null,
                        "created_at": "2022-01-09T21:55:37.000000Z",
                        "updated_at": "2022-01-09T21:55:37.000000Z"
                    }
                }
            },
            {
                "id": 7975,
                "user_id": 2,
                "tour_data_id": 31,
                "task_id": 497,
                "check_value": null,
                "numeric_value": null,
                "comment": null,
                "has_error": 0,
                "created_at": null,
                "updated_at": null,
                "task": {
                    "id": 497,
                    "task_category_id": 229,
                    "label": "Pression",
                    "smarttags": null,
                    "state": 1,
                    "profile_type": 4,
                    "check_type": 4,
                    "min_value": null,
                    "max_value": null,
                    "rrule": null,
                    "created_at": "2022-01-09T21:55:37.000000Z",
                    "updated_at": "2022-01-09T21:55:37.000000Z",
                    "task_category": {
                        "id": 229,
                        "parent_id": 224,
                        "name": "Surp. 1",
                        "instructions": null,
                        "created_at": "2022-01-09T21:55:37.000000Z",
                        "updated_at": "2022-01-09T21:55:37.000000Z"
                    }
                }
            },
            {
                "id": 7976,
                "user_id": 2,
                "tour_data_id": 31,
                "task_id": 498,
                "check_value": null,
                "numeric_value": null,
                "comment": null,
                "has_error": 0,
                "created_at": null,
                "updated_at": null,
                "task": {
                    "id": 498,
                    "task_category_id": 229,
                    "label": "Dépression max",
                    "smarttags": null,
                    "state": 1,
                    "profile_type": 4,
                    "check_type": 4,
                    "min_value": null,
                    "max_value": null,
                    "rrule": null,
                    "created_at": "2022-01-09T21:55:37.000000Z",
                    "updated_at": "2022-01-09T21:55:37.000000Z",
                    "task_category": {
                        "id": 229,
                        "parent_id": 224,
                        "name": "Surp. 1",
                        "instructions": null,
                        "created_at": "2022-01-09T21:55:37.000000Z",
                        "updated_at": "2022-01-09T21:55:37.000000Z"
                    }
                }
            },
            {
                "id": 7977,
                "user_id": 2,
                "tour_data_id": 31,
                "task_id": 929,
                "check_value": null,
                "numeric_value": null,
                "comment": null,
                "has_error": 0,
                "created_at": null,
                "updated_at": null,
                "task": {
                    "id": 929,
                    "task_category_id": 229,
                    "label": "Niveau d'huile",
                    "smarttags": null,
                    "state": 1,
                    "profile_type": 4,
                    "check_type": 1,
                    "min_value": null,
                    "max_value": null,
                    "rrule": null,
                    "created_at": "2022-01-20T06:21:24.000000Z",
                    "updated_at": "2022-01-20T06:21:24.000000Z",
                    "task_category": {
                        "id": 229,
                        "parent_id": 224,
                        "name": "Surp. 1",
                        "instructions": null,
                        "created_at": "2022-01-09T21:55:37.000000Z",
                        "updated_at": "2022-01-09T21:55:37.000000Z"
                    }
                }
            },
            {
                "id": 7978,
                "user_id": 2,
                "tour_data_id": 31,
                "task_id": 500,
                "check_value": null,
                "numeric_value": null,
                "comment": null,
                "has_error": 0,
                "created_at": null,
                "updated_at": null,
                "task": {
                    "id": 500,
                    "task_category_id": 229,
                    "label": null,
                    "smarttags": null,
                    "state": 1,
                    "profile_type": 4,
                    "check_type": 5,
                    "min_value": null,
                    "max_value": null,
                    "rrule": null,
                    "created_at": "2022-01-09T21:55:37.000000Z",
                    "updated_at": "2022-01-09T21:55:37.000000Z",
                    "task_category": {
                        "id": 229,
                        "parent_id": 224,
                        "name": "Surp. 1",
                        "instructions": null,
                        "created_at": "2022-01-09T21:55:37.000000Z",
                        "updated_at": "2022-01-09T21:55:37.000000Z"
                    }
                }
            },
            {
                "id": 7979,
                "user_id": 2,
                "tour_data_id": 31,
                "task_id": 501,
                "check_value": null,
                "numeric_value": null,
                "comment": null,
                "has_error": 0,
                "created_at": null,
                "updated_at": null,
                "task": {
                    "id": 501,
                    "task_category_id": 230,
                    "label": "Pression",
                    "smarttags": null,
                    "state": 1,
                    "profile_type": 4,
                    "check_type": 4,
                    "min_value": null,
                    "max_value": null,
                    "rrule": null,
                    "created_at": "2022-01-09T21:55:37.000000Z",
                    "updated_at": "2022-01-09T21:55:37.000000Z",
                    "task_category": {
                        "id": 230,
                        "parent_id": 224,
                        "name": "Surp. 2",
                        "instructions": null,
                        "created_at": "2022-01-09T21:55:37.000000Z",
                        "updated_at": "2022-01-09T21:55:37.000000Z"
                    }
                }
            },
            {
                "id": 7980,
                "user_id": 2,
                "tour_data_id": 31,
                "task_id": 502,
                "check_value": null,
                "numeric_value": null,
                "comment": null,
                "has_error": 0,
                "created_at": null,
                "updated_at": null,
                "task": {
                    "id": 502,
                    "task_category_id": 230,
                    "label": "Dépression max",
                    "smarttags": null,
                    "state": 1,
                    "profile_type": 4,
                    "check_type": 4,
                    "min_value": null,
                    "max_value": null,
                    "rrule": null,
                    "created_at": "2022-01-09T21:55:37.000000Z",
                    "updated_at": "2022-01-09T21:55:37.000000Z",
                    "task_category": {
                        "id": 230,
                        "parent_id": 224,
                        "name": "Surp. 2",
                        "instructions": null,
                        "created_at": "2022-01-09T21:55:37.000000Z",
                        "updated_at": "2022-01-09T21:55:37.000000Z"
                    }
                }
            },
            {
                "id": 7981,
                "user_id": 2,
                "tour_data_id": 31,
                "task_id": 930,
                "check_value": null,
                "numeric_value": null,
                "comment": null,
                "has_error": 0,
                "created_at": null,
                "updated_at": null,
                "task": {
                    "id": 930,
                    "task_category_id": 230,
                    "label": "Niveau d'huile",
                    "smarttags": null,
                    "state": 1,
                    "profile_type": 4,
                    "check_type": 1,
                    "min_value": null,
                    "max_value": null,
                    "rrule": null,
                    "created_at": "2022-01-20T06:21:40.000000Z",
                    "updated_at": "2022-01-20T06:21:40.000000Z",
                    "task_category": {
                        "id": 230,
                        "parent_id": 224,
                        "name": "Surp. 2",
                        "instructions": null,
                        "created_at": "2022-01-09T21:55:37.000000Z",
                        "updated_at": "2022-01-09T21:55:37.000000Z"
                    }
                }
            },
            {
                "id": 7982,
                "user_id": 2,
                "tour_data_id": 31,
                "task_id": 504,
                "check_value": null,
                "numeric_value": null,
                "comment": null,
                "has_error": 0,
                "created_at": null,
                "updated_at": null,
                "task": {
                    "id": 504,
                    "task_category_id": 230,
                    "label": null,
                    "smarttags": null,
                    "state": 1,
                    "profile_type": 4,
                    "check_type": 5,
                    "min_value": null,
                    "max_value": null,
                    "rrule": null,
                    "created_at": "2022-01-09T21:55:37.000000Z",
                    "updated_at": "2022-01-09T21:55:37.000000Z",
                    "task_category": {
                        "id": 230,
                        "parent_id": 224,
                        "name": "Surp. 2",
                        "instructions": null,
                        "created_at": "2022-01-09T21:55:37.000000Z",
                        "updated_at": "2022-01-09T21:55:37.000000Z"
                    }
                }
            },
            {
                "id": 7983,
                "user_id": 2,
                "tour_data_id": 31,
                "task_id": 505,
                "check_value": null,
                "numeric_value": null,
                "comment": null,
                "has_error": 0,
                "created_at": null,
                "updated_at": null,
                "task": {
                    "id": 505,
                    "task_category_id": 231,
                    "label": "Pression",
                    "smarttags": null,
                    "state": 1,
                    "profile_type": 4,
                    "check_type": 4,
                    "min_value": null,
                    "max_value": null,
                    "rrule": null,
                    "created_at": "2022-01-09T21:55:37.000000Z",
                    "updated_at": "2022-01-09T21:55:37.000000Z",
                    "task_category": {
                        "id": 231,
                        "parent_id": 224,
                        "name": "Surp. 3",
                        "instructions": null,
                        "created_at": "2022-01-09T21:55:37.000000Z",
                        "updated_at": "2022-01-09T21:55:37.000000Z"
                    }
                }
            },
            {
                "id": 7984,
                "user_id": 2,
                "tour_data_id": 31,
                "task_id": 506,
                "check_value": null,
                "numeric_value": null,
                "comment": null,
                "has_error": 0,
                "created_at": null,
                "updated_at": null,
                "task": {
                    "id": 506,
                    "task_category_id": 231,
                    "label": "Dépression max",
                    "smarttags": null,
                    "state": 1,
                    "profile_type": 4,
                    "check_type": 4,
                    "min_value": null,
                    "max_value": null,
                    "rrule": null,
                    "created_at": "2022-01-09T21:55:37.000000Z",
                    "updated_at": "2022-01-09T21:55:37.000000Z",
                    "task_category": {
                        "id": 231,
                        "parent_id": 224,
                        "name": "Surp. 3",
                        "instructions": null,
                        "created_at": "2022-01-09T21:55:37.000000Z",
                        "updated_at": "2022-01-09T21:55:37.000000Z"
                    }
                }
            },
            {
                "id": 7985,
                "user_id": 2,
                "tour_data_id": 31,
                "task_id": 931,
                "check_value": null,
                "numeric_value": null,
                "comment": null,
                "has_error": 0,
                "created_at": null,
                "updated_at": null,
                "task": {
                    "id": 931,
                    "task_category_id": 231,
                    "label": "Niveau d'huile",
                    "smarttags": null,
                    "state": 1,
                    "profile_type": 4,
                    "check_type": 1,
                    "min_value": null,
                    "max_value": null,
                    "rrule": null,
                    "created_at": "2022-01-20T06:21:56.000000Z",
                    "updated_at": "2022-01-20T06:21:56.000000Z",
                    "task_category": {
                        "id": 231,
                        "parent_id": 224,
                        "name": "Surp. 3",
                        "instructions": null,
                        "created_at": "2022-01-09T21:55:37.000000Z",
                        "updated_at": "2022-01-09T21:55:37.000000Z"
                    }
                }
            },
            {
                "id": 7986,
                "user_id": 2,
                "tour_data_id": 31,
                "task_id": 508,
                "check_value": null,
                "numeric_value": null,
                "comment": null,
                "has_error": 0,
                "created_at": null,
                "updated_at": null,
                "task": {
                    "id": 508,
                    "task_category_id": 231,
                    "label": null,
                    "smarttags": null,
                    "state": 1,
                    "profile_type": 4,
                    "check_type": 5,
                    "min_value": null,
                    "max_value": null,
                    "rrule": null,
                    "created_at": "2022-01-09T21:55:37.000000Z",
                    "updated_at": "2022-01-09T21:55:37.000000Z",
                    "task_category": {
                        "id": 231,
                        "parent_id": 224,
                        "name": "Surp. 3",
                        "instructions": null,
                        "created_at": "2022-01-09T21:55:37.000000Z",
                        "updated_at": "2022-01-09T21:55:37.000000Z"
                    }
                }
            },
            {
                "id": 7987,
                "user_id": 2,
                "tour_data_id": 31,
                "task_id": 509,
                "check_value": null,
                "numeric_value": null,
                "comment": null,
                "has_error": 0,
                "created_at": null,
                "updated_at": null,
                "task": {
                    "id": 509,
                    "task_category_id": 233,
                    "label": null,
                    "smarttags": null,
                    "state": 1,
                    "profile_type": 4,
                    "check_type": 1,
                    "min_value": null,
                    "max_value": null,
                    "rrule": null,
                    "created_at": "2022-01-09T21:55:37.000000Z",
                    "updated_at": "2022-01-09T21:55:37.000000Z",
                    "task_category": {
                        "id": 233,
                        "parent_id": 232,
                        "name": "Entrée MBBR",
                        "instructions": null,
                        "created_at": "2022-01-09T21:55:37.000000Z",
                        "updated_at": "2022-01-09T21:55:37.000000Z"
                    }
                }
            },
            {
                "id": 7988,
                "user_id": 2,
                "tour_data_id": 31,
                "task_id": 510,
                "check_value": null,
                "numeric_value": null,
                "comment": null,
                "has_error": 0,
                "created_at": null,
                "updated_at": null,
                "task": {
                    "id": 510,
                    "task_category_id": 233,
                    "label": "Valeur débitmètre",
                    "smarttags": null,
                    "state": 1,
                    "profile_type": 4,
                    "check_type": 4,
                    "min_value": null,
                    "max_value": null,
                    "rrule": null,
                    "created_at": "2022-01-09T21:55:37.000000Z",
                    "updated_at": "2022-01-09T21:55:37.000000Z",
                    "task_category": {
                        "id": 233,
                        "parent_id": 232,
                        "name": "Entrée MBBR",
                        "instructions": null,
                        "created_at": "2022-01-09T21:55:37.000000Z",
                        "updated_at": "2022-01-09T21:55:37.000000Z"
                    }
                }
            },
            {
                "id": 7989,
                "user_id": 2,
                "tour_data_id": 31,
                "task_id": 511,
                "check_value": null,
                "numeric_value": null,
                "comment": null,
                "has_error": 0,
                "created_at": null,
                "updated_at": null,
                "task": {
                    "id": 511,
                    "task_category_id": 233,
                    "label": null,
                    "smarttags": null,
                    "state": 1,
                    "profile_type": 4,
                    "check_type": 5,
                    "min_value": null,
                    "max_value": null,
                    "rrule": null,
                    "created_at": "2022-01-09T21:55:37.000000Z",
                    "updated_at": "2022-01-09T21:55:37.000000Z",
                    "task_category": {
                        "id": 233,
                        "parent_id": 232,
                        "name": "Entrée MBBR",
                        "instructions": null,
                        "created_at": "2022-01-09T21:55:37.000000Z",
                        "updated_at": "2022-01-09T21:55:37.000000Z"
                    }
                }
            },
            {
                "id": 7990,
                "user_id": 2,
                "tour_data_id": 31,
                "task_id": 512,
                "check_value": null,
                "numeric_value": null,
                "comment": null,
                "has_error": 0,
                "created_at": null,
                "updated_at": null,
                "task": {
                    "id": 512,
                    "task_category_id": 234,
                    "label": null,
                    "smarttags": null,
                    "state": 1,
                    "profile_type": 4,
                    "check_type": 1,
                    "min_value": null,
                    "max_value": null,
                    "rrule": null,
                    "created_at": "2022-01-09T21:55:37.000000Z",
                    "updated_at": "2022-01-09T21:55:37.000000Z",
                    "task_category": {
                        "id": 234,
                        "parent_id": 232,
                        "name": "Sortie MBBR",
                        "instructions": null,
                        "created_at": "2022-01-09T21:55:37.000000Z",
                        "updated_at": "2022-01-09T21:55:37.000000Z"
                    }
                }
            },
            {
                "id": 7991,
                "user_id": 2,
                "tour_data_id": 31,
                "task_id": 513,
                "check_value": null,
                "numeric_value": null,
                "comment": null,
                "has_error": 0,
                "created_at": null,
                "updated_at": null,
                "task": {
                    "id": 513,
                    "task_category_id": 234,
                    "label": "Valeur débitmètre",
                    "smarttags": null,
                    "state": 1,
                    "profile_type": 4,
                    "check_type": 4,
                    "min_value": null,
                    "max_value": null,
                    "rrule": null,
                    "created_at": "2022-01-09T21:55:37.000000Z",
                    "updated_at": "2022-01-09T21:55:37.000000Z",
                    "task_category": {
                        "id": 234,
                        "parent_id": 232,
                        "name": "Sortie MBBR",
                        "instructions": null,
                        "created_at": "2022-01-09T21:55:37.000000Z",
                        "updated_at": "2022-01-09T21:55:37.000000Z"
                    }
                }
            },
            {
                "id": 7992,
                "user_id": 2,
                "tour_data_id": 31,
                "task_id": 514,
                "check_value": null,
                "numeric_value": null,
                "comment": null,
                "has_error": 0,
                "created_at": null,
                "updated_at": null,
                "task": {
                    "id": 514,
                    "task_category_id": 234,
                    "label": null,
                    "smarttags": null,
                    "state": 1,
                    "profile_type": 4,
                    "check_type": 5,
                    "min_value": null,
                    "max_value": null,
                    "rrule": null,
                    "created_at": "2022-01-09T21:55:37.000000Z",
                    "updated_at": "2022-01-09T21:55:37.000000Z",
                    "task_category": {
                        "id": 234,
                        "parent_id": 232,
                        "name": "Sortie MBBR",
                        "instructions": null,
                        "created_at": "2022-01-09T21:55:37.000000Z",
                        "updated_at": "2022-01-09T21:55:37.000000Z"
                    }
                }
            },
            {
                "id": 7993,
                "user_id": 2,
                "tour_data_id": 31,
                "task_id": 515,
                "check_value": 1,
                "numeric_value": null,
                "comment": null,
                "has_error": 0,
                "created_at": null,
                "updated_at": "2022-02-09T07:36:30.000000Z",
                "task": null
            },
            {
                "id": 7994,
                "user_id": 2,
                "tour_data_id": 31,
                "task_id": 516,
                "check_value": null,
                "numeric_value": null,
                "comment": null,
                "has_error": 0,
                "created_at": null,
                "updated_at": null,
                "task": null
            },
            {
                "id": 7995,
                "user_id": 2,
                "tour_data_id": 31,
                "task_id": 517,
                "check_value": 1,
                "numeric_value": null,
                "comment": null,
                "has_error": 0,
                "created_at": null,
                "updated_at": "2022-02-09T07:36:30.000000Z",
                "task": null
            },
            {
                "id": 7996,
                "user_id": 2,
                "tour_data_id": 31,
                "task_id": 518,
                "check_value": null,
                "numeric_value": null,
                "comment": null,
                "has_error": 0,
                "created_at": null,
                "updated_at": null,
                "task": null
            },
            {
                "id": 7997,
                "user_id": 2,
                "tour_data_id": 31,
                "task_id": 519,
                "check_value": 1,
                "numeric_value": null,
                "comment": null,
                "has_error": 0,
                "created_at": null,
                "updated_at": "2022-02-09T07:36:30.000000Z",
                "task": null
            },
            {
                "id": 7998,
                "user_id": 2,
                "tour_data_id": 31,
                "task_id": 932,
                "check_value": 1,
                "numeric_value": null,
                "comment": null,
                "has_error": 0,
                "created_at": null,
                "updated_at": "2022-02-09T07:36:30.000000Z",
                "task": {
                    "id": 932,
                    "task_category_id": 239,
                    "label": "Nettoyage de la raquette CO2",
                    "smarttags": null,
                    "state": 1,
                    "profile_type": 4,
                    "check_type": 2,
                    "min_value": null,
                    "max_value": null,
                    "rrule": "DTSTART:20220120T000000\nRRULE:FREQ=WEEKLY;INTERVAL=1;BYDAY=TU\n",
                    "created_at": "2022-01-20T06:23:01.000000Z",
                    "updated_at": "2023-06-16T05:59:18.000000Z",
                    "task_category": {
                        "id": 239,
                        "parent_id": 237,
                        "name": "CO2",
                        "instructions": null,
                        "created_at": "2022-01-09T21:55:37.000000Z",
                        "updated_at": "2023-06-16T05:59:08.000000Z"
                    }
                }
            },
            {
                "id": 7999,
                "user_id": 2,
                "tour_data_id": 31,
                "task_id": 520,
                "check_value": null,
                "numeric_value": null,
                "comment": null,
                "has_error": 0,
                "created_at": null,
                "updated_at": null,
                "task": {
                    "id": 520,
                    "task_category_id": 239,
                    "label": null,
                    "smarttags": null,
                    "state": 1,
                    "profile_type": 4,
                    "check_type": 5,
                    "min_value": null,
                    "max_value": null,
                    "rrule": "DTSTART:20230616T000000\nRRULE:FREQ=WEEKLY;INTERVAL=1;BYDAY=TU\n",
                    "created_at": "2022-01-09T21:55:37.000000Z",
                    "updated_at": "2023-06-16T05:59:25.000000Z",
                    "task_category": {
                        "id": 239,
                        "parent_id": 237,
                        "name": "CO2",
                        "instructions": null,
                        "created_at": "2022-01-09T21:55:37.000000Z",
                        "updated_at": "2023-06-16T05:59:08.000000Z"
                    }
                }
            },
            {
                "id": 8000,
                "user_id": 2,
                "tour_data_id": 31,
                "task_id": 527,
                "check_value": null,
                "numeric_value": null,
                "comment": null,
                "has_error": 0,
                "created_at": null,
                "updated_at": null,
                "task": {
                    "id": 527,
                    "task_category_id": 243,
                    "label": "pH.FM",
                    "smarttags": null,
                    "state": 1,
                    "profile_type": 4,
                    "check_type": 4,
                    "min_value": "5.500",
                    "max_value": "8.000",
                    "rrule": null,
                    "created_at": "2022-01-09T21:55:37.000000Z",
                    "updated_at": "2023-06-16T06:00:48.000000Z",
                    "task_category": {
                        "id": 243,
                        "parent_id": 240,
                        "name": "Mesure de pH",
                        "instructions": null,
                        "created_at": "2022-01-09T21:55:37.000000Z",
                        "updated_at": "2023-06-16T06:03:03.000000Z"
                    }
                }
            },
            {
                "id": 8001,
                "user_id": 2,
                "tour_data_id": 31,
                "task_id": 528,
                "check_value": null,
                "numeric_value": null,
                "comment": null,
                "has_error": 0,
                "created_at": null,
                "updated_at": null,
                "task": {
                    "id": 528,
                    "task_category_id": 243,
                    "label": "pH BA MBBR",
                    "smarttags": null,
                    "state": 1,
                    "profile_type": 4,
                    "check_type": 4,
                    "min_value": "5.500",
                    "max_value": "8.000",
                    "rrule": null,
                    "created_at": "2022-01-09T21:55:37.000000Z",
                    "updated_at": "2023-06-16T06:00:40.000000Z",
                    "task_category": {
                        "id": 243,
                        "parent_id": 240,
                        "name": "Mesure de pH",
                        "instructions": null,
                        "created_at": "2022-01-09T21:55:37.000000Z",
                        "updated_at": "2023-06-16T06:03:03.000000Z"
                    }
                }
            },
            {
                "id": 8002,
                "user_id": 2,
                "tour_data_id": 31,
                "task_id": 529,
                "check_value": null,
                "numeric_value": null,
                "comment": null,
                "has_error": 0,
                "created_at": null,
                "updated_at": null,
                "task": {
                    "id": 529,
                    "task_category_id": 243,
                    "label": "T°",
                    "smarttags": null,
                    "state": 1,
                    "profile_type": 4,
                    "check_type": 4,
                    "min_value": null,
                    "max_value": null,
                    "rrule": null,
                    "created_at": "2022-01-09T21:55:37.000000Z",
                    "updated_at": "2022-01-09T21:55:37.000000Z",
                    "task_category": {
                        "id": 243,
                        "parent_id": 240,
                        "name": "Mesure de pH",
                        "instructions": null,
                        "created_at": "2022-01-09T21:55:37.000000Z",
                        "updated_at": "2023-06-16T06:03:03.000000Z"
                    }
                }
            },
            {
                "id": 8003,
                "user_id": 2,
                "tour_data_id": 31,
                "task_id": 530,
                "check_value": null,
                "numeric_value": null,
                "comment": null,
                "has_error": 0,
                "created_at": null,
                "updated_at": null,
                "task": {
                    "id": 530,
                    "task_category_id": 243,
                    "label": null,
                    "smarttags": null,
                    "state": 1,
                    "profile_type": 4,
                    "check_type": 5,
                    "min_value": null,
                    "max_value": null,
                    "rrule": null,
                    "created_at": "2022-01-09T21:55:37.000000Z",
                    "updated_at": "2022-01-09T21:55:37.000000Z",
                    "task_category": {
                        "id": 243,
                        "parent_id": 240,
                        "name": "Mesure de pH",
                        "instructions": null,
                        "created_at": "2022-01-09T21:55:37.000000Z",
                        "updated_at": "2023-06-16T06:03:03.000000Z"
                    }
                }
            },
            {
                "id": 8004,
                "user_id": 2,
                "tour_data_id": 31,
                "task_id": 533,
                "check_value": 1,
                "numeric_value": null,
                "comment": null,
                "has_error": 0,
                "created_at": null,
                "updated_at": "2022-02-09T07:36:40.000000Z",
                "task": null
            },
            {
                "id": 8005,
                "user_id": 2,
                "tour_data_id": 31,
                "task_id": 534,
                "check_value": null,
                "numeric_value": null,
                "comment": null,
                "has_error": 0,
                "created_at": null,
                "updated_at": null,
                "task": null
            },
            {
                "id": 8006,
                "user_id": 2,
                "tour_data_id": 31,
                "task_id": 834,
                "check_value": null,
                "numeric_value": null,
                "comment": null,
                "has_error": 0,
                "created_at": null,
                "updated_at": null,
                "task": null
            },
            {
                "id": 8007,
                "user_id": 2,
                "tour_data_id": 31,
                "task_id": 537,
                "check_value": 1,
                "numeric_value": null,
                "comment": null,
                "has_error": 0,
                "created_at": null,
                "updated_at": "2022-02-09T07:36:40.000000Z",
                "task": null
            },
            {
                "id": 8008,
                "user_id": 2,
                "tour_data_id": 31,
                "task_id": 539,
                "check_value": null,
                "numeric_value": null,
                "comment": null,
                "has_error": 0,
                "created_at": null,
                "updated_at": null,
                "task": null
            },
            {
                "id": 8009,
                "user_id": 2,
                "tour_data_id": 31,
                "task_id": 833,
                "check_value": null,
                "numeric_value": null,
                "comment": null,
                "has_error": 0,
                "created_at": null,
                "updated_at": null,
                "task": {
                    "id": 833,
                    "task_category_id": 247,
                    "label": "Nettoyage bords intérieur du bassin + Panier à sonde",
                    "smarttags": null,
                    "state": 1,
                    "profile_type": 4,
                    "check_type": 2,
                    "min_value": null,
                    "max_value": null,
                    "rrule": "DTSTART:20220118T000000\nRRULE:FREQ=WEEKLY;INTERVAL=1;BYDAY=TH\n",
                    "created_at": "2022-01-18T08:30:46.000000Z",
                    "updated_at": "2023-06-16T06:04:22.000000Z",
                    "task_category": {
                        "id": 247,
                        "parent_id": 240,
                        "name": "Moussage",
                        "instructions": null,
                        "created_at": "2022-01-09T21:55:38.000000Z",
                        "updated_at": "2022-01-09T21:55:38.000000Z"
                    }
                }
            },
            {
                "id": 8010,
                "user_id": 2,
                "tour_data_id": 31,
                "task_id": 542,
                "check_value": 1,
                "numeric_value": null,
                "comment": null,
                "has_error": 0,
                "created_at": null,
                "updated_at": "2022-02-09T07:36:40.000000Z",
                "task": null
            },
            {
                "id": 8011,
                "user_id": 2,
                "tour_data_id": 31,
                "task_id": 933,
                "check_value": 1,
                "numeric_value": null,
                "comment": null,
                "has_error": 0,
                "created_at": null,
                "updated_at": "2022-02-09T07:36:51.000000Z",
                "task": {
                    "id": 933,
                    "task_category_id": 249,
                    "label": "Nettoyage bol analyseur",
                    "smarttags": null,
                    "state": 1,
                    "profile_type": 4,
                    "check_type": 2,
                    "min_value": null,
                    "max_value": null,
                    "rrule": "DTSTART:20220120T000000\nRRULE:FREQ=WEEKLY;INTERVAL=1;BYDAY=MO,WE,FR\n",
                    "created_at": "2022-01-20T06:23:37.000000Z",
                    "updated_at": "2023-06-16T06:05:21.000000Z",
                    "task_category": {
                        "id": 249,
                        "parent_id": 240,
                        "name": "Bol analyseurs MBBR",
                        "instructions": null,
                        "created_at": "2022-01-09T21:55:38.000000Z",
                        "updated_at": "2023-06-16T06:05:47.000000Z"
                    }
                }
            },
            {
                "id": 8012,
                "user_id": 2,
                "tour_data_id": 31,
                "task_id": 543,
                "check_value": null,
                "numeric_value": null,
                "comment": null,
                "has_error": 0,
                "created_at": null,
                "updated_at": null,
                "task": null
            },
            {
                "id": 8013,
                "user_id": 2,
                "tour_data_id": 31,
                "task_id": 544,
                "check_value": 1,
                "numeric_value": null,
                "comment": null,
                "has_error": 0,
                "created_at": null,
                "updated_at": "2022-02-09T07:36:51.000000Z",
                "task": {
                    "id": 544,
                    "task_category_id": 251,
                    "label": null,
                    "smarttags": null,
                    "state": 1,
                    "profile_type": 4,
                    "check_type": 1,
                    "min_value": null,
                    "max_value": null,
                    "rrule": null,
                    "created_at": "2022-01-09T21:55:38.000000Z",
                    "updated_at": "2022-01-09T21:55:38.000000Z",
                    "task_category": {
                        "id": 251,
                        "parent_id": 250,
                        "name": "Absence de Ships",
                        "instructions": null,
                        "created_at": "2022-01-09T21:55:38.000000Z",
                        "updated_at": "2022-02-09T11:37:01.000000Z"
                    }
                }
            },
            {
                "id": 8014,
                "user_id": 2,
                "tour_data_id": 31,
                "task_id": 545,
                "check_value": null,
                "numeric_value": null,
                "comment": null,
                "has_error": 0,
                "created_at": null,
                "updated_at": null,
                "task": {
                    "id": 545,
                    "task_category_id": 251,
                    "label": null,
                    "smarttags": null,
                    "state": 1,
                    "profile_type": 4,
                    "check_type": 5,
                    "min_value": null,
                    "max_value": null,
                    "rrule": null,
                    "created_at": "2022-01-09T21:55:38.000000Z",
                    "updated_at": "2022-01-09T21:55:38.000000Z",
                    "task_category": {
                        "id": 251,
                        "parent_id": 250,
                        "name": "Absence de Ships",
                        "instructions": null,
                        "created_at": "2022-01-09T21:55:38.000000Z",
                        "updated_at": "2022-02-09T11:37:01.000000Z"
                    }
                }
            },
            {
                "id": 8015,
                "user_id": 2,
                "tour_data_id": 31,
                "task_id": 546,
                "check_value": 1,
                "numeric_value": null,
                "comment": null,
                "has_error": 0,
                "created_at": null,
                "updated_at": "2022-02-09T07:37:01.000000Z",
                "task": {
                    "id": 546,
                    "task_category_id": 252,
                    "label": null,
                    "smarttags": null,
                    "state": 1,
                    "profile_type": 4,
                    "check_type": 1,
                    "min_value": null,
                    "max_value": null,
                    "rrule": null,
                    "created_at": "2022-01-09T21:55:38.000000Z",
                    "updated_at": "2022-01-09T21:55:38.000000Z",
                    "task_category": {
                        "id": 252,
                        "parent_id": 250,
                        "name": "Aspect, Couleur, Odeur",
                        "instructions": null,
                        "created_at": "2022-01-09T21:55:38.000000Z",
                        "updated_at": "2022-01-09T21:55:38.000000Z"
                    }
                }
            },
            {
                "id": 8016,
                "user_id": 2,
                "tour_data_id": 31,
                "task_id": 547,
                "check_value": null,
                "numeric_value": null,
                "comment": null,
                "has_error": 0,
                "created_at": null,
                "updated_at": null,
                "task": {
                    "id": 547,
                    "task_category_id": 252,
                    "label": null,
                    "smarttags": null,
                    "state": 1,
                    "profile_type": 4,
                    "check_type": 5,
                    "min_value": null,
                    "max_value": null,
                    "rrule": null,
                    "created_at": "2022-01-09T21:55:38.000000Z",
                    "updated_at": "2022-01-09T21:55:38.000000Z",
                    "task_category": {
                        "id": 252,
                        "parent_id": 250,
                        "name": "Aspect, Couleur, Odeur",
                        "instructions": null,
                        "created_at": "2022-01-09T21:55:38.000000Z",
                        "updated_at": "2022-01-09T21:55:38.000000Z"
                    }
                }
            },
            {
                "id": 8017,
                "user_id": 2,
                "tour_data_id": 31,
                "task_id": 548,
                "check_value": 1,
                "numeric_value": null,
                "comment": null,
                "has_error": 0,
                "created_at": null,
                "updated_at": "2022-02-09T07:37:01.000000Z",
                "task": null
            },
            {
                "id": 8018,
                "user_id": 2,
                "tour_data_id": 31,
                "task_id": 549,
                "check_value": null,
                "numeric_value": null,
                "comment": null,
                "has_error": 0,
                "created_at": null,
                "updated_at": null,
                "task": null
            },
            {
                "id": 8019,
                "user_id": 2,
                "tour_data_id": 31,
                "task_id": 550,
                "check_value": 1,
                "numeric_value": null,
                "comment": null,
                "has_error": 0,
                "created_at": null,
                "updated_at": "2022-02-09T07:37:01.000000Z",
                "task": {
                    "id": 550,
                    "task_category_id": 255,
                    "label": null,
                    "smarttags": null,
                    "state": 1,
                    "profile_type": 4,
                    "check_type": 1,
                    "min_value": null,
                    "max_value": null,
                    "rrule": null,
                    "created_at": "2022-01-09T21:55:38.000000Z",
                    "updated_at": "2022-01-09T21:55:38.000000Z",
                    "task_category": {
                        "id": 255,
                        "parent_id": 254,
                        "name": "Bruits, Fuites",
                        "instructions": null,
                        "created_at": "2022-01-09T21:55:38.000000Z",
                        "updated_at": "2023-06-16T06:07:25.000000Z"
                    }
                }
            },
            {
                "id": 8020,
                "user_id": 2,
                "tour_data_id": 31,
                "task_id": 551,
                "check_value": null,
                "numeric_value": null,
                "comment": null,
                "has_error": 0,
                "created_at": null,
                "updated_at": null,
                "task": {
                    "id": 551,
                    "task_category_id": 255,
                    "label": null,
                    "smarttags": null,
                    "state": 1,
                    "profile_type": 4,
                    "check_type": 5,
                    "min_value": null,
                    "max_value": null,
                    "rrule": null,
                    "created_at": "2022-01-09T21:55:38.000000Z",
                    "updated_at": "2022-01-09T21:55:38.000000Z",
                    "task_category": {
                        "id": 255,
                        "parent_id": 254,
                        "name": "Bruits, Fuites",
                        "instructions": null,
                        "created_at": "2022-01-09T21:55:38.000000Z",
                        "updated_at": "2023-06-16T06:07:25.000000Z"
                    }
                }
            },
            {
                "id": 8021,
                "user_id": 2,
                "tour_data_id": 31,
                "task_id": 554,
                "check_value": null,
                "numeric_value": null,
                "comment": null,
                "has_error": 0,
                "created_at": null,
                "updated_at": null,
                "task": {
                    "id": 554,
                    "task_category_id": 256,
                    "label": "MBBR Consigne",
                    "smarttags": null,
                    "state": 1,
                    "profile_type": 4,
                    "check_type": 4,
                    "min_value": null,
                    "max_value": null,
                    "rrule": null,
                    "created_at": "2022-01-09T21:55:38.000000Z",
                    "updated_at": "2022-01-09T21:55:38.000000Z",
                    "task_category": {
                        "id": 256,
                        "parent_id": 254,
                        "name": "Valeur de consigne d'injection",
                        "instructions": null,
                        "created_at": "2022-01-09T21:55:38.000000Z",
                        "updated_at": "2022-01-09T21:55:38.000000Z"
                    }
                }
            },
            {
                "id": 8022,
                "user_id": 2,
                "tour_data_id": 31,
                "task_id": 555,
                "check_value": null,
                "numeric_value": null,
                "comment": null,
                "has_error": 0,
                "created_at": null,
                "updated_at": null,
                "task": {
                    "id": 555,
                    "task_category_id": 256,
                    "label": "MBBR Mesure",
                    "smarttags": null,
                    "state": 1,
                    "profile_type": 4,
                    "check_type": 4,
                    "min_value": null,
                    "max_value": null,
                    "rrule": null,
                    "created_at": "2022-01-09T21:55:38.000000Z",
                    "updated_at": "2022-01-09T21:55:38.000000Z",
                    "task_category": {
                        "id": 256,
                        "parent_id": 254,
                        "name": "Valeur de consigne d'injection",
                        "instructions": null,
                        "created_at": "2022-01-09T21:55:38.000000Z",
                        "updated_at": "2022-01-09T21:55:38.000000Z"
                    }
                }
            },
            {
                "id": 8023,
                "user_id": 2,
                "tour_data_id": 31,
                "task_id": 556,
                "check_value": null,
                "numeric_value": null,
                "comment": null,
                "has_error": 0,
                "created_at": null,
                "updated_at": null,
                "task": {
                    "id": 556,
                    "task_category_id": 256,
                    "label": null,
                    "smarttags": null,
                    "state": 1,
                    "profile_type": 4,
                    "check_type": 5,
                    "min_value": null,
                    "max_value": null,
                    "rrule": null,
                    "created_at": "2022-01-09T21:55:38.000000Z",
                    "updated_at": "2022-01-09T21:55:38.000000Z",
                    "task_category": {
                        "id": 256,
                        "parent_id": 254,
                        "name": "Valeur de consigne d'injection",
                        "instructions": null,
                        "created_at": "2022-01-09T21:55:38.000000Z",
                        "updated_at": "2022-01-09T21:55:38.000000Z"
                    }
                }
            },
            {
                "id": 8024,
                "user_id": 2,
                "tour_data_id": 31,
                "task_id": 557,
                "check_value": null,
                "numeric_value": null,
                "comment": null,
                "has_error": 0,
                "created_at": null,
                "updated_at": null,
                "task": {
                    "id": 557,
                    "task_category_id": 257,
                    "label": null,
                    "smarttags": null,
                    "state": 1,
                    "profile_type": 4,
                    "check_type": 1,
                    "min_value": null,
                    "max_value": null,
                    "rrule": "DTSTART:20230616T000000\nRRULE:FREQ=WEEKLY;INTERVAL=1\n",
                    "created_at": "2022-01-09T21:55:38.000000Z",
                    "updated_at": "2023-06-19T07:34:31.000000Z",
                    "task_category": {
                        "id": 257,
                        "parent_id": 254,
                        "name": "Niveau remplissage",
                        "instructions": null,
                        "created_at": "2022-01-09T21:55:38.000000Z",
                        "updated_at": "2023-06-16T06:09:01.000000Z"
                    }
                }
            },
            {
                "id": 8025,
                "user_id": 2,
                "tour_data_id": 31,
                "task_id": 558,
                "check_value": null,
                "numeric_value": null,
                "comment": null,
                "has_error": 0,
                "created_at": null,
                "updated_at": null,
                "task": {
                    "id": 558,
                    "task_category_id": 257,
                    "label": null,
                    "smarttags": null,
                    "state": 1,
                    "profile_type": 4,
                    "check_type": 4,
                    "min_value": "30.000",
                    "max_value": null,
                    "rrule": "DTSTART:20230616T000000\nRRULE:FREQ=WEEKLY;INTERVAL=1;BYDAY=MO,FR\n",
                    "created_at": "2022-01-09T21:55:38.000000Z",
                    "updated_at": "2023-06-19T07:34:36.000000Z",
                    "task_category": {
                        "id": 257,
                        "parent_id": 254,
                        "name": "Niveau remplissage",
                        "instructions": null,
                        "created_at": "2022-01-09T21:55:38.000000Z",
                        "updated_at": "2023-06-16T06:09:01.000000Z"
                    }
                }
            },
            {
                "id": 8026,
                "user_id": 2,
                "tour_data_id": 31,
                "task_id": 559,
                "check_value": null,
                "numeric_value": null,
                "comment": null,
                "has_error": 0,
                "created_at": null,
                "updated_at": null,
                "task": {
                    "id": 559,
                    "task_category_id": 257,
                    "label": null,
                    "smarttags": null,
                    "state": 1,
                    "profile_type": 4,
                    "check_type": 5,
                    "min_value": null,
                    "max_value": null,
                    "rrule": "DTSTART:20230616T000000\nRRULE:FREQ=WEEKLY;INTERVAL=1\n",
                    "created_at": "2022-01-09T21:55:38.000000Z",
                    "updated_at": "2023-06-19T07:34:39.000000Z",
                    "task_category": {
                        "id": 257,
                        "parent_id": 254,
                        "name": "Niveau remplissage",
                        "instructions": null,
                        "created_at": "2022-01-09T21:55:38.000000Z",
                        "updated_at": "2023-06-16T06:09:01.000000Z"
                    }
                }
            },
            {
                "id": 8027,
                "user_id": 2,
                "tour_data_id": 31,
                "task_id": 560,
                "check_value": null,
                "numeric_value": null,
                "comment": null,
                "has_error": 0,
                "created_at": null,
                "updated_at": null,
                "task": {
                    "id": 560,
                    "task_category_id": 258,
                    "label": null,
                    "smarttags": null,
                    "state": 1,
                    "profile_type": 4,
                    "check_type": 1,
                    "min_value": null,
                    "max_value": null,
                    "rrule": "DTSTART:20230616T000000\nRRULE:FREQ=WEEKLY;INTERVAL=1;BYDAY=MO,FR\n",
                    "created_at": "2022-01-09T21:55:38.000000Z",
                    "updated_at": "2023-06-16T06:08:23.000000Z",
                    "task_category": {
                        "id": 258,
                        "parent_id": 254,
                        "name": "Pression cuve",
                        "instructions": null,
                        "created_at": "2022-01-09T21:55:38.000000Z",
                        "updated_at": "2023-06-16T06:08:44.000000Z"
                    }
                }
            },
            {
                "id": 8028,
                "user_id": 2,
                "tour_data_id": 31,
                "task_id": 561,
                "check_value": null,
                "numeric_value": null,
                "comment": null,
                "has_error": 0,
                "created_at": null,
                "updated_at": null,
                "task": {
                    "id": 561,
                    "task_category_id": 258,
                    "label": null,
                    "smarttags": null,
                    "state": 1,
                    "profile_type": 4,
                    "check_type": 4,
                    "min_value": "15.000",
                    "max_value": null,
                    "rrule": "DTSTART:20230616T000000\nRRULE:FREQ=WEEKLY;INTERVAL=1;BYDAY=MO,FR\n",
                    "created_at": "2022-01-09T21:55:38.000000Z",
                    "updated_at": "2023-06-16T06:08:39.000000Z",
                    "task_category": {
                        "id": 258,
                        "parent_id": 254,
                        "name": "Pression cuve",
                        "instructions": null,
                        "created_at": "2022-01-09T21:55:38.000000Z",
                        "updated_at": "2023-06-16T06:08:44.000000Z"
                    }
                }
            },
            {
                "id": 8029,
                "user_id": 2,
                "tour_data_id": 31,
                "task_id": 562,
                "check_value": null,
                "numeric_value": null,
                "comment": null,
                "has_error": 0,
                "created_at": null,
                "updated_at": null,
                "task": {
                    "id": 562,
                    "task_category_id": 258,
                    "label": null,
                    "smarttags": null,
                    "state": 1,
                    "profile_type": 4,
                    "check_type": 5,
                    "min_value": null,
                    "max_value": null,
                    "rrule": "DTSTART:20230616T000000\nRRULE:FREQ=WEEKLY;INTERVAL=1;BYDAY=MO,FR\n",
                    "created_at": "2022-01-09T21:55:38.000000Z",
                    "updated_at": "2023-06-16T06:08:53.000000Z",
                    "task_category": {
                        "id": 258,
                        "parent_id": 254,
                        "name": "Pression cuve",
                        "instructions": null,
                        "created_at": "2022-01-09T21:55:38.000000Z",
                        "updated_at": "2023-06-16T06:08:44.000000Z"
                    }
                }
            },
            {
                "id": 8030,
                "user_id": 2,
                "tour_data_id": 31,
                "task_id": 563,
                "check_value": null,
                "numeric_value": null,
                "comment": null,
                "has_error": 0,
                "created_at": null,
                "updated_at": null,
                "task": null
            },
            {
                "id": 8031,
                "user_id": 2,
                "tour_data_id": 31,
                "task_id": 564,
                "check_value": null,
                "numeric_value": null,
                "comment": null,
                "has_error": 0,
                "created_at": null,
                "updated_at": null,
                "task": null
            },
            {
                "id": 8032,
                "user_id": 2,
                "tour_data_id": 31,
                "task_id": 565,
                "check_value": null,
                "numeric_value": null,
                "comment": null,
                "has_error": 0,
                "created_at": null,
                "updated_at": null,
                "task": null
            },
            {
                "id": 8033,
                "user_id": 2,
                "tour_data_id": 31,
                "task_id": 566,
                "check_value": null,
                "numeric_value": null,
                "comment": null,
                "has_error": 0,
                "created_at": null,
                "updated_at": null,
                "task": {
                    "id": 566,
                    "task_category_id": 262,
                    "label": null,
                    "smarttags": null,
                    "state": 1,
                    "profile_type": 4,
                    "check_type": 1,
                    "min_value": null,
                    "max_value": null,
                    "rrule": "DTSTART:20230616T000000\nRRULE:FREQ=WEEKLY;INTERVAL=1;BYDAY=MO,WE,FR\n",
                    "created_at": "2022-01-09T21:55:38.000000Z",
                    "updated_at": "2023-06-16T06:13:34.000000Z",
                    "task_category": {
                        "id": 262,
                        "parent_id": 261,
                        "name": "Valeur vigilohm",
                        "instructions": null,
                        "created_at": "2022-01-09T21:55:38.000000Z",
                        "updated_at": "2022-01-09T21:55:38.000000Z"
                    }
                }
            },
            {
                "id": 8034,
                "user_id": 2,
                "tour_data_id": 31,
                "task_id": 567,
                "check_value": null,
                "numeric_value": null,
                "comment": null,
                "has_error": 0,
                "created_at": null,
                "updated_at": null,
                "task": {
                    "id": 567,
                    "task_category_id": 262,
                    "label": null,
                    "smarttags": null,
                    "state": 1,
                    "profile_type": 4,
                    "check_type": 4,
                    "min_value": "20.000",
                    "max_value": null,
                    "rrule": "DTSTART:20230616T000000\nRRULE:FREQ=WEEKLY;INTERVAL=1;BYDAY=MO,WE,FR\n",
                    "created_at": "2022-01-09T21:55:38.000000Z",
                    "updated_at": "2023-06-16T06:13:25.000000Z",
                    "task_category": {
                        "id": 262,
                        "parent_id": 261,
                        "name": "Valeur vigilohm",
                        "instructions": null,
                        "created_at": "2022-01-09T21:55:38.000000Z",
                        "updated_at": "2022-01-09T21:55:38.000000Z"
                    }
                }
            },
            {
                "id": 8035,
                "user_id": 2,
                "tour_data_id": 31,
                "task_id": 568,
                "check_value": null,
                "numeric_value": null,
                "comment": null,
                "has_error": 0,
                "created_at": null,
                "updated_at": null,
                "task": {
                    "id": 568,
                    "task_category_id": 262,
                    "label": null,
                    "smarttags": null,
                    "state": 1,
                    "profile_type": 4,
                    "check_type": 5,
                    "min_value": null,
                    "max_value": null,
                    "rrule": "DTSTART:20230616T000000\nRRULE:FREQ=WEEKLY;INTERVAL=1;BYDAY=MO,WE,FR\n",
                    "created_at": "2022-01-09T21:55:38.000000Z",
                    "updated_at": "2023-06-16T06:13:42.000000Z",
                    "task_category": {
                        "id": 262,
                        "parent_id": 261,
                        "name": "Valeur vigilohm",
                        "instructions": null,
                        "created_at": "2022-01-09T21:55:38.000000Z",
                        "updated_at": "2022-01-09T21:55:38.000000Z"
                    }
                }
            },
            {
                "id": 8036,
                "user_id": 2,
                "tour_data_id": 31,
                "task_id": 695,
                "check_value": null,
                "numeric_value": null,
                "comment": null,
                "has_error": 0,
                "created_at": null,
                "updated_at": null,
                "task": {
                    "id": 695,
                    "task_category_id": 266,
                    "label": "Niveau d’huile",
                    "smarttags": null,
                    "state": 1,
                    "profile_type": 4,
                    "check_type": 1,
                    "min_value": null,
                    "max_value": null,
                    "rrule": null,
                    "created_at": "2022-01-10T18:43:08.000000Z",
                    "updated_at": "2022-02-07T08:17:55.000000Z",
                    "task_category": {
                        "id": 266,
                        "parent_id": 263,
                        "name": "Surp. 1",
                        "instructions": null,
                        "created_at": "2022-01-09T21:55:38.000000Z",
                        "updated_at": "2022-01-09T21:55:38.000000Z"
                    }
                }
            },
            {
                "id": 8037,
                "user_id": 2,
                "tour_data_id": 31,
                "task_id": 706,
                "check_value": null,
                "numeric_value": null,
                "comment": null,
                "has_error": 0,
                "created_at": null,
                "updated_at": null,
                "task": {
                    "id": 706,
                    "task_category_id": 266,
                    "label": null,
                    "smarttags": null,
                    "state": 1,
                    "profile_type": 4,
                    "check_type": 1,
                    "min_value": null,
                    "max_value": null,
                    "rrule": null,
                    "created_at": "2022-01-10T18:56:30.000000Z",
                    "updated_at": "2023-06-16T06:14:40.000000Z",
                    "task_category": {
                        "id": 266,
                        "parent_id": 263,
                        "name": "Surp. 1",
                        "instructions": null,
                        "created_at": "2022-01-09T21:55:38.000000Z",
                        "updated_at": "2022-01-09T21:55:38.000000Z"
                    }
                }
            },
            {
                "id": 8038,
                "user_id": 2,
                "tour_data_id": 31,
                "task_id": 573,
                "check_value": null,
                "numeric_value": null,
                "comment": null,
                "has_error": 0,
                "created_at": null,
                "updated_at": null,
                "task": {
                    "id": 573,
                    "task_category_id": 266,
                    "label": "Pression",
                    "smarttags": null,
                    "state": 1,
                    "profile_type": 4,
                    "check_type": 4,
                    "min_value": null,
                    "max_value": null,
                    "rrule": null,
                    "created_at": "2022-01-09T21:55:38.000000Z",
                    "updated_at": "2022-01-09T21:55:38.000000Z",
                    "task_category": {
                        "id": 266,
                        "parent_id": 263,
                        "name": "Surp. 1",
                        "instructions": null,
                        "created_at": "2022-01-09T21:55:38.000000Z",
                        "updated_at": "2022-01-09T21:55:38.000000Z"
                    }
                }
            },
            {
                "id": 8039,
                "user_id": 2,
                "tour_data_id": 31,
                "task_id": 574,
                "check_value": null,
                "numeric_value": null,
                "comment": null,
                "has_error": 0,
                "created_at": null,
                "updated_at": null,
                "task": {
                    "id": 574,
                    "task_category_id": 266,
                    "label": "Dépression max",
                    "smarttags": null,
                    "state": 1,
                    "profile_type": 4,
                    "check_type": 4,
                    "min_value": null,
                    "max_value": null,
                    "rrule": null,
                    "created_at": "2022-01-09T21:55:38.000000Z",
                    "updated_at": "2022-01-09T21:55:38.000000Z",
                    "task_category": {
                        "id": 266,
                        "parent_id": 263,
                        "name": "Surp. 1",
                        "instructions": null,
                        "created_at": "2022-01-09T21:55:38.000000Z",
                        "updated_at": "2022-01-09T21:55:38.000000Z"
                    }
                }
            },
            {
                "id": 8040,
                "user_id": 2,
                "tour_data_id": 31,
                "task_id": 575,
                "check_value": null,
                "numeric_value": null,
                "comment": null,
                "has_error": 0,
                "created_at": null,
                "updated_at": null,
                "task": {
                    "id": 575,
                    "task_category_id": 266,
                    "label": null,
                    "smarttags": null,
                    "state": 1,
                    "profile_type": 4,
                    "check_type": 5,
                    "min_value": null,
                    "max_value": null,
                    "rrule": null,
                    "created_at": "2022-01-09T21:55:38.000000Z",
                    "updated_at": "2022-01-09T21:55:38.000000Z",
                    "task_category": {
                        "id": 266,
                        "parent_id": 263,
                        "name": "Surp. 1",
                        "instructions": null,
                        "created_at": "2022-01-09T21:55:38.000000Z",
                        "updated_at": "2022-01-09T21:55:38.000000Z"
                    }
                }
            },
            {
                "id": 8041,
                "user_id": 2,
                "tour_data_id": 31,
                "task_id": 697,
                "check_value": null,
                "numeric_value": null,
                "comment": null,
                "has_error": 0,
                "created_at": null,
                "updated_at": null,
                "task": {
                    "id": 697,
                    "task_category_id": 267,
                    "label": "Niveau d’huile",
                    "smarttags": null,
                    "state": 1,
                    "profile_type": 4,
                    "check_type": 1,
                    "min_value": null,
                    "max_value": null,
                    "rrule": null,
                    "created_at": "2022-01-10T18:43:49.000000Z",
                    "updated_at": "2022-02-07T08:18:17.000000Z",
                    "task_category": {
                        "id": 267,
                        "parent_id": 263,
                        "name": "Surp. 2",
                        "instructions": null,
                        "created_at": "2022-01-09T21:55:38.000000Z",
                        "updated_at": "2022-01-09T21:55:38.000000Z"
                    }
                }
            },
            {
                "id": 8042,
                "user_id": 2,
                "tour_data_id": 31,
                "task_id": 707,
                "check_value": null,
                "numeric_value": null,
                "comment": null,
                "has_error": 0,
                "created_at": null,
                "updated_at": null,
                "task": {
                    "id": 707,
                    "task_category_id": 267,
                    "label": null,
                    "smarttags": null,
                    "state": 1,
                    "profile_type": 4,
                    "check_type": 1,
                    "min_value": null,
                    "max_value": null,
                    "rrule": null,
                    "created_at": "2022-01-10T18:56:36.000000Z",
                    "updated_at": "2023-06-16T06:14:30.000000Z",
                    "task_category": {
                        "id": 267,
                        "parent_id": 263,
                        "name": "Surp. 2",
                        "instructions": null,
                        "created_at": "2022-01-09T21:55:38.000000Z",
                        "updated_at": "2022-01-09T21:55:38.000000Z"
                    }
                }
            },
            {
                "id": 8043,
                "user_id": 2,
                "tour_data_id": 31,
                "task_id": 576,
                "check_value": null,
                "numeric_value": null,
                "comment": null,
                "has_error": 0,
                "created_at": null,
                "updated_at": null,
                "task": {
                    "id": 576,
                    "task_category_id": 267,
                    "label": "Pression",
                    "smarttags": null,
                    "state": 1,
                    "profile_type": 4,
                    "check_type": 4,
                    "min_value": null,
                    "max_value": null,
                    "rrule": null,
                    "created_at": "2022-01-09T21:55:38.000000Z",
                    "updated_at": "2022-01-09T21:55:38.000000Z",
                    "task_category": {
                        "id": 267,
                        "parent_id": 263,
                        "name": "Surp. 2",
                        "instructions": null,
                        "created_at": "2022-01-09T21:55:38.000000Z",
                        "updated_at": "2022-01-09T21:55:38.000000Z"
                    }
                }
            },
            {
                "id": 8044,
                "user_id": 2,
                "tour_data_id": 31,
                "task_id": 577,
                "check_value": null,
                "numeric_value": null,
                "comment": null,
                "has_error": 0,
                "created_at": null,
                "updated_at": null,
                "task": {
                    "id": 577,
                    "task_category_id": 267,
                    "label": "Dépression max",
                    "smarttags": null,
                    "state": 1,
                    "profile_type": 4,
                    "check_type": 4,
                    "min_value": null,
                    "max_value": null,
                    "rrule": null,
                    "created_at": "2022-01-09T21:55:38.000000Z",
                    "updated_at": "2022-01-09T21:55:38.000000Z",
                    "task_category": {
                        "id": 267,
                        "parent_id": 263,
                        "name": "Surp. 2",
                        "instructions": null,
                        "created_at": "2022-01-09T21:55:38.000000Z",
                        "updated_at": "2022-01-09T21:55:38.000000Z"
                    }
                }
            },
            {
                "id": 8045,
                "user_id": 2,
                "tour_data_id": 31,
                "task_id": 578,
                "check_value": null,
                "numeric_value": null,
                "comment": null,
                "has_error": 0,
                "created_at": null,
                "updated_at": null,
                "task": {
                    "id": 578,
                    "task_category_id": 267,
                    "label": null,
                    "smarttags": null,
                    "state": 1,
                    "profile_type": 4,
                    "check_type": 5,
                    "min_value": null,
                    "max_value": null,
                    "rrule": null,
                    "created_at": "2022-01-09T21:55:38.000000Z",
                    "updated_at": "2022-01-09T21:55:38.000000Z",
                    "task_category": {
                        "id": 267,
                        "parent_id": 263,
                        "name": "Surp. 2",
                        "instructions": null,
                        "created_at": "2022-01-09T21:55:38.000000Z",
                        "updated_at": "2022-01-09T21:55:38.000000Z"
                    }
                }
            },
            {
                "id": 8046,
                "user_id": 2,
                "tour_data_id": 31,
                "task_id": 699,
                "check_value": null,
                "numeric_value": null,
                "comment": null,
                "has_error": 0,
                "created_at": null,
                "updated_at": null,
                "task": {
                    "id": 699,
                    "task_category_id": 268,
                    "label": "Niveau d’huile",
                    "smarttags": null,
                    "state": 1,
                    "profile_type": 4,
                    "check_type": 1,
                    "min_value": null,
                    "max_value": null,
                    "rrule": null,
                    "created_at": "2022-01-10T18:44:06.000000Z",
                    "updated_at": "2022-02-07T08:18:25.000000Z",
                    "task_category": {
                        "id": 268,
                        "parent_id": 263,
                        "name": "Surp. 3",
                        "instructions": null,
                        "created_at": "2022-01-09T21:55:38.000000Z",
                        "updated_at": "2022-01-09T21:55:38.000000Z"
                    }
                }
            },
            {
                "id": 8047,
                "user_id": 2,
                "tour_data_id": 31,
                "task_id": 708,
                "check_value": null,
                "numeric_value": null,
                "comment": null,
                "has_error": 0,
                "created_at": null,
                "updated_at": null,
                "task": {
                    "id": 708,
                    "task_category_id": 268,
                    "label": null,
                    "smarttags": null,
                    "state": 1,
                    "profile_type": 4,
                    "check_type": 1,
                    "min_value": null,
                    "max_value": null,
                    "rrule": null,
                    "created_at": "2022-01-10T18:56:44.000000Z",
                    "updated_at": "2023-06-16T06:14:21.000000Z",
                    "task_category": {
                        "id": 268,
                        "parent_id": 263,
                        "name": "Surp. 3",
                        "instructions": null,
                        "created_at": "2022-01-09T21:55:38.000000Z",
                        "updated_at": "2022-01-09T21:55:38.000000Z"
                    }
                }
            },
            {
                "id": 8048,
                "user_id": 2,
                "tour_data_id": 31,
                "task_id": 579,
                "check_value": null,
                "numeric_value": null,
                "comment": null,
                "has_error": 0,
                "created_at": null,
                "updated_at": null,
                "task": {
                    "id": 579,
                    "task_category_id": 268,
                    "label": "Pression",
                    "smarttags": null,
                    "state": 1,
                    "profile_type": 4,
                    "check_type": 4,
                    "min_value": null,
                    "max_value": null,
                    "rrule": null,
                    "created_at": "2022-01-09T21:55:38.000000Z",
                    "updated_at": "2022-01-09T21:55:38.000000Z",
                    "task_category": {
                        "id": 268,
                        "parent_id": 263,
                        "name": "Surp. 3",
                        "instructions": null,
                        "created_at": "2022-01-09T21:55:38.000000Z",
                        "updated_at": "2022-01-09T21:55:38.000000Z"
                    }
                }
            },
            {
                "id": 8049,
                "user_id": 2,
                "tour_data_id": 31,
                "task_id": 580,
                "check_value": null,
                "numeric_value": null,
                "comment": null,
                "has_error": 0,
                "created_at": null,
                "updated_at": null,
                "task": {
                    "id": 580,
                    "task_category_id": 268,
                    "label": "Dépression max",
                    "smarttags": null,
                    "state": 1,
                    "profile_type": 4,
                    "check_type": 4,
                    "min_value": null,
                    "max_value": null,
                    "rrule": null,
                    "created_at": "2022-01-09T21:55:38.000000Z",
                    "updated_at": "2022-01-09T21:55:38.000000Z",
                    "task_category": {
                        "id": 268,
                        "parent_id": 263,
                        "name": "Surp. 3",
                        "instructions": null,
                        "created_at": "2022-01-09T21:55:38.000000Z",
                        "updated_at": "2022-01-09T21:55:38.000000Z"
                    }
                }
            },
            {
                "id": 8050,
                "user_id": 2,
                "tour_data_id": 31,
                "task_id": 581,
                "check_value": null,
                "numeric_value": null,
                "comment": null,
                "has_error": 0,
                "created_at": null,
                "updated_at": null,
                "task": {
                    "id": 581,
                    "task_category_id": 268,
                    "label": null,
                    "smarttags": null,
                    "state": 1,
                    "profile_type": 4,
                    "check_type": 5,
                    "min_value": null,
                    "max_value": null,
                    "rrule": null,
                    "created_at": "2022-01-09T21:55:38.000000Z",
                    "updated_at": "2022-01-09T21:55:38.000000Z",
                    "task_category": {
                        "id": 268,
                        "parent_id": 263,
                        "name": "Surp. 3",
                        "instructions": null,
                        "created_at": "2022-01-09T21:55:38.000000Z",
                        "updated_at": "2022-01-09T21:55:38.000000Z"
                    }
                }
            },
            {
                "id": 8051,
                "user_id": 2,
                "tour_data_id": 31,
                "task_id": 812,
                "check_value": null,
                "numeric_value": null,
                "comment": null,
                "has_error": 0,
                "created_at": null,
                "updated_at": null,
                "task": {
                    "id": 812,
                    "task_category_id": 270,
                    "label": "Nombre de sac de coagulant ajouter",
                    "smarttags": null,
                    "state": 1,
                    "profile_type": 4,
                    "check_type": 4,
                    "min_value": null,
                    "max_value": null,
                    "rrule": null,
                    "created_at": "2022-01-10T20:16:41.000000Z",
                    "updated_at": "2022-01-20T06:27:20.000000Z",
                    "task_category": {
                        "id": 270,
                        "parent_id": 269,
                        "name": "Niveau de coagulant",
                        "instructions": null,
                        "created_at": "2022-01-09T21:55:38.000000Z",
                        "updated_at": "2022-01-20T06:27:10.000000Z"
                    }
                }
            },
            {
                "id": 8052,
                "user_id": 2,
                "tour_data_id": 31,
                "task_id": 813,
                "check_value": null,
                "numeric_value": null,
                "comment": null,
                "has_error": 0,
                "created_at": null,
                "updated_at": null,
                "task": {
                    "id": 813,
                    "task_category_id": 270,
                    "label": "Concentration de la préparante",
                    "smarttags": null,
                    "state": 1,
                    "profile_type": 4,
                    "check_type": 2,
                    "min_value": null,
                    "max_value": null,
                    "rrule": "DTSTART:20220110T000000\nRRULE:FREQ=WEEKLY;INTERVAL=1\n",
                    "created_at": "2022-01-10T20:17:00.000000Z",
                    "updated_at": "2023-06-19T07:33:41.000000Z",
                    "task_category": {
                        "id": 270,
                        "parent_id": 269,
                        "name": "Niveau de coagulant",
                        "instructions": null,
                        "created_at": "2022-01-09T21:55:38.000000Z",
                        "updated_at": "2022-01-20T06:27:10.000000Z"
                    }
                }
            },
            {
                "id": 8053,
                "user_id": 2,
                "tour_data_id": 31,
                "task_id": 582,
                "check_value": null,
                "numeric_value": null,
                "comment": null,
                "has_error": 0,
                "created_at": null,
                "updated_at": null,
                "task": {
                    "id": 582,
                    "task_category_id": 270,
                    "label": null,
                    "smarttags": null,
                    "state": 1,
                    "profile_type": 4,
                    "check_type": 1,
                    "min_value": null,
                    "max_value": null,
                    "rrule": null,
                    "created_at": "2022-01-09T21:55:38.000000Z",
                    "updated_at": "2022-01-09T21:55:38.000000Z",
                    "task_category": {
                        "id": 270,
                        "parent_id": 269,
                        "name": "Niveau de coagulant",
                        "instructions": null,
                        "created_at": "2022-01-09T21:55:38.000000Z",
                        "updated_at": "2022-01-20T06:27:10.000000Z"
                    }
                }
            },
            {
                "id": 8054,
                "user_id": 2,
                "tour_data_id": 31,
                "task_id": 583,
                "check_value": null,
                "numeric_value": null,
                "comment": null,
                "has_error": 0,
                "created_at": null,
                "updated_at": null,
                "task": {
                    "id": 583,
                    "task_category_id": 270,
                    "label": null,
                    "smarttags": null,
                    "state": 1,
                    "profile_type": 4,
                    "check_type": 5,
                    "min_value": null,
                    "max_value": null,
                    "rrule": null,
                    "created_at": "2022-01-09T21:55:38.000000Z",
                    "updated_at": "2022-01-09T21:55:38.000000Z",
                    "task_category": {
                        "id": 270,
                        "parent_id": 269,
                        "name": "Niveau de coagulant",
                        "instructions": null,
                        "created_at": "2022-01-09T21:55:38.000000Z",
                        "updated_at": "2022-01-20T06:27:10.000000Z"
                    }
                }
            },
            {
                "id": 8055,
                "user_id": 2,
                "tour_data_id": 31,
                "task_id": 814,
                "check_value": null,
                "numeric_value": null,
                "comment": null,
                "has_error": 0,
                "created_at": null,
                "updated_at": null,
                "task": {
                    "id": 814,
                    "task_category_id": 273,
                    "label": "Besoin de commander",
                    "smarttags": null,
                    "state": 1,
                    "profile_type": 4,
                    "check_type": 2,
                    "min_value": null,
                    "max_value": null,
                    "rrule": "DTSTART:20230616T000000\nRRULE:FREQ=WEEKLY;INTERVAL=1;BYDAY=TH\n",
                    "created_at": "2022-01-10T20:17:39.000000Z",
                    "updated_at": "2023-06-16T06:11:49.000000Z",
                    "task_category": {
                        "id": 273,
                        "parent_id": 272,
                        "name": "Propreté, Bruits, Fuites (ctrl niveau rétention)",
                        "instructions": null,
                        "created_at": "2022-01-09T21:55:38.000000Z",
                        "updated_at": "2022-01-09T21:55:38.000000Z"
                    }
                }
            },
            {
                "id": 8056,
                "user_id": 2,
                "tour_data_id": 31,
                "task_id": 586,
                "check_value": null,
                "numeric_value": null,
                "comment": null,
                "has_error": 0,
                "created_at": null,
                "updated_at": null,
                "task": {
                    "id": 586,
                    "task_category_id": 273,
                    "label": null,
                    "smarttags": null,
                    "state": 1,
                    "profile_type": 4,
                    "check_type": 1,
                    "min_value": null,
                    "max_value": null,
                    "rrule": null,
                    "created_at": "2022-01-09T21:55:38.000000Z",
                    "updated_at": "2022-01-09T21:55:38.000000Z",
                    "task_category": {
                        "id": 273,
                        "parent_id": 272,
                        "name": "Propreté, Bruits, Fuites (ctrl niveau rétention)",
                        "instructions": null,
                        "created_at": "2022-01-09T21:55:38.000000Z",
                        "updated_at": "2022-01-09T21:55:38.000000Z"
                    }
                }
            },
            {
                "id": 8057,
                "user_id": 2,
                "tour_data_id": 31,
                "task_id": 587,
                "check_value": null,
                "numeric_value": null,
                "comment": null,
                "has_error": 0,
                "created_at": null,
                "updated_at": null,
                "task": {
                    "id": 587,
                    "task_category_id": 273,
                    "label": null,
                    "smarttags": null,
                    "state": 1,
                    "profile_type": 4,
                    "check_type": 5,
                    "min_value": null,
                    "max_value": null,
                    "rrule": null,
                    "created_at": "2022-01-09T21:55:38.000000Z",
                    "updated_at": "2022-01-09T21:55:38.000000Z",
                    "task_category": {
                        "id": 273,
                        "parent_id": 272,
                        "name": "Propreté, Bruits, Fuites (ctrl niveau rétention)",
                        "instructions": null,
                        "created_at": "2022-01-09T21:55:38.000000Z",
                        "updated_at": "2022-01-09T21:55:38.000000Z"
                    }
                }
            },
            {
                "id": 8058,
                "user_id": 2,
                "tour_data_id": 31,
                "task_id": 588,
                "check_value": null,
                "numeric_value": null,
                "comment": null,
                "has_error": 0,
                "created_at": null,
                "updated_at": null,
                "task": {
                    "id": 588,
                    "task_category_id": 275,
                    "label": null,
                    "smarttags": null,
                    "state": 1,
                    "profile_type": 4,
                    "check_type": 2,
                    "min_value": null,
                    "max_value": null,
                    "rrule": null,
                    "created_at": "2022-01-09T21:55:38.000000Z",
                    "updated_at": "2022-01-09T23:38:35.000000Z",
                    "task_category": {
                        "id": 275,
                        "parent_id": 274,
                        "name": "Odeur méthanol (EVACUATION)",
                        "instructions": null,
                        "created_at": "2022-01-09T21:55:38.000000Z",
                        "updated_at": "2022-01-09T21:55:38.000000Z"
                    }
                }
            },
            {
                "id": 8059,
                "user_id": 2,
                "tour_data_id": 31,
                "task_id": 589,
                "check_value": null,
                "numeric_value": null,
                "comment": null,
                "has_error": 0,
                "created_at": null,
                "updated_at": null,
                "task": {
                    "id": 589,
                    "task_category_id": 275,
                    "label": null,
                    "smarttags": null,
                    "state": 1,
                    "profile_type": 4,
                    "check_type": 5,
                    "min_value": null,
                    "max_value": null,
                    "rrule": null,
                    "created_at": "2022-01-09T21:55:38.000000Z",
                    "updated_at": "2022-01-09T21:55:38.000000Z",
                    "task_category": {
                        "id": 275,
                        "parent_id": 274,
                        "name": "Odeur méthanol (EVACUATION)",
                        "instructions": null,
                        "created_at": "2022-01-09T21:55:38.000000Z",
                        "updated_at": "2022-01-09T21:55:38.000000Z"
                    }
                }
            },
            {
                "id": 8060,
                "user_id": 2,
                "tour_data_id": 31,
                "task_id": 591,
                "check_value": null,
                "numeric_value": null,
                "comment": null,
                "has_error": 0,
                "created_at": null,
                "updated_at": null,
                "task": {
                    "id": 591,
                    "task_category_id": 276,
                    "label": "Présence de liquide dans la fosse",
                    "smarttags": null,
                    "state": 1,
                    "profile_type": 4,
                    "check_type": 2,
                    "min_value": null,
                    "max_value": null,
                    "rrule": "DTSTART:20230616T000000\nRRULE:FREQ=WEEKLY;INTERVAL=1;BYDAY=TU,TH\n",
                    "created_at": "2022-01-09T21:55:38.000000Z",
                    "updated_at": "2023-06-16T06:23:24.000000Z",
                    "task_category": {
                        "id": 276,
                        "parent_id": 274,
                        "name": "Ctrl fosse",
                        "instructions": null,
                        "created_at": "2022-01-09T21:55:38.000000Z",
                        "updated_at": "2022-01-09T21:55:38.000000Z"
                    }
                }
            },
            {
                "id": 8061,
                "user_id": 2,
                "tour_data_id": 31,
                "task_id": 592,
                "check_value": null,
                "numeric_value": null,
                "comment": null,
                "has_error": 0,
                "created_at": null,
                "updated_at": null,
                "task": {
                    "id": 592,
                    "task_category_id": 276,
                    "label": null,
                    "smarttags": null,
                    "state": 1,
                    "profile_type": 4,
                    "check_type": 5,
                    "min_value": null,
                    "max_value": null,
                    "rrule": "DTSTART:20230616T000000\nRRULE:FREQ=WEEKLY;INTERVAL=1;BYDAY=TU,TH\n",
                    "created_at": "2022-01-09T21:55:38.000000Z",
                    "updated_at": "2023-06-16T06:23:31.000000Z",
                    "task_category": {
                        "id": 276,
                        "parent_id": 274,
                        "name": "Ctrl fosse",
                        "instructions": null,
                        "created_at": "2022-01-09T21:55:38.000000Z",
                        "updated_at": "2022-01-09T21:55:38.000000Z"
                    }
                }
            },
            {
                "id": 8062,
                "user_id": 2,
                "tour_data_id": 31,
                "task_id": 593,
                "check_value": null,
                "numeric_value": null,
                "comment": null,
                "has_error": 0,
                "created_at": null,
                "updated_at": null,
                "task": {
                    "id": 593,
                    "task_category_id": 277,
                    "label": null,
                    "smarttags": null,
                    "state": 1,
                    "profile_type": 4,
                    "check_type": 1,
                    "min_value": null,
                    "max_value": null,
                    "rrule": null,
                    "created_at": "2022-01-09T21:55:38.000000Z",
                    "updated_at": "2022-01-09T21:55:38.000000Z",
                    "task_category": {
                        "id": 277,
                        "parent_id": 274,
                        "name": "Propreté, Bruits, Fuites",
                        "instructions": null,
                        "created_at": "2022-01-09T21:55:38.000000Z",
                        "updated_at": "2022-01-09T21:55:38.000000Z"
                    }
                }
            },
            {
                "id": 8063,
                "user_id": 2,
                "tour_data_id": 31,
                "task_id": 594,
                "check_value": null,
                "numeric_value": null,
                "comment": null,
                "has_error": 0,
                "created_at": null,
                "updated_at": null,
                "task": {
                    "id": 594,
                    "task_category_id": 277,
                    "label": null,
                    "smarttags": null,
                    "state": 1,
                    "profile_type": 4,
                    "check_type": 5,
                    "min_value": null,
                    "max_value": null,
                    "rrule": null,
                    "created_at": "2022-01-09T21:55:38.000000Z",
                    "updated_at": "2022-01-09T21:55:38.000000Z",
                    "task_category": {
                        "id": 277,
                        "parent_id": 274,
                        "name": "Propreté, Bruits, Fuites",
                        "instructions": null,
                        "created_at": "2022-01-09T21:55:38.000000Z",
                        "updated_at": "2022-01-09T21:55:38.000000Z"
                    }
                }
            },
            {
                "id": 8064,
                "user_id": 2,
                "tour_data_id": 31,
                "task_id": 595,
                "check_value": null,
                "numeric_value": null,
                "comment": null,
                "has_error": 0,
                "created_at": null,
                "updated_at": null,
                "task": {
                    "id": 595,
                    "task_category_id": 279,
                    "label": null,
                    "smarttags": null,
                    "state": 1,
                    "profile_type": 4,
                    "check_type": 1,
                    "min_value": null,
                    "max_value": null,
                    "rrule": null,
                    "created_at": "2022-01-09T21:55:38.000000Z",
                    "updated_at": "2022-01-09T21:55:38.000000Z",
                    "task_category": {
                        "id": 279,
                        "parent_id": 278,
                        "name": "Valeur index",
                        "instructions": null,
                        "created_at": "2022-01-09T21:55:38.000000Z",
                        "updated_at": "2022-01-09T21:55:38.000000Z"
                    }
                }
            },
            {
                "id": 8065,
                "user_id": 2,
                "tour_data_id": 31,
                "task_id": 596,
                "check_value": null,
                "numeric_value": null,
                "comment": null,
                "has_error": 0,
                "created_at": null,
                "updated_at": null,
                "task": {
                    "id": 596,
                    "task_category_id": 279,
                    "label": null,
                    "smarttags": null,
                    "state": 1,
                    "profile_type": 4,
                    "check_type": 4,
                    "min_value": null,
                    "max_value": null,
                    "rrule": null,
                    "created_at": "2022-01-09T21:55:38.000000Z",
                    "updated_at": "2022-01-09T21:55:38.000000Z",
                    "task_category": {
                        "id": 279,
                        "parent_id": 278,
                        "name": "Valeur index",
                        "instructions": null,
                        "created_at": "2022-01-09T21:55:38.000000Z",
                        "updated_at": "2022-01-09T21:55:38.000000Z"
                    }
                }
            },
            {
                "id": 8066,
                "user_id": 2,
                "tour_data_id": 31,
                "task_id": 597,
                "check_value": null,
                "numeric_value": null,
                "comment": null,
                "has_error": 0,
                "created_at": null,
                "updated_at": null,
                "task": {
                    "id": 597,
                    "task_category_id": 279,
                    "label": null,
                    "smarttags": null,
                    "state": 1,
                    "profile_type": 4,
                    "check_type": 5,
                    "min_value": null,
                    "max_value": null,
                    "rrule": null,
                    "created_at": "2022-01-09T21:55:38.000000Z",
                    "updated_at": "2022-01-09T21:55:38.000000Z",
                    "task_category": {
                        "id": 279,
                        "parent_id": 278,
                        "name": "Valeur index",
                        "instructions": null,
                        "created_at": "2022-01-09T21:55:38.000000Z",
                        "updated_at": "2022-01-09T21:55:38.000000Z"
                    }
                }
            },
            {
                "id": 8067,
                "user_id": 2,
                "tour_data_id": 31,
                "task_id": 598,
                "check_value": 1,
                "numeric_value": null,
                "comment": null,
                "has_error": 0,
                "created_at": null,
                "updated_at": "2022-02-09T07:37:22.000000Z",
                "task": null
            },
            {
                "id": 8068,
                "user_id": 2,
                "tour_data_id": 31,
                "task_id": 935,
                "check_value": null,
                "numeric_value": null,
                "comment": null,
                "has_error": 0,
                "created_at": null,
                "updated_at": null,
                "task": null
            },
            {
                "id": 8069,
                "user_id": 2,
                "tour_data_id": 31,
                "task_id": 936,
                "check_value": null,
                "numeric_value": null,
                "comment": null,
                "has_error": 0,
                "created_at": null,
                "updated_at": null,
                "task": null
            },
            {
                "id": 8070,
                "user_id": 2,
                "tour_data_id": 31,
                "task_id": 937,
                "check_value": null,
                "numeric_value": null,
                "comment": null,
                "has_error": 0,
                "created_at": null,
                "updated_at": null,
                "task": null
            },
            {
                "id": 8071,
                "user_id": 2,
                "tour_data_id": 31,
                "task_id": 599,
                "check_value": null,
                "numeric_value": null,
                "comment": null,
                "has_error": 0,
                "created_at": null,
                "updated_at": null,
                "task": null
            },
            {
                "id": 8072,
                "user_id": 2,
                "tour_data_id": 31,
                "task_id": 622,
                "check_value": 1,
                "numeric_value": null,
                "comment": null,
                "has_error": 0,
                "created_at": null,
                "updated_at": "2022-02-09T07:37:33.000000Z",
                "task": {
                    "id": 622,
                    "task_category_id": 294,
                    "label": null,
                    "smarttags": null,
                    "state": 1,
                    "profile_type": 4,
                    "check_type": 1,
                    "min_value": null,
                    "max_value": null,
                    "rrule": null,
                    "created_at": "2022-01-09T21:55:38.000000Z",
                    "updated_at": "2022-01-09T21:55:38.000000Z",
                    "task_category": {
                        "id": 294,
                        "parent_id": 293,
                        "name": "Départ de floc",
                        "instructions": null,
                        "created_at": "2022-01-09T21:55:38.000000Z",
                        "updated_at": "2022-01-09T21:55:38.000000Z"
                    }
                }
            },
            {
                "id": 8073,
                "user_id": 2,
                "tour_data_id": 31,
                "task_id": 623,
                "check_value": null,
                "numeric_value": null,
                "comment": null,
                "has_error": 0,
                "created_at": null,
                "updated_at": null,
                "task": {
                    "id": 623,
                    "task_category_id": 294,
                    "label": null,
                    "smarttags": null,
                    "state": 1,
                    "profile_type": 4,
                    "check_type": 5,
                    "min_value": null,
                    "max_value": null,
                    "rrule": null,
                    "created_at": "2022-01-09T21:55:38.000000Z",
                    "updated_at": "2022-01-09T21:55:38.000000Z",
                    "task_category": {
                        "id": 294,
                        "parent_id": 293,
                        "name": "Départ de floc",
                        "instructions": null,
                        "created_at": "2022-01-09T21:55:38.000000Z",
                        "updated_at": "2022-01-09T21:55:38.000000Z"
                    }
                }
            },
            {
                "id": 8074,
                "user_id": 2,
                "tour_data_id": 31,
                "task_id": 624,
                "check_value": 1,
                "numeric_value": null,
                "comment": null,
                "has_error": 0,
                "created_at": null,
                "updated_at": "2022-02-09T07:37:33.000000Z",
                "task": {
                    "id": 624,
                    "task_category_id": 295,
                    "label": null,
                    "smarttags": null,
                    "state": 1,
                    "profile_type": 4,
                    "check_type": 1,
                    "min_value": null,
                    "max_value": null,
                    "rrule": null,
                    "created_at": "2022-01-09T21:55:38.000000Z",
                    "updated_at": "2022-01-09T21:55:38.000000Z",
                    "task_category": {
                        "id": 295,
                        "parent_id": 293,
                        "name": "Aspiration boues",
                        "instructions": null,
                        "created_at": "2022-01-09T21:55:38.000000Z",
                        "updated_at": "2022-01-09T21:55:38.000000Z"
                    }
                }
            },
            {
                "id": 8075,
                "user_id": 2,
                "tour_data_id": 31,
                "task_id": 625,
                "check_value": null,
                "numeric_value": null,
                "comment": null,
                "has_error": 0,
                "created_at": null,
                "updated_at": null,
                "task": {
                    "id": 625,
                    "task_category_id": 295,
                    "label": null,
                    "smarttags": null,
                    "state": 1,
                    "profile_type": 4,
                    "check_type": 5,
                    "min_value": null,
                    "max_value": null,
                    "rrule": null,
                    "created_at": "2022-01-09T21:55:38.000000Z",
                    "updated_at": "2022-01-09T21:55:38.000000Z",
                    "task_category": {
                        "id": 295,
                        "parent_id": 293,
                        "name": "Aspiration boues",
                        "instructions": null,
                        "created_at": "2022-01-09T21:55:38.000000Z",
                        "updated_at": "2022-01-09T21:55:38.000000Z"
                    }
                }
            },
            {
                "id": 8076,
                "user_id": 2,
                "tour_data_id": 31,
                "task_id": 626,
                "check_value": 1,
                "numeric_value": null,
                "comment": null,
                "has_error": 0,
                "created_at": null,
                "updated_at": "2022-02-09T07:37:33.000000Z",
                "task": {
                    "id": 626,
                    "task_category_id": 296,
                    "label": null,
                    "smarttags": null,
                    "state": 1,
                    "profile_type": 4,
                    "check_type": 1,
                    "min_value": null,
                    "max_value": null,
                    "rrule": null,
                    "created_at": "2022-01-09T21:55:38.000000Z",
                    "updated_at": "2022-01-09T21:55:38.000000Z",
                    "task_category": {
                        "id": 296,
                        "parent_id": 293,
                        "name": "Propreté des goulottes",
                        "instructions": null,
                        "created_at": "2022-01-09T21:55:38.000000Z",
                        "updated_at": "2022-01-09T21:55:38.000000Z"
                    }
                }
            },
            {
                "id": 8077,
                "user_id": 2,
                "tour_data_id": 31,
                "task_id": 627,
                "check_value": null,
                "numeric_value": null,
                "comment": null,
                "has_error": 0,
                "created_at": null,
                "updated_at": null,
                "task": {
                    "id": 627,
                    "task_category_id": 296,
                    "label": null,
                    "smarttags": null,
                    "state": 1,
                    "profile_type": 4,
                    "check_type": 5,
                    "min_value": null,
                    "max_value": null,
                    "rrule": null,
                    "created_at": "2022-01-09T21:55:38.000000Z",
                    "updated_at": "2022-01-09T21:55:38.000000Z",
                    "task_category": {
                        "id": 296,
                        "parent_id": 293,
                        "name": "Propreté des goulottes",
                        "instructions": null,
                        "created_at": "2022-01-09T21:55:38.000000Z",
                        "updated_at": "2022-01-09T21:55:38.000000Z"
                    }
                }
            },
            {
                "id": 8078,
                "user_id": 2,
                "tour_data_id": 31,
                "task_id": 630,
                "check_value": 1,
                "numeric_value": null,
                "comment": null,
                "has_error": 0,
                "created_at": null,
                "updated_at": "2022-02-09T07:37:33.000000Z",
                "task": {
                    "id": 630,
                    "task_category_id": 298,
                    "label": null,
                    "smarttags": null,
                    "state": 1,
                    "profile_type": 4,
                    "check_type": 1,
                    "min_value": null,
                    "max_value": null,
                    "rrule": "DTSTART:20230616T000000\nRRULE:FREQ=WEEKLY;INTERVAL=1;BYDAY=MO,WE,FR\n",
                    "created_at": "2022-01-09T21:55:38.000000Z",
                    "updated_at": "2023-06-16T06:10:41.000000Z",
                    "task_category": {
                        "id": 298,
                        "parent_id": 293,
                        "name": "Bol analyseurs",
                        "instructions": null,
                        "created_at": "2022-01-09T21:55:38.000000Z",
                        "updated_at": "2023-06-16T06:10:25.000000Z"
                    }
                }
            },
            {
                "id": 8079,
                "user_id": 2,
                "tour_data_id": 31,
                "task_id": 631,
                "check_value": null,
                "numeric_value": null,
                "comment": null,
                "has_error": 0,
                "created_at": null,
                "updated_at": null,
                "task": {
                    "id": 631,
                    "task_category_id": 298,
                    "label": null,
                    "smarttags": null,
                    "state": 1,
                    "profile_type": 4,
                    "check_type": 5,
                    "min_value": null,
                    "max_value": null,
                    "rrule": "DTSTART:20230616T000000\nRRULE:FREQ=WEEKLY;INTERVAL=1;BYDAY=MO,WE,FR\n",
                    "created_at": "2022-01-09T21:55:38.000000Z",
                    "updated_at": "2023-06-16T06:10:49.000000Z",
                    "task_category": {
                        "id": 298,
                        "parent_id": 293,
                        "name": "Bol analyseurs",
                        "instructions": null,
                        "created_at": "2022-01-09T21:55:38.000000Z",
                        "updated_at": "2023-06-16T06:10:25.000000Z"
                    }
                }
            },
            {
                "id": 8080,
                "user_id": 2,
                "tour_data_id": 31,
                "task_id": 934,
                "check_value": null,
                "numeric_value": null,
                "comment": null,
                "has_error": 0,
                "created_at": null,
                "updated_at": null,
                "task": {
                    "id": 934,
                    "task_category_id": 298,
                    "label": "Nettoyage bol analyseurs",
                    "smarttags": null,
                    "state": 1,
                    "profile_type": 4,
                    "check_type": 2,
                    "min_value": null,
                    "max_value": null,
                    "rrule": "DTSTART:20220120T000000\nRRULE:FREQ=WEEKLY;INTERVAL=1\n",
                    "created_at": "2022-01-20T06:29:25.000000Z",
                    "updated_at": "2023-06-16T06:10:30.000000Z",
                    "task_category": {
                        "id": 298,
                        "parent_id": 293,
                        "name": "Bol analyseurs",
                        "instructions": null,
                        "created_at": "2022-01-09T21:55:38.000000Z",
                        "updated_at": "2023-06-16T06:10:25.000000Z"
                    }
                }
            },
            {
                "id": 8081,
                "user_id": 2,
                "tour_data_id": 31,
                "task_id": 817,
                "check_value": null,
                "numeric_value": null,
                "comment": null,
                "has_error": 0,
                "created_at": null,
                "updated_at": null,
                "task": {
                    "id": 817,
                    "task_category_id": 407,
                    "label": "Relevé hauteur voile de boues",
                    "smarttags": null,
                    "state": 1,
                    "profile_type": 4,
                    "check_type": 2,
                    "min_value": null,
                    "max_value": null,
                    "rrule": "DTSTART:20220412T000000\nRRULE:FREQ=WEEKLY;INTERVAL=1;BYDAY=TU,TH\n",
                    "created_at": "2022-01-10T20:21:44.000000Z",
                    "updated_at": "2022-06-06T12:02:46.000000Z",
                    "task_category": {
                        "id": 407,
                        "parent_id": 293,
                        "name": "Releve hauteur des boues",
                        "instructions": null,
                        "created_at": "2022-01-10T20:20:52.000000Z",
                        "updated_at": "2022-01-10T20:22:15.000000Z"
                    }
                }
            },
            {
                "id": 8082,
                "user_id": 2,
                "tour_data_id": 31,
                "task_id": 818,
                "check_value": 1,
                "numeric_value": null,
                "comment": null,
                "has_error": 0,
                "created_at": null,
                "updated_at": "2022-02-09T07:37:43.000000Z",
                "task": {
                    "id": 818,
                    "task_category_id": 408,
                    "label": "Nettoyage (attention à la DCO)",
                    "smarttags": null,
                    "state": 1,
                    "profile_type": 4,
                    "check_type": 2,
                    "min_value": null,
                    "max_value": null,
                    "rrule": "DTSTART:20220110T000000\nRRULE:FREQ=WEEKLY;INTERVAL=1\n",
                    "created_at": "2022-01-10T20:22:58.000000Z",
                    "updated_at": "2023-06-19T07:34:09.000000Z",
                    "task_category": {
                        "id": 408,
                        "parent_id": 293,
                        "name": "Nettoyage clarificateur",
                        "instructions": null,
                        "created_at": "2022-01-10T20:22:19.000000Z",
                        "updated_at": "2022-01-10T20:22:27.000000Z"
                    }
                }
            },
            {
                "id": 8083,
                "user_id": 2,
                "tour_data_id": 31,
                "task_id": 835,
                "check_value": null,
                "numeric_value": null,
                "comment": null,
                "has_error": 0,
                "created_at": null,
                "updated_at": null,
                "task": {
                    "id": 835,
                    "task_category_id": 416,
                    "label": "Sonde Ph Homog F1 - Etalonnage (étalon 1 et 4)",
                    "smarttags": null,
                    "state": 1,
                    "profile_type": 4,
                    "check_type": 2,
                    "min_value": null,
                    "max_value": null,
                    "rrule": "DTSTART:20220203T000000\nRRULE:FREQ=MONTHLY;INTERVAL=1;BYDAY=TH;BYSETPOS=1\n",
                    "created_at": "2022-01-18T08:52:10.000000Z",
                    "updated_at": "2022-02-11T12:51:11.000000Z",
                    "task_category": {
                        "id": 416,
                        "parent_id": 413,
                        "name": "Homog F1",
                        "instructions": null,
                        "created_at": "2022-01-18T08:47:53.000000Z",
                        "updated_at": "2022-01-18T08:48:48.000000Z"
                    }
                }
            },
            {
                "id": 8084,
                "user_id": 2,
                "tour_data_id": 31,
                "task_id": 836,
                "check_value": null,
                "numeric_value": null,
                "comment": null,
                "has_error": 0,
                "created_at": null,
                "updated_at": null,
                "task": {
                    "id": 836,
                    "task_category_id": 416,
                    "label": "Sonde Ph Homog F1 - Nettoyage",
                    "smarttags": null,
                    "state": 1,
                    "profile_type": 4,
                    "check_type": 2,
                    "min_value": null,
                    "max_value": null,
                    "rrule": "DTSTART:20220224T000000\nRRULE:FREQ=MONTHLY;INTERVAL=1;BYDAY=TH;BYSETPOS=4\n",
                    "created_at": "2022-01-18T08:53:01.000000Z",
                    "updated_at": "2022-02-11T12:52:05.000000Z",
                    "task_category": {
                        "id": 416,
                        "parent_id": 413,
                        "name": "Homog F1",
                        "instructions": null,
                        "created_at": "2022-01-18T08:47:53.000000Z",
                        "updated_at": "2022-01-18T08:48:48.000000Z"
                    }
                }
            },
            {
                "id": 8085,
                "user_id": 2,
                "tour_data_id": 31,
                "task_id": 839,
                "check_value": null,
                "numeric_value": null,
                "comment": null,
                "has_error": 0,
                "created_at": null,
                "updated_at": null,
                "task": {
                    "id": 839,
                    "task_category_id": 416,
                    "label": "Sonde Conductivité Homog F1 - Étalonnage (étalon 2542)",
                    "smarttags": null,
                    "state": 1,
                    "profile_type": 4,
                    "check_type": 2,
                    "min_value": null,
                    "max_value": null,
                    "rrule": "DTSTART:20220203T000000\nRRULE:FREQ=MONTHLY;INTERVAL=1;BYDAY=TH;BYSETPOS=1\n",
                    "created_at": "2022-01-18T08:58:39.000000Z",
                    "updated_at": "2022-02-11T12:51:29.000000Z",
                    "task_category": {
                        "id": 416,
                        "parent_id": 413,
                        "name": "Homog F1",
                        "instructions": null,
                        "created_at": "2022-01-18T08:47:53.000000Z",
                        "updated_at": "2022-01-18T08:48:48.000000Z"
                    }
                }
            },
            {
                "id": 8086,
                "user_id": 2,
                "tour_data_id": 31,
                "task_id": 840,
                "check_value": null,
                "numeric_value": null,
                "comment": null,
                "has_error": 0,
                "created_at": null,
                "updated_at": null,
                "task": {
                    "id": 840,
                    "task_category_id": 416,
                    "label": "Sonde Conductivité Homog F1 - Nettoyage",
                    "smarttags": null,
                    "state": 1,
                    "profile_type": 4,
                    "check_type": 2,
                    "min_value": null,
                    "max_value": null,
                    "rrule": "DTSTART:20220224T000000\nRRULE:FREQ=MONTHLY;INTERVAL=1;BYDAY=TH;BYSETPOS=4\n",
                    "created_at": "2022-01-18T08:59:09.000000Z",
                    "updated_at": "2022-02-11T12:51:48.000000Z",
                    "task_category": {
                        "id": 416,
                        "parent_id": 413,
                        "name": "Homog F1",
                        "instructions": null,
                        "created_at": "2022-01-18T08:47:53.000000Z",
                        "updated_at": "2022-01-18T08:48:48.000000Z"
                    }
                }
            },
            {
                "id": 8087,
                "user_id": 2,
                "tour_data_id": 31,
                "task_id": 841,
                "check_value": null,
                "numeric_value": null,
                "comment": null,
                "has_error": 0,
                "created_at": null,
                "updated_at": null,
                "task": {
                    "id": 841,
                    "task_category_id": 418,
                    "label": "Sonde Ph Agit F1 - Étalonnage (étalon 7 et 12)",
                    "smarttags": null,
                    "state": 1,
                    "profile_type": 4,
                    "check_type": 2,
                    "min_value": null,
                    "max_value": null,
                    "rrule": "DTSTART:20220127T000000\nRRULE:FREQ=WEEKLY;INTERVAL=1;BYDAY=TH\n",
                    "created_at": "2022-01-18T09:17:52.000000Z",
                    "updated_at": "2022-02-11T12:54:01.000000Z",
                    "task_category": {
                        "id": 418,
                        "parent_id": 413,
                        "name": "Agit F1",
                        "instructions": null,
                        "created_at": "2022-01-18T09:11:06.000000Z",
                        "updated_at": "2022-01-18T09:11:10.000000Z"
                    }
                }
            },
            {
                "id": 8088,
                "user_id": 2,
                "tour_data_id": 31,
                "task_id": 842,
                "check_value": null,
                "numeric_value": null,
                "comment": null,
                "has_error": 0,
                "created_at": null,
                "updated_at": null,
                "task": {
                    "id": 842,
                    "task_category_id": 418,
                    "label": "Sonde Ph Agit F1 - Nettoyage",
                    "smarttags": null,
                    "state": 1,
                    "profile_type": 4,
                    "check_type": 2,
                    "min_value": null,
                    "max_value": null,
                    "rrule": "DTSTART:20220124T000000\nRRULE:FREQ=WEEKLY;INTERVAL=1\n",
                    "created_at": "2022-01-18T09:18:10.000000Z",
                    "updated_at": "2022-02-11T12:53:45.000000Z",
                    "task_category": {
                        "id": 418,
                        "parent_id": 413,
                        "name": "Agit F1",
                        "instructions": null,
                        "created_at": "2022-01-18T09:11:06.000000Z",
                        "updated_at": "2022-01-18T09:11:10.000000Z"
                    }
                }
            },
            {
                "id": 8089,
                "user_id": 2,
                "tour_data_id": 31,
                "task_id": 843,
                "check_value": null,
                "numeric_value": null,
                "comment": null,
                "has_error": 0,
                "created_at": null,
                "updated_at": null,
                "task": {
                    "id": 843,
                    "task_category_id": 419,
                    "label": "Sonde Conductivité Homog F2 - Étalonnage (2542)",
                    "smarttags": null,
                    "state": 1,
                    "profile_type": 4,
                    "check_type": 2,
                    "min_value": null,
                    "max_value": null,
                    "rrule": "DTSTART:20220210T000000\nRRULE:FREQ=MONTHLY;INTERVAL=1;BYDAY=TH;BYSETPOS=2\n",
                    "created_at": "2022-01-18T09:20:15.000000Z",
                    "updated_at": "2022-02-11T12:55:26.000000Z",
                    "task_category": {
                        "id": 419,
                        "parent_id": 413,
                        "name": "Homog F2",
                        "instructions": null,
                        "created_at": "2022-01-18T09:11:15.000000Z",
                        "updated_at": "2022-01-18T09:11:19.000000Z"
                    }
                }
            },
            {
                "id": 8090,
                "user_id": 2,
                "tour_data_id": 31,
                "task_id": 845,
                "check_value": null,
                "numeric_value": null,
                "comment": null,
                "has_error": 0,
                "created_at": null,
                "updated_at": null,
                "task": {
                    "id": 845,
                    "task_category_id": 419,
                    "label": "Sonde Conductivité Homog F2 - Nettoyage",
                    "smarttags": null,
                    "state": 1,
                    "profile_type": 4,
                    "check_type": 2,
                    "min_value": null,
                    "max_value": null,
                    "rrule": "DTSTART:20220127T000000\nRRULE:FREQ=MONTHLY;INTERVAL=1;BYDAY=TH;BYSETPOS=4\n",
                    "created_at": "2022-01-18T09:22:28.000000Z",
                    "updated_at": "2022-02-11T12:54:53.000000Z",
                    "task_category": {
                        "id": 419,
                        "parent_id": 413,
                        "name": "Homog F2",
                        "instructions": null,
                        "created_at": "2022-01-18T09:11:15.000000Z",
                        "updated_at": "2022-01-18T09:11:19.000000Z"
                    }
                }
            },
            {
                "id": 8091,
                "user_id": 2,
                "tour_data_id": 31,
                "task_id": 844,
                "check_value": null,
                "numeric_value": null,
                "comment": null,
                "has_error": 0,
                "created_at": null,
                "updated_at": null,
                "task": {
                    "id": 844,
                    "task_category_id": 419,
                    "label": "Sonde Ph Homog F2 - Étalonnage (étalon 1 et 4)",
                    "smarttags": null,
                    "state": 1,
                    "profile_type": 4,
                    "check_type": 2,
                    "min_value": null,
                    "max_value": null,
                    "rrule": "DTSTART:20220210T000000\nRRULE:FREQ=MONTHLY;INTERVAL=1;BYDAY=TH;BYSETPOS=2\n",
                    "created_at": "2022-01-18T09:21:01.000000Z",
                    "updated_at": "2022-02-11T12:55:42.000000Z",
                    "task_category": {
                        "id": 419,
                        "parent_id": 413,
                        "name": "Homog F2",
                        "instructions": null,
                        "created_at": "2022-01-18T09:11:15.000000Z",
                        "updated_at": "2022-01-18T09:11:19.000000Z"
                    }
                }
            },
            {
                "id": 8092,
                "user_id": 2,
                "tour_data_id": 31,
                "task_id": 846,
                "check_value": null,
                "numeric_value": null,
                "comment": null,
                "has_error": 0,
                "created_at": null,
                "updated_at": null,
                "task": {
                    "id": 846,
                    "task_category_id": 419,
                    "label": "Sonde Ph Homog F2 - Nettoyage",
                    "smarttags": null,
                    "state": 1,
                    "profile_type": 4,
                    "check_type": 2,
                    "min_value": null,
                    "max_value": null,
                    "rrule": "DTSTART:20220127T000000\nRRULE:FREQ=MONTHLY;INTERVAL=1;BYDAY=TH;BYSETPOS=4\n",
                    "created_at": "2022-01-18T09:23:50.000000Z",
                    "updated_at": "2022-02-11T12:55:01.000000Z",
                    "task_category": {
                        "id": 419,
                        "parent_id": 413,
                        "name": "Homog F2",
                        "instructions": null,
                        "created_at": "2022-01-18T09:11:15.000000Z",
                        "updated_at": "2022-01-18T09:11:19.000000Z"
                    }
                }
            },
            {
                "id": 8093,
                "user_id": 2,
                "tour_data_id": 31,
                "task_id": 847,
                "check_value": null,
                "numeric_value": null,
                "comment": null,
                "has_error": 0,
                "created_at": null,
                "updated_at": null,
                "task": {
                    "id": 847,
                    "task_category_id": 420,
                    "label": "Sonde Ph Flash F2 - Étalonnage (étalon 4 et 7)",
                    "smarttags": null,
                    "state": 1,
                    "profile_type": 4,
                    "check_type": 2,
                    "min_value": null,
                    "max_value": null,
                    "rrule": "DTSTART:20220118T000000\nRRULE:FREQ=WEEKLY;INTERVAL=1\n",
                    "created_at": "2022-01-18T09:25:01.000000Z",
                    "updated_at": "2022-02-11T12:56:13.000000Z",
                    "task_category": {
                        "id": 420,
                        "parent_id": 413,
                        "name": "Flash F2",
                        "instructions": null,
                        "created_at": "2022-01-18T09:11:22.000000Z",
                        "updated_at": "2022-01-18T09:11:24.000000Z"
                    }
                }
            },
            {
                "id": 8094,
                "user_id": 2,
                "tour_data_id": 31,
                "task_id": 848,
                "check_value": null,
                "numeric_value": null,
                "comment": null,
                "has_error": 0,
                "created_at": null,
                "updated_at": null,
                "task": {
                    "id": 848,
                    "task_category_id": 420,
                    "label": "Sonde Ph Flash F2 - Nettoyage",
                    "smarttags": null,
                    "state": 1,
                    "profile_type": 4,
                    "check_type": 2,
                    "min_value": null,
                    "max_value": null,
                    "rrule": "DTSTART:20220118T000000\nRRULE:FREQ=WEEKLY;INTERVAL=1;BYDAY=FR\n",
                    "created_at": "2022-01-18T09:25:13.000000Z",
                    "updated_at": "2022-02-11T12:56:22.000000Z",
                    "task_category": {
                        "id": 420,
                        "parent_id": 413,
                        "name": "Flash F2",
                        "instructions": null,
                        "created_at": "2022-01-18T09:11:22.000000Z",
                        "updated_at": "2022-01-18T09:11:24.000000Z"
                    }
                }
            },
            {
                "id": 8095,
                "user_id": 2,
                "tour_data_id": 31,
                "task_id": 849,
                "check_value": null,
                "numeric_value": null,
                "comment": null,
                "has_error": 0,
                "created_at": null,
                "updated_at": null,
                "task": {
                    "id": 849,
                    "task_category_id": 421,
                    "label": "Sonde Ph Coag F2 - Étalonnage (étalon 4 et 10)",
                    "smarttags": null,
                    "state": 1,
                    "profile_type": 4,
                    "check_type": 2,
                    "min_value": null,
                    "max_value": null,
                    "rrule": "DTSTART:20220118T000000\nRRULE:FREQ=WEEKLY;INTERVAL=1\n",
                    "created_at": "2022-01-18T09:28:12.000000Z",
                    "updated_at": "2022-02-11T12:56:46.000000Z",
                    "task_category": {
                        "id": 421,
                        "parent_id": 413,
                        "name": "Coag F2",
                        "instructions": null,
                        "created_at": "2022-01-18T09:11:30.000000Z",
                        "updated_at": "2022-01-18T09:11:32.000000Z"
                    }
                }
            },
            {
                "id": 8096,
                "user_id": 2,
                "tour_data_id": 31,
                "task_id": 850,
                "check_value": null,
                "numeric_value": null,
                "comment": null,
                "has_error": 0,
                "created_at": null,
                "updated_at": null,
                "task": {
                    "id": 850,
                    "task_category_id": 421,
                    "label": "Sonde Ph Coag F2 - Nettoyage",
                    "smarttags": null,
                    "state": 1,
                    "profile_type": 4,
                    "check_type": 2,
                    "min_value": null,
                    "max_value": null,
                    "rrule": "DTSTART:20220118T000000\nRRULE:FREQ=WEEKLY;INTERVAL=1;BYDAY=FR\n",
                    "created_at": "2022-01-18T09:28:27.000000Z",
                    "updated_at": "2022-02-11T12:57:02.000000Z",
                    "task_category": {
                        "id": 421,
                        "parent_id": 413,
                        "name": "Coag F2",
                        "instructions": null,
                        "created_at": "2022-01-18T09:11:30.000000Z",
                        "updated_at": "2022-01-18T09:11:32.000000Z"
                    }
                }
            },
            {
                "id": 8097,
                "user_id": 2,
                "tour_data_id": 31,
                "task_id": 851,
                "check_value": null,
                "numeric_value": null,
                "comment": null,
                "has_error": 0,
                "created_at": null,
                "updated_at": null,
                "task": {
                    "id": 851,
                    "task_category_id": 422,
                    "label": "Sonde Conductivité Floc F2 - Nettoyage",
                    "smarttags": null,
                    "state": 1,
                    "profile_type": 4,
                    "check_type": 2,
                    "min_value": null,
                    "max_value": null,
                    "rrule": "DTSTART:20220118T000000\nRRULE:FREQ=WEEKLY;INTERVAL=1\n",
                    "created_at": "2022-01-18T09:29:17.000000Z",
                    "updated_at": "2022-02-11T12:57:34.000000Z",
                    "task_category": {
                        "id": 422,
                        "parent_id": 413,
                        "name": "Floc F2",
                        "instructions": null,
                        "created_at": "2022-01-18T09:11:39.000000Z",
                        "updated_at": "2022-01-18T09:11:41.000000Z"
                    }
                }
            },
            {
                "id": 8098,
                "user_id": 2,
                "tour_data_id": 31,
                "task_id": 852,
                "check_value": null,
                "numeric_value": null,
                "comment": null,
                "has_error": 0,
                "created_at": null,
                "updated_at": null,
                "task": {
                    "id": 852,
                    "task_category_id": 422,
                    "label": "Sonde pH Floc F2 - Étalonnage (étalon 4 et 10)",
                    "smarttags": null,
                    "state": 1,
                    "profile_type": 4,
                    "check_type": 2,
                    "min_value": null,
                    "max_value": null,
                    "rrule": "DTSTART:20220118T000000\nRRULE:FREQ=WEEKLY;INTERVAL=1\n",
                    "created_at": "2022-01-18T09:30:04.000000Z",
                    "updated_at": "2022-02-11T12:58:05.000000Z",
                    "task_category": {
                        "id": 422,
                        "parent_id": 413,
                        "name": "Floc F2",
                        "instructions": null,
                        "created_at": "2022-01-18T09:11:39.000000Z",
                        "updated_at": "2022-01-18T09:11:41.000000Z"
                    }
                }
            },
            {
                "id": 8099,
                "user_id": 2,
                "tour_data_id": 31,
                "task_id": 853,
                "check_value": null,
                "numeric_value": null,
                "comment": null,
                "has_error": 0,
                "created_at": null,
                "updated_at": null,
                "task": {
                    "id": 853,
                    "task_category_id": 422,
                    "label": "Sonde Ph Floc F2 - Nettoyage",
                    "smarttags": null,
                    "state": 1,
                    "profile_type": 4,
                    "check_type": 2,
                    "min_value": null,
                    "max_value": null,
                    "rrule": "DTSTART:20220118T000000\nRRULE:FREQ=WEEKLY;INTERVAL=1;BYDAY=FR\n",
                    "created_at": "2022-01-18T09:30:32.000000Z",
                    "updated_at": "2022-02-11T12:58:13.000000Z",
                    "task_category": {
                        "id": 422,
                        "parent_id": 413,
                        "name": "Floc F2",
                        "instructions": null,
                        "created_at": "2022-01-18T09:11:39.000000Z",
                        "updated_at": "2022-01-18T09:11:41.000000Z"
                    }
                }
            },
            {
                "id": 8100,
                "user_id": 2,
                "tour_data_id": 31,
                "task_id": 914,
                "check_value": null,
                "numeric_value": null,
                "comment": null,
                "has_error": 0,
                "created_at": null,
                "updated_at": null,
                "task": {
                    "id": 914,
                    "task_category_id": 422,
                    "label": "Sonde Conductivité Floc F2 - Etalonnage (étalon 2542)",
                    "smarttags": null,
                    "state": 1,
                    "profile_type": 4,
                    "check_type": 2,
                    "min_value": null,
                    "max_value": null,
                    "rrule": "DTSTART:20220118T000000\nRRULE:FREQ=MONTHLY;INTERVAL=1;BYDAY=TU;BYSETPOS=3\n",
                    "created_at": "2022-01-19T09:35:08.000000Z",
                    "updated_at": "2022-02-11T12:58:18.000000Z",
                    "task_category": {
                        "id": 422,
                        "parent_id": 413,
                        "name": "Floc F2",
                        "instructions": null,
                        "created_at": "2022-01-18T09:11:39.000000Z",
                        "updated_at": "2022-01-18T09:11:41.000000Z"
                    }
                }
            },
            {
                "id": 8101,
                "user_id": 2,
                "tour_data_id": 31,
                "task_id": 854,
                "check_value": null,
                "numeric_value": null,
                "comment": null,
                "has_error": 0,
                "created_at": null,
                "updated_at": null,
                "task": {
                    "id": 854,
                    "task_category_id": 423,
                    "label": "Sonde Ph Homog F3 - Étalonnage (étalon 7 et 10)",
                    "smarttags": null,
                    "state": 1,
                    "profile_type": 4,
                    "check_type": 2,
                    "min_value": null,
                    "max_value": null,
                    "rrule": "DTSTART:20220217T000000\nRRULE:FREQ=MONTHLY;INTERVAL=1;BYDAY=TH;BYSETPOS=3\n",
                    "created_at": "2022-01-18T09:31:26.000000Z",
                    "updated_at": "2022-02-11T12:59:58.000000Z",
                    "task_category": {
                        "id": 423,
                        "parent_id": 413,
                        "name": "Homog F3",
                        "instructions": null,
                        "created_at": "2022-01-18T09:11:48.000000Z",
                        "updated_at": "2022-01-18T09:11:50.000000Z"
                    }
                }
            },
            {
                "id": 8102,
                "user_id": 2,
                "tour_data_id": 31,
                "task_id": 855,
                "check_value": null,
                "numeric_value": null,
                "comment": null,
                "has_error": 0,
                "created_at": null,
                "updated_at": null,
                "task": {
                    "id": 855,
                    "task_category_id": 423,
                    "label": "Sonde Ph Homog F3 - Nettoyage",
                    "smarttags": null,
                    "state": 1,
                    "profile_type": 4,
                    "check_type": 2,
                    "min_value": null,
                    "max_value": null,
                    "rrule": "DTSTART:20220203T000000\nRRULE:FREQ=MONTHLY;INTERVAL=1;BYDAY=TH;BYSETPOS=1\n",
                    "created_at": "2022-01-18T09:31:53.000000Z",
                    "updated_at": "2022-02-11T13:00:35.000000Z",
                    "task_category": {
                        "id": 423,
                        "parent_id": 413,
                        "name": "Homog F3",
                        "instructions": null,
                        "created_at": "2022-01-18T09:11:48.000000Z",
                        "updated_at": "2022-01-18T09:11:50.000000Z"
                    }
                }
            },
            {
                "id": 8103,
                "user_id": 2,
                "tour_data_id": 31,
                "task_id": 860,
                "check_value": null,
                "numeric_value": null,
                "comment": null,
                "has_error": 0,
                "created_at": null,
                "updated_at": null,
                "task": {
                    "id": 860,
                    "task_category_id": 423,
                    "label": "Sonde turbidité Homog F3 - Nettoyage",
                    "smarttags": null,
                    "state": 1,
                    "profile_type": 4,
                    "check_type": 2,
                    "min_value": null,
                    "max_value": null,
                    "rrule": "DTSTART:20220118T000000\nRRULE:FREQ=WEEKLY;INTERVAL=1;BYDAY=MO,WE,FR\n",
                    "created_at": "2022-01-18T09:40:18.000000Z",
                    "updated_at": "2022-02-11T12:58:53.000000Z",
                    "task_category": {
                        "id": 423,
                        "parent_id": 413,
                        "name": "Homog F3",
                        "instructions": null,
                        "created_at": "2022-01-18T09:11:48.000000Z",
                        "updated_at": "2022-01-18T09:11:50.000000Z"
                    }
                }
            },
            {
                "id": 8104,
                "user_id": 2,
                "tour_data_id": 31,
                "task_id": 858,
                "check_value": null,
                "numeric_value": null,
                "comment": null,
                "has_error": 0,
                "created_at": null,
                "updated_at": null,
                "task": {
                    "id": 858,
                    "task_category_id": 424,
                    "label": "Sonde Ph Agit F3 - Étalonnage (étalon 7 et 10)",
                    "smarttags": null,
                    "state": 1,
                    "profile_type": 4,
                    "check_type": 2,
                    "min_value": null,
                    "max_value": null,
                    "rrule": "DTSTART:20220207T000000\nRRULE:FREQ=MONTHLY;INTERVAL=1;BYDAY=MO;BYSETPOS=1\n",
                    "created_at": "2022-01-18T09:39:06.000000Z",
                    "updated_at": "2022-02-11T13:01:30.000000Z",
                    "task_category": {
                        "id": 424,
                        "parent_id": 413,
                        "name": "Agit F3",
                        "instructions": null,
                        "created_at": "2022-01-18T09:11:57.000000Z",
                        "updated_at": "2022-01-18T09:12:00.000000Z"
                    }
                }
            },
            {
                "id": 8105,
                "user_id": 2,
                "tour_data_id": 31,
                "task_id": 859,
                "check_value": null,
                "numeric_value": null,
                "comment": null,
                "has_error": 0,
                "created_at": null,
                "updated_at": null,
                "task": {
                    "id": 859,
                    "task_category_id": 424,
                    "label": "Sonde Ph Agit F3 - Nettoyage",
                    "smarttags": null,
                    "state": 1,
                    "profile_type": 4,
                    "check_type": 2,
                    "min_value": null,
                    "max_value": null,
                    "rrule": "DTSTART:20220117T000000\nRRULE:FREQ=WEEKLY;INTERVAL=1;BYDAY=MO\n",
                    "created_at": "2022-01-18T09:39:27.000000Z",
                    "updated_at": "2022-02-11T13:01:55.000000Z",
                    "task_category": {
                        "id": 424,
                        "parent_id": 413,
                        "name": "Agit F3",
                        "instructions": null,
                        "created_at": "2022-01-18T09:11:57.000000Z",
                        "updated_at": "2022-01-18T09:12:00.000000Z"
                    }
                }
            },
            {
                "id": 8106,
                "user_id": 2,
                "tour_data_id": 31,
                "task_id": 861,
                "check_value": null,
                "numeric_value": null,
                "comment": null,
                "has_error": 0,
                "created_at": null,
                "updated_at": null,
                "task": {
                    "id": 861,
                    "task_category_id": 425,
                    "label": "Sonde turbidité EE - Nettoyage",
                    "smarttags": null,
                    "state": 1,
                    "profile_type": 4,
                    "check_type": 2,
                    "min_value": null,
                    "max_value": null,
                    "rrule": "DTSTART:20220118T000000\nRRULE:FREQ=WEEKLY;INTERVAL=1;BYDAY=MO,WE,FR\n",
                    "created_at": "2022-01-18T09:40:56.000000Z",
                    "updated_at": "2022-02-11T13:02:34.000000Z",
                    "task_category": {
                        "id": 425,
                        "parent_id": 413,
                        "name": "EE",
                        "instructions": null,
                        "created_at": "2022-01-18T09:12:20.000000Z",
                        "updated_at": "2022-01-18T09:12:22.000000Z"
                    }
                }
            },
            {
                "id": 8107,
                "user_id": 2,
                "tour_data_id": 31,
                "task_id": 863,
                "check_value": null,
                "numeric_value": null,
                "comment": null,
                "has_error": 0,
                "created_at": null,
                "updated_at": null,
                "task": {
                    "id": 863,
                    "task_category_id": 427,
                    "label": "Sonde Ph Homog F4 - Nettoyage",
                    "smarttags": null,
                    "state": 1,
                    "profile_type": 4,
                    "check_type": 2,
                    "min_value": null,
                    "max_value": null,
                    "rrule": "DTSTART:20220210T000000\nRRULE:FREQ=MONTHLY;INTERVAL=1;BYDAY=TH;BYSETPOS=2\n",
                    "created_at": "2022-01-18T09:42:14.000000Z",
                    "updated_at": "2022-02-11T13:03:05.000000Z",
                    "task_category": {
                        "id": 427,
                        "parent_id": 413,
                        "name": "Homog F4",
                        "instructions": null,
                        "created_at": "2022-01-18T09:12:37.000000Z",
                        "updated_at": "2022-01-18T09:12:39.000000Z"
                    }
                }
            },
            {
                "id": 8108,
                "user_id": 2,
                "tour_data_id": 31,
                "task_id": 864,
                "check_value": null,
                "numeric_value": null,
                "comment": null,
                "has_error": 0,
                "created_at": null,
                "updated_at": null,
                "task": {
                    "id": 864,
                    "task_category_id": 427,
                    "label": "Sonde Ph Homog F4 - Étalonnage (étalon 7 et 10)",
                    "smarttags": null,
                    "state": 1,
                    "profile_type": 4,
                    "check_type": 2,
                    "min_value": null,
                    "max_value": null,
                    "rrule": "DTSTART:20220224T000000\nRRULE:FREQ=MONTHLY;INTERVAL=1;BYDAY=TH;BYSETPOS=4\n",
                    "created_at": "2022-01-18T09:42:32.000000Z",
                    "updated_at": "2022-02-11T13:03:53.000000Z",
                    "task_category": {
                        "id": 427,
                        "parent_id": 413,
                        "name": "Homog F4",
                        "instructions": null,
                        "created_at": "2022-01-18T09:12:37.000000Z",
                        "updated_at": "2022-01-18T09:12:39.000000Z"
                    }
                }
            },
            {
                "id": 8109,
                "user_id": 2,
                "tour_data_id": 31,
                "task_id": 865,
                "check_value": null,
                "numeric_value": null,
                "comment": null,
                "has_error": 0,
                "created_at": null,
                "updated_at": null,
                "task": {
                    "id": 865,
                    "task_category_id": 427,
                    "label": "Sonde conductivité homog F4 - Nettoyage",
                    "smarttags": null,
                    "state": 1,
                    "profile_type": 4,
                    "check_type": 2,
                    "min_value": null,
                    "max_value": null,
                    "rrule": "DTSTART:20220210T000000\nRRULE:FREQ=MONTHLY;INTERVAL=1;BYDAY=TH;BYSETPOS=2\n",
                    "created_at": "2022-01-18T09:44:24.000000Z",
                    "updated_at": "2022-02-11T13:03:15.000000Z",
                    "task_category": {
                        "id": 427,
                        "parent_id": 413,
                        "name": "Homog F4",
                        "instructions": null,
                        "created_at": "2022-01-18T09:12:37.000000Z",
                        "updated_at": "2022-01-18T09:12:39.000000Z"
                    }
                }
            },
            {
                "id": 8110,
                "user_id": 2,
                "tour_data_id": 31,
                "task_id": 866,
                "check_value": null,
                "numeric_value": null,
                "comment": null,
                "has_error": 0,
                "created_at": null,
                "updated_at": null,
                "task": {
                    "id": 866,
                    "task_category_id": 427,
                    "label": "Sonde conductivité homog F4 - Étalonnage (étalon 2542)",
                    "smarttags": null,
                    "state": 1,
                    "profile_type": 4,
                    "check_type": 2,
                    "min_value": null,
                    "max_value": null,
                    "rrule": "DTSTART:20220224T000000\nRRULE:FREQ=MONTHLY;INTERVAL=1;BYDAY=TH;BYSETPOS=4\n",
                    "created_at": "2022-01-18T09:44:26.000000Z",
                    "updated_at": "2022-02-11T13:04:03.000000Z",
                    "task_category": {
                        "id": 427,
                        "parent_id": 413,
                        "name": "Homog F4",
                        "instructions": null,
                        "created_at": "2022-01-18T09:12:37.000000Z",
                        "updated_at": "2022-01-18T09:12:39.000000Z"
                    }
                }
            },
            {
                "id": 8111,
                "user_id": 2,
                "tour_data_id": 31,
                "task_id": 867,
                "check_value": null,
                "numeric_value": null,
                "comment": null,
                "has_error": 0,
                "created_at": null,
                "updated_at": null,
                "task": {
                    "id": 867,
                    "task_category_id": 429,
                    "label": "Sonde Ph BA NH4.2 - Nettoyage",
                    "smarttags": null,
                    "state": 1,
                    "profile_type": 4,
                    "check_type": 2,
                    "min_value": null,
                    "max_value": null,
                    "rrule": "DTSTART:20220126T000000\nRRULE:FREQ=MONTHLY;INTERVAL=1;BYDAY=WE;BYSETPOS=4\n",
                    "created_at": "2022-01-18T10:06:10.000000Z",
                    "updated_at": "2022-02-11T13:04:44.000000Z",
                    "task_category": {
                        "id": 429,
                        "parent_id": 414,
                        "name": "Bassin d'Aération NH4.2",
                        "instructions": null,
                        "created_at": "2022-01-18T09:14:19.000000Z",
                        "updated_at": "2022-01-19T09:16:50.000000Z"
                    }
                }
            },
            {
                "id": 8112,
                "user_id": 2,
                "tour_data_id": 31,
                "task_id": 870,
                "check_value": null,
                "numeric_value": null,
                "comment": null,
                "has_error": 0,
                "created_at": null,
                "updated_at": null,
                "task": {
                    "id": 870,
                    "task_category_id": 429,
                    "label": "Sonde Ph BA NH4.2 - Étalonnage (étalon 7 et 10)",
                    "smarttags": null,
                    "state": 1,
                    "profile_type": 4,
                    "check_type": 2,
                    "min_value": null,
                    "max_value": null,
                    "rrule": "DTSTART:20220209T000000\nRRULE:FREQ=MONTHLY;INTERVAL=1;BYDAY=WE;BYSETPOS=2\n",
                    "created_at": "2022-01-18T10:09:17.000000Z",
                    "updated_at": "2022-02-11T13:05:02.000000Z",
                    "task_category": {
                        "id": 429,
                        "parent_id": 414,
                        "name": "Bassin d'Aération NH4.2",
                        "instructions": null,
                        "created_at": "2022-01-18T09:14:19.000000Z",
                        "updated_at": "2022-01-19T09:16:50.000000Z"
                    }
                }
            },
            {
                "id": 8113,
                "user_id": 2,
                "tour_data_id": 31,
                "task_id": 869,
                "check_value": null,
                "numeric_value": null,
                "comment": null,
                "has_error": 0,
                "created_at": null,
                "updated_at": null,
                "task": {
                    "id": 869,
                    "task_category_id": 429,
                    "label": "Sonde Redox BA NH4.2 - Nettoyage",
                    "smarttags": null,
                    "state": 1,
                    "profile_type": 4,
                    "check_type": 2,
                    "min_value": null,
                    "max_value": null,
                    "rrule": "DTSTART:20220126T000000\nRRULE:FREQ=MONTHLY;INTERVAL=1;BYDAY=WE;BYSETPOS=4\n",
                    "created_at": "2022-01-18T10:08:56.000000Z",
                    "updated_at": "2022-02-11T13:06:00.000000Z",
                    "task_category": {
                        "id": 429,
                        "parent_id": 414,
                        "name": "Bassin d'Aération NH4.2",
                        "instructions": null,
                        "created_at": "2022-01-18T09:14:19.000000Z",
                        "updated_at": "2022-01-19T09:16:50.000000Z"
                    }
                }
            },
            {
                "id": 8114,
                "user_id": 2,
                "tour_data_id": 31,
                "task_id": 868,
                "check_value": null,
                "numeric_value": null,
                "comment": null,
                "has_error": 0,
                "created_at": null,
                "updated_at": null,
                "task": {
                    "id": 868,
                    "task_category_id": 429,
                    "label": "Sonde Redox BA NH4.2 - Étalonnage (étalon 200)",
                    "smarttags": null,
                    "state": 1,
                    "profile_type": 4,
                    "check_type": 2,
                    "min_value": null,
                    "max_value": null,
                    "rrule": "DTSTART:20220209T000000\nRRULE:FREQ=MONTHLY;INTERVAL=1;BYDAY=WE;BYSETPOS=2\n",
                    "created_at": "2022-01-18T10:07:41.000000Z",
                    "updated_at": "2022-02-11T13:06:56.000000Z",
                    "task_category": {
                        "id": 429,
                        "parent_id": 414,
                        "name": "Bassin d'Aération NH4.2",
                        "instructions": null,
                        "created_at": "2022-01-18T09:14:19.000000Z",
                        "updated_at": "2022-01-19T09:16:50.000000Z"
                    }
                }
            },
            {
                "id": 8115,
                "user_id": 2,
                "tour_data_id": 31,
                "task_id": 871,
                "check_value": null,
                "numeric_value": null,
                "comment": null,
                "has_error": 0,
                "created_at": null,
                "updated_at": null,
                "task": {
                    "id": 871,
                    "task_category_id": 429,
                    "label": "Sonde oxygène BA NH4.2 - Nettoyage",
                    "smarttags": null,
                    "state": 1,
                    "profile_type": 4,
                    "check_type": 2,
                    "min_value": null,
                    "max_value": null,
                    "rrule": "DTSTART:20220209T000000\nRRULE:FREQ=MONTHLY;INTERVAL=1;BYDAY=WE;BYSETPOS=2\n",
                    "created_at": "2022-01-18T10:10:10.000000Z",
                    "updated_at": "2022-02-11T13:06:40.000000Z",
                    "task_category": {
                        "id": 429,
                        "parent_id": 414,
                        "name": "Bassin d'Aération NH4.2",
                        "instructions": null,
                        "created_at": "2022-01-18T09:14:19.000000Z",
                        "updated_at": "2022-01-19T09:16:50.000000Z"
                    }
                }
            },
            {
                "id": 8116,
                "user_id": 2,
                "tour_data_id": 31,
                "task_id": 872,
                "check_value": null,
                "numeric_value": null,
                "comment": null,
                "has_error": 0,
                "created_at": null,
                "updated_at": null,
                "task": {
                    "id": 872,
                    "task_category_id": 429,
                    "label": "Sonde oxygène BA NH4.2 - Nettoyage",
                    "smarttags": null,
                    "state": 1,
                    "profile_type": 4,
                    "check_type": 2,
                    "min_value": null,
                    "max_value": null,
                    "rrule": "DTSTART:20220126T000000\nRRULE:FREQ=MONTHLY;INTERVAL=1;BYDAY=WE;BYSETPOS=4\n",
                    "created_at": "2022-01-18T10:10:18.000000Z",
                    "updated_at": "2022-02-11T13:06:52.000000Z",
                    "task_category": {
                        "id": 429,
                        "parent_id": 414,
                        "name": "Bassin d'Aération NH4.2",
                        "instructions": null,
                        "created_at": "2022-01-18T09:14:19.000000Z",
                        "updated_at": "2022-01-19T09:16:50.000000Z"
                    }
                }
            },
            {
                "id": 8117,
                "user_id": 2,
                "tour_data_id": 31,
                "task_id": 909,
                "check_value": null,
                "numeric_value": null,
                "comment": null,
                "has_error": 0,
                "created_at": null,
                "updated_at": null,
                "task": {
                    "id": 909,
                    "task_category_id": 444,
                    "label": "Sonde Ph flash MBBR - Nettoyage",
                    "smarttags": null,
                    "state": 1,
                    "profile_type": 4,
                    "check_type": 2,
                    "min_value": null,
                    "max_value": null,
                    "rrule": "DTSTART:20211220T000000\nRRULE:FREQ=WEEKLY;INTERVAL=1\n",
                    "created_at": "2022-01-19T09:19:18.000000Z",
                    "updated_at": "2022-02-11T13:07:39.000000Z",
                    "task_category": {
                        "id": 444,
                        "parent_id": 414,
                        "name": "MBBR",
                        "instructions": null,
                        "created_at": "2022-01-19T09:17:35.000000Z",
                        "updated_at": "2022-01-19T09:17:49.000000Z"
                    }
                }
            },
            {
                "id": 8118,
                "user_id": 2,
                "tour_data_id": 31,
                "task_id": 910,
                "check_value": null,
                "numeric_value": null,
                "comment": null,
                "has_error": 0,
                "created_at": null,
                "updated_at": null,
                "task": {
                    "id": 910,
                    "task_category_id": 444,
                    "label": "Sonde Ph flash MBBR - Etalonnage (étalon 4 et 7)",
                    "smarttags": null,
                    "state": 1,
                    "profile_type": 4,
                    "check_type": 2,
                    "min_value": null,
                    "max_value": null,
                    "rrule": "DTSTART:20211223T000000\nRRULE:FREQ=WEEKLY;INTERVAL=1\n",
                    "created_at": "2022-01-19T09:20:51.000000Z",
                    "updated_at": "2022-02-11T13:07:47.000000Z",
                    "task_category": {
                        "id": 444,
                        "parent_id": 414,
                        "name": "MBBR",
                        "instructions": null,
                        "created_at": "2022-01-19T09:17:35.000000Z",
                        "updated_at": "2022-01-19T09:17:49.000000Z"
                    }
                }
            },
            {
                "id": 8119,
                "user_id": 2,
                "tour_data_id": 31,
                "task_id": 911,
                "check_value": null,
                "numeric_value": null,
                "comment": null,
                "has_error": 0,
                "created_at": null,
                "updated_at": null,
                "task": {
                    "id": 911,
                    "task_category_id": 444,
                    "label": "Sonde Ph BA MBBR - Nettoyage",
                    "smarttags": null,
                    "state": 1,
                    "profile_type": 4,
                    "check_type": 2,
                    "min_value": null,
                    "max_value": null,
                    "rrule": "DTSTART:20220119T000000\nRRULE:FREQ=WEEKLY;INTERVAL=1;BYDAY=TH\n",
                    "created_at": "2022-01-19T09:21:44.000000Z",
                    "updated_at": "2022-02-11T13:08:18.000000Z",
                    "task_category": {
                        "id": 444,
                        "parent_id": 414,
                        "name": "MBBR",
                        "instructions": null,
                        "created_at": "2022-01-19T09:17:35.000000Z",
                        "updated_at": "2022-01-19T09:17:49.000000Z"
                    }
                }
            },
            {
                "id": 8120,
                "user_id": 2,
                "tour_data_id": 31,
                "task_id": 912,
                "check_value": null,
                "numeric_value": null,
                "comment": null,
                "has_error": 0,
                "created_at": null,
                "updated_at": null,
                "task": {
                    "id": 912,
                    "task_category_id": 444,
                    "label": "Sonde oxygène BA MBBR",
                    "smarttags": null,
                    "state": 1,
                    "profile_type": 4,
                    "check_type": 2,
                    "min_value": null,
                    "max_value": null,
                    "rrule": "DTSTART:20220119T000000\nRRULE:FREQ=WEEKLY;INTERVAL=1\n",
                    "created_at": "2022-01-19T09:23:17.000000Z",
                    "updated_at": "2022-02-11T13:08:03.000000Z",
                    "task_category": {
                        "id": 444,
                        "parent_id": 414,
                        "name": "MBBR",
                        "instructions": null,
                        "created_at": "2022-01-19T09:17:35.000000Z",
                        "updated_at": "2022-01-19T09:17:49.000000Z"
                    }
                }
            },
            {
                "id": 8121,
                "user_id": 2,
                "tour_data_id": 31,
                "task_id": 913,
                "check_value": null,
                "numeric_value": null,
                "comment": null,
                "has_error": 0,
                "created_at": null,
                "updated_at": null,
                "task": {
                    "id": 913,
                    "task_category_id": 444,
                    "label": "Sonde Ph BA MBBR - Étalonnage (étalon 7 et 10)",
                    "smarttags": null,
                    "state": 1,
                    "profile_type": 4,
                    "check_type": 2,
                    "min_value": null,
                    "max_value": null,
                    "rrule": "DTSTART:20220120T000000\nRRULE:FREQ=MONTHLY;INTERVAL=1;BYDAY=TH;BYSETPOS=3\n",
                    "created_at": "2022-01-19T09:24:21.000000Z",
                    "updated_at": "2022-02-11T13:08:30.000000Z",
                    "task_category": {
                        "id": 444,
                        "parent_id": 414,
                        "name": "MBBR",
                        "instructions": null,
                        "created_at": "2022-01-19T09:17:35.000000Z",
                        "updated_at": "2022-01-19T09:17:49.000000Z"
                    }
                }
            },
            {
                "id": 8122,
                "user_id": 2,
                "tour_data_id": 31,
                "task_id": 877,
                "check_value": null,
                "numeric_value": null,
                "comment": null,
                "has_error": 0,
                "created_at": null,
                "updated_at": null,
                "task": {
                    "id": 877,
                    "task_category_id": 432,
                    "label": "Acide",
                    "smarttags": null,
                    "state": 2,
                    "profile_type": 4,
                    "check_type": 2,
                    "min_value": null,
                    "max_value": null,
                    "rrule": "DTSTART:20220118T000000\nRRULE:FREQ=MONTHLY;INTERVAL=1;BYDAY=TU;BYSETPOS=3\n",
                    "created_at": "2022-01-18T10:14:06.000000Z",
                    "updated_at": "2022-01-19T09:09:01.000000Z",
                    "task_category": {
                        "id": 432,
                        "parent_id": 415,
                        "name": "DESODO 1",
                        "instructions": null,
                        "created_at": "2022-01-18T09:14:55.000000Z",
                        "updated_at": "2022-01-18T09:15:58.000000Z"
                    }
                }
            },
            {
                "id": 8123,
                "user_id": 2,
                "tour_data_id": 31,
                "task_id": 878,
                "check_value": null,
                "numeric_value": null,
                "comment": null,
                "has_error": 0,
                "created_at": null,
                "updated_at": null,
                "task": {
                    "id": 878,
                    "task_category_id": 432,
                    "label": "RH",
                    "smarttags": null,
                    "state": 2,
                    "profile_type": 4,
                    "check_type": 2,
                    "min_value": null,
                    "max_value": null,
                    "rrule": "DTSTART:20220118T000000\nRRULE:FREQ=MONTHLY;INTERVAL=1;BYDAY=TU;BYSETPOS=3\n",
                    "created_at": "2022-01-18T10:14:07.000000Z",
                    "updated_at": "2022-01-19T09:09:01.000000Z",
                    "task_category": {
                        "id": 432,
                        "parent_id": 415,
                        "name": "DESODO 1",
                        "instructions": null,
                        "created_at": "2022-01-18T09:14:55.000000Z",
                        "updated_at": "2022-01-18T09:15:58.000000Z"
                    }
                }
            },
            {
                "id": 8124,
                "user_id": 2,
                "tour_data_id": 31,
                "task_id": 879,
                "check_value": null,
                "numeric_value": null,
                "comment": null,
                "has_error": 0,
                "created_at": null,
                "updated_at": null,
                "task": {
                    "id": 879,
                    "task_category_id": 432,
                    "label": "Basic",
                    "smarttags": null,
                    "state": 2,
                    "profile_type": 4,
                    "check_type": 2,
                    "min_value": null,
                    "max_value": null,
                    "rrule": "DTSTART:20220118T000000\nRRULE:FREQ=MONTHLY;INTERVAL=1;BYDAY=TU;BYSETPOS=3\n",
                    "created_at": "2022-01-18T10:14:16.000000Z",
                    "updated_at": "2022-01-19T09:09:00.000000Z",
                    "task_category": {
                        "id": 432,
                        "parent_id": 415,
                        "name": "DESODO 1",
                        "instructions": null,
                        "created_at": "2022-01-18T09:14:55.000000Z",
                        "updated_at": "2022-01-18T09:15:58.000000Z"
                    }
                }
            },
            {
                "id": 8125,
                "user_id": 2,
                "tour_data_id": 31,
                "task_id": 880,
                "check_value": null,
                "numeric_value": null,
                "comment": null,
                "has_error": 0,
                "created_at": null,
                "updated_at": null,
                "task": {
                    "id": 880,
                    "task_category_id": 433,
                    "label": "Acide",
                    "smarttags": null,
                    "state": 2,
                    "profile_type": 4,
                    "check_type": 2,
                    "min_value": null,
                    "max_value": null,
                    "rrule": "DTSTART:20220119T000000\nRRULE:FREQ=MONTHLY;INTERVAL=1;BYDAY=WE;BYSETPOS=3\n",
                    "created_at": "2022-01-18T10:14:55.000000Z",
                    "updated_at": "2022-01-19T09:09:05.000000Z",
                    "task_category": {
                        "id": 433,
                        "parent_id": 415,
                        "name": "DESODO 2",
                        "instructions": null,
                        "created_at": "2022-01-18T09:16:07.000000Z",
                        "updated_at": "2022-01-18T09:16:15.000000Z"
                    }
                }
            },
            {
                "id": 8126,
                "user_id": 2,
                "tour_data_id": 31,
                "task_id": 881,
                "check_value": null,
                "numeric_value": null,
                "comment": null,
                "has_error": 0,
                "created_at": null,
                "updated_at": null,
                "task": {
                    "id": 881,
                    "task_category_id": 433,
                    "label": "RH",
                    "smarttags": null,
                    "state": 2,
                    "profile_type": 4,
                    "check_type": 2,
                    "min_value": null,
                    "max_value": null,
                    "rrule": "DTSTART:20220119T000000\nRRULE:FREQ=MONTHLY;INTERVAL=1;BYDAY=WE;BYSETPOS=3\n",
                    "created_at": "2022-01-18T10:15:09.000000Z",
                    "updated_at": "2022-01-19T09:09:05.000000Z",
                    "task_category": {
                        "id": 433,
                        "parent_id": 415,
                        "name": "DESODO 2",
                        "instructions": null,
                        "created_at": "2022-01-18T09:16:07.000000Z",
                        "updated_at": "2022-01-18T09:16:15.000000Z"
                    }
                }
            },
            {
                "id": 8127,
                "user_id": 2,
                "tour_data_id": 31,
                "task_id": 882,
                "check_value": null,
                "numeric_value": null,
                "comment": null,
                "has_error": 0,
                "created_at": null,
                "updated_at": null,
                "task": {
                    "id": 882,
                    "task_category_id": 433,
                    "label": "Basic",
                    "smarttags": null,
                    "state": 2,
                    "profile_type": 4,
                    "check_type": 2,
                    "min_value": null,
                    "max_value": null,
                    "rrule": "DTSTART:20220119T000000\nRRULE:FREQ=MONTHLY;INTERVAL=1;BYDAY=WE;BYSETPOS=3\n",
                    "created_at": "2022-01-18T10:15:11.000000Z",
                    "updated_at": "2022-01-19T09:09:04.000000Z",
                    "task_category": {
                        "id": 433,
                        "parent_id": 415,
                        "name": "DESODO 2",
                        "instructions": null,
                        "created_at": "2022-01-18T09:16:07.000000Z",
                        "updated_at": "2022-01-18T09:16:15.000000Z"
                    }
                }
            }
        ]
    }
}
 

Request      

GET api/tour_data/{tour_data}

URL Parameters

tour_data  integer  

The ID of a Tour Data.