{
    "baserow_template_version": 1,
    "name": "Grocery Planner",
    "icon": "iconoir-apple",
    "keywords": [
        "groceries",
        "grocery list",
        "shopping",
        "market",
        "supplies",
        "food",
        "supermarket",
        "grocery",
        "store"
    ],
    "categories": [
        "Personal and Hobbies"
    ],
    "export": [
        {
            "id": 48216,
            "name": "Grocery Planner",
            "order": 1,
            "type": "database",
            "tables": [
                {
                    "id": 122785,
                    "name": "Grocery items",
                    "order": 4,
                    "fields": [
                        {
                            "id": 790428,
                            "type": "text",
                            "name": "Name",
                            "order": 0,
                            "primary": true,
                            "text_default": ""
                        },
                        {
                            "id": 790453,
                            "type": "number",
                            "name": "Quantity",
                            "order": 3,
                            "primary": false,
                            "number_decimal_places": 2,
                            "number_negative": false
                        },
                        {
                            "id": 790454,
                            "type": "formula",
                            "name": "Upcoming plans",
                            "order": 4,
                            "primary": false,
                            "error": null,
                            "date_format": null,
                            "date_include_time": null,
                            "date_time_format": null,
                            "number_decimal_places": null,
                            "array_formula_type": null,
                            "formula": "concat( \n  \"  🥗 \", \n  count( \n    filter( \n      lookup(\"Related meal plans\", \"Grocery before plan\"), \n      and( \n        lookup(\"Related meal plans\", \"Grocery before plan\") > -1, \n        lookup(\"Related meal plans\", \"Is grocery fulfilled\") = \"No\" \n      ) \n    ) \n  ), \n  \" --:-- 🪁 \", \n  count( \n    filter( \n      lookup(\"Related activity plans\", \"Grocery before plan\"), \n      and( \n        lookup(\"Related activity plans\", \"Grocery before plan\") > -1, \n        lookup(\"Related activity plans\", \"Is grocery fulfilled\") = \"No\" \n      ) \n    ) \n  ) \n)",
                            "formula_type": "text"
                        },
                        {
                            "id": 790455,
                            "type": "file",
                            "name": "Photo",
                            "order": 5,
                            "primary": false
                        },
                        {
                            "id": 790469,
                            "type": "single_select",
                            "name": "Category",
                            "order": 6,
                            "primary": false,
                            "select_options": [
                                {
                                    "id": 339709,
                                    "value": "Fruits",
                                    "color": "dark-orange",
                                    "order": 0
                                },
                                {
                                    "id": 339710,
                                    "value": "Vegetables",
                                    "color": "dark-green",
                                    "order": 1
                                },
                                {
                                    "id": 339711,
                                    "value": "Pastries",
                                    "color": "light-green",
                                    "order": 2
                                },
                                {
                                    "id": 339712,
                                    "value": "Dairy",
                                    "color": "light-orange",
                                    "order": 3
                                },
                                {
                                    "id": 339713,
                                    "value": "Grain products",
                                    "color": "light-gray",
                                    "order": 4
                                },
                                {
                                    "id": 339714,
                                    "value": "Meat",
                                    "color": "dark-red",
                                    "order": 5
                                },
                                {
                                    "id": 339715,
                                    "value": "Pantry items",
                                    "color": "orange",
                                    "order": 6
                                },
                                {
                                    "id": 339716,
                                    "value": "Kitchen supplies",
                                    "color": "red",
                                    "order": 7
                                },
                                {
                                    "id": 339717,
                                    "value": "Hygiene supplies",
                                    "color": "blue",
                                    "order": 8
                                },
                                {
                                    "id": 339718,
                                    "value": "Non-food supplies",
                                    "color": "dark-blue",
                                    "order": 9
                                },
                                {
                                    "id": 340726,
                                    "value": "Beverages",
                                    "color": "gray",
                                    "order": 10
                                }
                            ]
                        },
                        {
                            "id": 790470,
                            "type": "long_text",
                            "name": "Description",
                            "order": 7,
                            "primary": false
                        },
                        {
                            "id": 790471,
                            "type": "long_text",
                            "name": "Notes",
                            "order": 8,
                            "primary": false
                        },
                        {
                            "id": 790472,
                            "type": "single_select",
                            "name": "Status",
                            "order": 9,
                            "primary": false,
                            "select_options": [
                                {
                                    "id": 339720,
                                    "value": "In stock",
                                    "color": "dark-green",
                                    "order": 0
                                },
                                {
                                    "id": 339721,
                                    "value": "Low stock",
                                    "color": "dark-orange",
                                    "order": 1
                                },
                                {
                                    "id": 339722,
                                    "value": "Out of stock",
                                    "color": "dark-red",
                                    "order": 2
                                },
                                {
                                    "id": 350394,
                                    "value": "Not needed",
                                    "color": "dark-gray",
                                    "order": 3
                                }
                            ]
                        },
                        {
                            "id": 790473,
                            "type": "number",
                            "name": "MSRP",
                            "order": 10,
                            "primary": false,
                            "number_decimal_places": 2,
                            "number_negative": false
                        },
                        {
                            "id": 790474,
                            "type": "formula",
                            "name": "Total price",
                            "order": 11,
                            "primary": false,
                            "error": null,
                            "date_format": null,
                            "date_include_time": null,
                            "date_time_format": null,
                            "number_decimal_places": 2,
                            "array_formula_type": null,
                            "formula": "multiply( \n  if( \n    or( \n      isblank(field(\"Quantity\")), \n      field(\"Quantity\") < 0.01\n    ), \n    1, \n    field(\"Quantity\") \n  ), \n  field(\"MSRP\") \n)",
                            "formula_type": "number"
                        },
                        {
                            "id": 790537,
                            "type": "link_row",
                            "name": "Shop",
                            "order": 12,
                            "primary": false,
                            "link_row_table_id": 122788,
                            "link_row_related_field_id": 790538,
                            "has_related_field": true
                        },
                        {
                            "id": 790539,
                            "type": "created_on",
                            "name": "Date added",
                            "order": 13,
                            "primary": false,
                            "date_format": "ISO",
                            "date_include_time": true,
                            "date_time_format": "24",
                            "timezone": "Asia/Singapore"
                        },
                        {
                            "id": 790541,
                            "type": "last_modified",
                            "name": "Date updated",
                            "order": 14,
                            "primary": false,
                            "date_format": "ISO",
                            "date_include_time": true,
                            "date_time_format": "24",
                            "timezone": "Asia/Singapore"
                        },
                        {
                            "id": 790543,
                            "type": "link_row",
                            "name": "Related meal plans",
                            "order": 15,
                            "primary": false,
                            "link_row_table_id": 122786,
                            "link_row_related_field_id": 790542,
                            "has_related_field": true
                        },
                        {
                            "id": 790548,
                            "type": "link_row",
                            "name": "Related activity plans",
                            "order": 16,
                            "primary": false,
                            "link_row_table_id": 122798,
                            "link_row_related_field_id": 790547,
                            "has_related_field": true
                        },
                        {
                            "id": 790549,
                            "type": "formula",
                            "name": "Latest plans for sorting",
                            "order": 17,
                            "primary": false,
                            "error": null,
                            "date_format": null,
                            "date_include_time": null,
                            "date_time_format": null,
                            "number_decimal_places": 0,
                            "array_formula_type": null,
                            "formula": "add( \n  count( \n    filter( \n      lookup(\"Related meal plans\", \"Grocery before plan\"), \n      and( \n        lookup(\"Related meal plans\", \"Grocery before plan\") > -1, \n        lookup(\"Related meal plans\", \"Is grocery fulfilled\") = \"No\" \n      ) \n    ) \n  ), \n  count( \n    filter( \n      lookup(\"Related activity plans\", \"Grocery before plan\"), \n      and( \n        lookup(\"Related activity plans\", \"Grocery before plan\") > -1, \n        lookup(\"Related activity plans\", \"Is grocery fulfilled\") = \"No\" \n      ) \n    ) \n  ) \n)",
                            "formula_type": "number"
                        },
                        {
                            "id": 799288,
                            "type": "formula",
                            "name": "Has upcoming plans",
                            "order": 18,
                            "primary": false,
                            "error": null,
                            "date_format": null,
                            "date_include_time": null,
                            "date_time_format": null,
                            "number_decimal_places": null,
                            "array_formula_type": null,
                            "formula": "if( \n  field(\"Latest plans for sorting\") > 0, \n  true, \n  false \n)",
                            "formula_type": "boolean"
                        },
                        {
                            "id": 799367,
                            "type": "formula",
                            "name": "Shop for sorting",
                            "order": 19,
                            "primary": false,
                            "error": null,
                            "date_format": null,
                            "date_include_time": null,
                            "date_time_format": null,
                            "number_decimal_places": null,
                            "array_formula_type": null,
                            "formula": "join(field(\"Shop\"), \"\")",
                            "formula_type": "text"
                        }
                    ],
                    "views": [
                        {
                            "id": 185832,
                            "type": "grid",
                            "name": "All grocery items",
                            "order": 1,
                            "filter_type": "AND",
                            "filters_disabled": false,
                            "filters": [],
                            "sortings": [
                                {
                                    "id": 58976,
                                    "field_id": 799288,
                                    "order": "DESC"
                                },
                                {
                                    "id": 58990,
                                    "field_id": 799367,
                                    "order": "ASC"
                                },
                                {
                                    "id": 58991,
                                    "field_id": 790469,
                                    "order": "ASC"
                                },
                                {
                                    "id": 58992,
                                    "field_id": 790428,
                                    "order": "ASC"
                                }
                            ],
                            "decorations": [
                                {
                                    "id": 8627,
                                    "type": "background_color",
                                    "value_provider_type": "conditional_color",
                                    "value_provider_conf": {
                                        "colors": [
                                            {
                                                "color": "light-blue",
                                                "filters": [
                                                    {
                                                        "id": "fc61db3f-92f4-4aa9-a84b-d21d4685110f",
                                                        "type": "boolean",
                                                        "field": 799288,
                                                        "value": ""
                                                    }
                                                ],
                                                "operator": "OR"
                                            }
                                        ]
                                    },
                                    "order": 1
                                },
                                {
                                    "id": 8630,
                                    "type": "left_border_color",
                                    "value_provider_type": "single_select_color",
                                    "value_provider_conf": {
                                        "field_id": 790472
                                    },
                                    "order": 2
                                }
                            ],
                            "public": false,
                            "row_identifier_type": "count",
                            "field_options": [
                                {
                                    "id": 1145311,
                                    "field_id": 790428,
                                    "width": 219,
                                    "hidden": false,
                                    "order": 0,
                                    "aggregation_type": "unique_count",
                                    "aggregation_raw_type": "unique_count"
                                },
                                {
                                    "id": 1145330,
                                    "field_id": 790453,
                                    "width": 114,
                                    "hidden": false,
                                    "order": 3,
                                    "aggregation_type": "",
                                    "aggregation_raw_type": ""
                                },
                                {
                                    "id": 1145332,
                                    "field_id": 790454,
                                    "width": 159,
                                    "hidden": false,
                                    "order": 4,
                                    "aggregation_type": "",
                                    "aggregation_raw_type": ""
                                },
                                {
                                    "id": 1145333,
                                    "field_id": 790455,
                                    "width": 100,
                                    "hidden": false,
                                    "order": 1,
                                    "aggregation_type": "not_empty_percentage",
                                    "aggregation_raw_type": "empty_count"
                                },
                                {
                                    "id": 1145346,
                                    "field_id": 790469,
                                    "width": 144,
                                    "hidden": false,
                                    "order": 5,
                                    "aggregation_type": "",
                                    "aggregation_raw_type": ""
                                },
                                {
                                    "id": 1145347,
                                    "field_id": 790470,
                                    "width": 165,
                                    "hidden": false,
                                    "order": 6,
                                    "aggregation_type": "",
                                    "aggregation_raw_type": ""
                                },
                                {
                                    "id": 1145348,
                                    "field_id": 790471,
                                    "width": 170,
                                    "hidden": false,
                                    "order": 7,
                                    "aggregation_type": "",
                                    "aggregation_raw_type": ""
                                },
                                {
                                    "id": 1145349,
                                    "field_id": 790472,
                                    "width": 131,
                                    "hidden": false,
                                    "order": 2,
                                    "aggregation_type": "",
                                    "aggregation_raw_type": ""
                                },
                                {
                                    "id": 1145350,
                                    "field_id": 790473,
                                    "width": 100,
                                    "hidden": false,
                                    "order": 8,
                                    "aggregation_type": "sum",
                                    "aggregation_raw_type": "sum"
                                },
                                {
                                    "id": 1145351,
                                    "field_id": 790474,
                                    "width": 125,
                                    "hidden": false,
                                    "order": 9,
                                    "aggregation_type": "sum",
                                    "aggregation_raw_type": "sum"
                                },
                                {
                                    "id": 1145407,
                                    "field_id": 790537,
                                    "width": 166,
                                    "hidden": false,
                                    "order": 10,
                                    "aggregation_type": "",
                                    "aggregation_raw_type": ""
                                },
                                {
                                    "id": 1145411,
                                    "field_id": 790539,
                                    "width": 148,
                                    "hidden": false,
                                    "order": 11,
                                    "aggregation_type": "",
                                    "aggregation_raw_type": ""
                                },
                                {
                                    "id": 1145412,
                                    "field_id": 790541,
                                    "width": 149,
                                    "hidden": false,
                                    "order": 12,
                                    "aggregation_type": "",
                                    "aggregation_raw_type": ""
                                },
                                {
                                    "id": 1145415,
                                    "field_id": 790543,
                                    "width": 176,
                                    "hidden": true,
                                    "order": 13,
                                    "aggregation_type": "",
                                    "aggregation_raw_type": ""
                                },
                                {
                                    "id": 1145420,
                                    "field_id": 790548,
                                    "width": 189,
                                    "hidden": true,
                                    "order": 14,
                                    "aggregation_type": "",
                                    "aggregation_raw_type": ""
                                },
                                {
                                    "id": 1145421,
                                    "field_id": 790549,
                                    "width": 201,
                                    "hidden": true,
                                    "order": 15,
                                    "aggregation_type": "average",
                                    "aggregation_raw_type": "average"
                                },
                                {
                                    "id": 1158917,
                                    "field_id": 799288,
                                    "width": 184,
                                    "hidden": true,
                                    "order": 32767,
                                    "aggregation_type": "",
                                    "aggregation_raw_type": ""
                                },
                                {
                                    "id": 1158995,
                                    "field_id": 799367,
                                    "width": 166,
                                    "hidden": true,
                                    "order": 32767,
                                    "aggregation_type": "",
                                    "aggregation_raw_type": ""
                                }
                            ]
                        },
                        {
                            "id": 187945,
                            "type": "form",
                            "name": "Add grocery item",
                            "order": 2,
                            "public": false,
                            "title": "Add a grocery item",
                            "description": "",
                            "cover_image": {
                                "name": "tgKuqbOsOWcRjgYkFUHzY3HXlxeySZl9_7b023779c7a9ab37526f28486e0719c97bb218550c30449f0634c254455da0cd.jpg",
                                "original_name": "Header.Groceries.01.jpg"
                            },
                            "logo_image": null,
                            "submit_text": "Submit",
                            "submit_action": "MESSAGE",
                            "submit_action_message": "The grocery item was successfully added to the database. To add more, please reload this page.",
                            "submit_action_redirect_url": "",
                            "field_options": [
                                {
                                    "id": 114709,
                                    "field_id": 790428,
                                    "name": "",
                                    "description": "Please enter a unique name or identifier for this grocery item.",
                                    "enabled": true,
                                    "required": true,
                                    "order": 0,
                                    "show_when_matching_conditions": false,
                                    "condition_type": "AND",
                                    "conditions": []
                                },
                                {
                                    "id": 114712,
                                    "field_id": 790455,
                                    "name": "",
                                    "description": "Upload any photo or photos of the grocery item to this field.",
                                    "enabled": true,
                                    "required": false,
                                    "order": 1,
                                    "show_when_matching_conditions": false,
                                    "condition_type": "AND",
                                    "conditions": []
                                },
                                {
                                    "id": 114713,
                                    "field_id": 790469,
                                    "name": "",
                                    "description": "Please choose the type of grocery item this is.",
                                    "enabled": true,
                                    "required": true,
                                    "order": 2,
                                    "show_when_matching_conditions": false,
                                    "condition_type": "AND",
                                    "conditions": []
                                },
                                {
                                    "id": 114710,
                                    "field_id": 790453,
                                    "name": "",
                                    "description": "Enter the number or quantity of items you need to buy. Some items are sold and priced per set packaging, and some are sold per customized volume. For example, if you need just half a kilo of \"ground beef (1 kg),\" just type in 0.50 and leave the MSRP at the default per kilogram.",
                                    "enabled": true,
                                    "required": false,
                                    "order": 3,
                                    "show_when_matching_conditions": false,
                                    "condition_type": "AND",
                                    "conditions": []
                                },
                                {
                                    "id": 114717,
                                    "field_id": 790473,
                                    "name": "",
                                    "description": "Type in the manufacturer's suggested retail price of this grocery item, or your own estimate of the item's price per packaging or volume.",
                                    "enabled": true,
                                    "required": false,
                                    "order": 4,
                                    "show_when_matching_conditions": false,
                                    "condition_type": "AND",
                                    "conditions": []
                                },
                                {
                                    "id": 114716,
                                    "field_id": 790472,
                                    "name": "",
                                    "description": "Please indicate your grocery item's shelf status from your own pantry or home. You'll have to update this before and during or after grocery shopping.",
                                    "enabled": true,
                                    "required": true,
                                    "order": 5,
                                    "show_when_matching_conditions": false,
                                    "condition_type": "AND",
                                    "conditions": []
                                },
                                {
                                    "id": 114719,
                                    "field_id": 790537,
                                    "name": "",
                                    "description": "Select which store you usually frequent for this grocery item.",
                                    "enabled": true,
                                    "required": false,
                                    "order": 6,
                                    "show_when_matching_conditions": false,
                                    "condition_type": "AND",
                                    "conditions": []
                                },
                                {
                                    "id": 114714,
                                    "field_id": 790470,
                                    "name": "",
                                    "description": "Type in a full description about this grocery item. This could also be useful if you plan to share your list to a friend or someone who is willing to do your grocery shopping for you.",
                                    "enabled": true,
                                    "required": false,
                                    "order": 7,
                                    "show_when_matching_conditions": false,
                                    "condition_type": "AND",
                                    "conditions": []
                                },
                                {
                                    "id": 114715,
                                    "field_id": 790471,
                                    "name": "",
                                    "description": "Enter any other remarks or brief description about this grocery item.",
                                    "enabled": true,
                                    "required": false,
                                    "order": 8,
                                    "show_when_matching_conditions": false,
                                    "condition_type": "AND",
                                    "conditions": []
                                },
                                {
                                    "id": 114711,
                                    "field_id": 790454,
                                    "name": "",
                                    "description": "",
                                    "enabled": false,
                                    "required": true,
                                    "order": 9,
                                    "show_when_matching_conditions": false,
                                    "condition_type": "AND",
                                    "conditions": []
                                },
                                {
                                    "id": 114718,
                                    "field_id": 790474,
                                    "name": "",
                                    "description": "",
                                    "enabled": false,
                                    "required": true,
                                    "order": 10,
                                    "show_when_matching_conditions": false,
                                    "condition_type": "AND",
                                    "conditions": []
                                },
                                {
                                    "id": 114720,
                                    "field_id": 790539,
                                    "name": "",
                                    "description": "",
                                    "enabled": false,
                                    "required": true,
                                    "order": 11,
                                    "show_when_matching_conditions": false,
                                    "condition_type": "AND",
                                    "conditions": []
                                },
                                {
                                    "id": 114721,
                                    "field_id": 790541,
                                    "name": "",
                                    "description": "",
                                    "enabled": false,
                                    "required": true,
                                    "order": 12,
                                    "show_when_matching_conditions": false,
                                    "condition_type": "AND",
                                    "conditions": []
                                },
                                {
                                    "id": 114722,
                                    "field_id": 790543,
                                    "name": "",
                                    "description": "",
                                    "enabled": false,
                                    "required": true,
                                    "order": 13,
                                    "show_when_matching_conditions": false,
                                    "condition_type": "AND",
                                    "conditions": []
                                },
                                {
                                    "id": 114723,
                                    "field_id": 790548,
                                    "name": "",
                                    "description": "",
                                    "enabled": false,
                                    "required": true,
                                    "order": 14,
                                    "show_when_matching_conditions": false,
                                    "condition_type": "AND",
                                    "conditions": []
                                },
                                {
                                    "id": 114724,
                                    "field_id": 790549,
                                    "name": "",
                                    "description": "",
                                    "enabled": false,
                                    "required": true,
                                    "order": 15,
                                    "show_when_matching_conditions": false,
                                    "condition_type": "AND",
                                    "conditions": []
                                },
                                {
                                    "id": 114725,
                                    "field_id": 799288,
                                    "name": "",
                                    "description": "",
                                    "enabled": false,
                                    "required": true,
                                    "order": 16,
                                    "show_when_matching_conditions": false,
                                    "condition_type": "AND",
                                    "conditions": []
                                },
                                {
                                    "id": 114726,
                                    "field_id": 799367,
                                    "name": "",
                                    "description": "",
                                    "enabled": false,
                                    "required": true,
                                    "order": 17,
                                    "show_when_matching_conditions": false,
                                    "condition_type": "AND",
                                    "conditions": []
                                }
                            ]
                        },
                        {
                            "id": 187940,
                            "type": "grid",
                            "name": "To get list",
                            "order": 3,
                            "filter_type": "AND",
                            "filters_disabled": false,
                            "filters": [
                                {
                                    "id": 74905,
                                    "field_id": 799288,
                                    "type": "boolean",
                                    "value": "1"
                                }
                            ],
                            "sortings": [
                                {
                                    "id": 59006,
                                    "field_id": 799367,
                                    "order": "ASC"
                                },
                                {
                                    "id": 59007,
                                    "field_id": 790469,
                                    "order": "ASC"
                                },
                                {
                                    "id": 59008,
                                    "field_id": 790428,
                                    "order": "ASC"
                                }
                            ],
                            "decorations": [
                                {
                                    "id": 8645,
                                    "type": "left_border_color",
                                    "value_provider_type": "single_select_color",
                                    "value_provider_conf": {
                                        "field_id": 790472
                                    },
                                    "order": 2
                                }
                            ],
                            "public": false,
                            "row_identifier_type": "count",
                            "field_options": [
                                {
                                    "id": 1159058,
                                    "field_id": 790428,
                                    "width": 219,
                                    "hidden": false,
                                    "order": 0,
                                    "aggregation_type": "unique_count",
                                    "aggregation_raw_type": "unique_count"
                                },
                                {
                                    "id": 1159059,
                                    "field_id": 790453,
                                    "width": 114,
                                    "hidden": false,
                                    "order": 3,
                                    "aggregation_type": "",
                                    "aggregation_raw_type": ""
                                },
                                {
                                    "id": 1159060,
                                    "field_id": 790454,
                                    "width": 159,
                                    "hidden": false,
                                    "order": 4,
                                    "aggregation_type": "",
                                    "aggregation_raw_type": ""
                                },
                                {
                                    "id": 1159061,
                                    "field_id": 790455,
                                    "width": 100,
                                    "hidden": false,
                                    "order": 1,
                                    "aggregation_type": "not_empty_percentage",
                                    "aggregation_raw_type": "empty_count"
                                },
                                {
                                    "id": 1159062,
                                    "field_id": 790469,
                                    "width": 144,
                                    "hidden": false,
                                    "order": 5,
                                    "aggregation_type": "",
                                    "aggregation_raw_type": ""
                                },
                                {
                                    "id": 1159063,
                                    "field_id": 790470,
                                    "width": 165,
                                    "hidden": false,
                                    "order": 6,
                                    "aggregation_type": "",
                                    "aggregation_raw_type": ""
                                },
                                {
                                    "id": 1159064,
                                    "field_id": 790471,
                                    "width": 170,
                                    "hidden": false,
                                    "order": 7,
                                    "aggregation_type": "",
                                    "aggregation_raw_type": ""
                                },
                                {
                                    "id": 1159065,
                                    "field_id": 790472,
                                    "width": 131,
                                    "hidden": false,
                                    "order": 2,
                                    "aggregation_type": "",
                                    "aggregation_raw_type": ""
                                },
                                {
                                    "id": 1159066,
                                    "field_id": 790473,
                                    "width": 100,
                                    "hidden": false,
                                    "order": 8,
                                    "aggregation_type": "sum",
                                    "aggregation_raw_type": "sum"
                                },
                                {
                                    "id": 1159067,
                                    "field_id": 790474,
                                    "width": 125,
                                    "hidden": false,
                                    "order": 9,
                                    "aggregation_type": "sum",
                                    "aggregation_raw_type": "sum"
                                },
                                {
                                    "id": 1159068,
                                    "field_id": 790537,
                                    "width": 166,
                                    "hidden": false,
                                    "order": 10,
                                    "aggregation_type": "",
                                    "aggregation_raw_type": ""
                                },
                                {
                                    "id": 1159069,
                                    "field_id": 790539,
                                    "width": 148,
                                    "hidden": false,
                                    "order": 11,
                                    "aggregation_type": "",
                                    "aggregation_raw_type": ""
                                },
                                {
                                    "id": 1159070,
                                    "field_id": 790541,
                                    "width": 149,
                                    "hidden": false,
                                    "order": 12,
                                    "aggregation_type": "",
                                    "aggregation_raw_type": ""
                                },
                                {
                                    "id": 1159071,
                                    "field_id": 790543,
                                    "width": 176,
                                    "hidden": true,
                                    "order": 13,
                                    "aggregation_type": "",
                                    "aggregation_raw_type": ""
                                },
                                {
                                    "id": 1159072,
                                    "field_id": 790548,
                                    "width": 189,
                                    "hidden": true,
                                    "order": 14,
                                    "aggregation_type": "",
                                    "aggregation_raw_type": ""
                                },
                                {
                                    "id": 1159073,
                                    "field_id": 790549,
                                    "width": 201,
                                    "hidden": true,
                                    "order": 15,
                                    "aggregation_type": "average",
                                    "aggregation_raw_type": "average"
                                },
                                {
                                    "id": 1159074,
                                    "field_id": 799288,
                                    "width": 184,
                                    "hidden": true,
                                    "order": 32767,
                                    "aggregation_type": "",
                                    "aggregation_raw_type": ""
                                },
                                {
                                    "id": 1159075,
                                    "field_id": 799367,
                                    "width": 166,
                                    "hidden": true,
                                    "order": 32767,
                                    "aggregation_type": "",
                                    "aggregation_raw_type": ""
                                }
                            ]
                        },
                        {
                            "id": 186361,
                            "type": "gallery",
                            "name": "Grocery items",
                            "order": 4,
                            "filter_type": "AND",
                            "filters_disabled": false,
                            "filters": [],
                            "sortings": [
                                {
                                    "id": 58386,
                                    "field_id": 790428,
                                    "order": "ASC"
                                }
                            ],
                            "decorations": [
                                {
                                    "id": 8646,
                                    "type": "background_color",
                                    "value_provider_type": "conditional_color",
                                    "value_provider_conf": {
                                        "colors": [
                                            {
                                                "color": "light-blue",
                                                "filters": [
                                                    {
                                                        "id": "b83b83d9-8df2-4e1c-92de-6287373cdaab",
                                                        "type": "boolean",
                                                        "field": 799288,
                                                        "value": ""
                                                    }
                                                ],
                                                "operator": "AND"
                                            }
                                        ]
                                    },
                                    "order": 1
                                },
                                {
                                    "id": 8647,
                                    "type": "left_border_color",
                                    "value_provider_type": "single_select_color",
                                    "value_provider_conf": {
                                        "field_id": 790472
                                    },
                                    "order": 2
                                }
                            ],
                            "public": false,
                            "card_cover_image_field_id": 790455,
                            "field_options": [
                                {
                                    "id": 90303,
                                    "field_id": 790428,
                                    "hidden": false,
                                    "order": 1
                                },
                                {
                                    "id": 90308,
                                    "field_id": 790469,
                                    "hidden": false,
                                    "order": 2
                                },
                                {
                                    "id": 90311,
                                    "field_id": 790472,
                                    "hidden": false,
                                    "order": 3
                                },
                                {
                                    "id": 90305,
                                    "field_id": 790453,
                                    "hidden": true,
                                    "order": 4
                                },
                                {
                                    "id": 90306,
                                    "field_id": 790454,
                                    "hidden": false,
                                    "order": 5
                                },
                                {
                                    "id": 90307,
                                    "field_id": 790455,
                                    "hidden": true,
                                    "order": 6
                                },
                                {
                                    "id": 90309,
                                    "field_id": 790470,
                                    "hidden": true,
                                    "order": 7
                                },
                                {
                                    "id": 90310,
                                    "field_id": 790471,
                                    "hidden": true,
                                    "order": 8
                                },
                                {
                                    "id": 90312,
                                    "field_id": 790473,
                                    "hidden": false,
                                    "order": 9
                                },
                                {
                                    "id": 90313,
                                    "field_id": 790474,
                                    "hidden": true,
                                    "order": 10
                                },
                                {
                                    "id": 90314,
                                    "field_id": 790537,
                                    "hidden": false,
                                    "order": 11
                                },
                                {
                                    "id": 90315,
                                    "field_id": 790539,
                                    "hidden": true,
                                    "order": 12
                                },
                                {
                                    "id": 90316,
                                    "field_id": 790541,
                                    "hidden": true,
                                    "order": 13
                                },
                                {
                                    "id": 90317,
                                    "field_id": 790543,
                                    "hidden": true,
                                    "order": 14
                                },
                                {
                                    "id": 90318,
                                    "field_id": 790548,
                                    "hidden": true,
                                    "order": 15
                                },
                                {
                                    "id": 90319,
                                    "field_id": 790549,
                                    "hidden": true,
                                    "order": 16
                                },
                                {
                                    "id": 91794,
                                    "field_id": 799288,
                                    "hidden": true,
                                    "order": 17
                                },
                                {
                                    "id": 91795,
                                    "field_id": 799367,
                                    "hidden": true,
                                    "order": 18
                                }
                            ]
                        },
                        {
                            "id": 187941,
                            "type": "gallery",
                            "name": "Grocery items to get",
                            "order": 5,
                            "filter_type": "AND",
                            "filters_disabled": false,
                            "filters": [
                                {
                                    "id": 74906,
                                    "field_id": 799288,
                                    "type": "boolean",
                                    "value": "1"
                                }
                            ],
                            "sortings": [
                                {
                                    "id": 59009,
                                    "field_id": 790428,
                                    "order": "ASC"
                                }
                            ],
                            "decorations": [
                                {
                                    "id": 8648,
                                    "type": "left_border_color",
                                    "value_provider_type": "single_select_color",
                                    "value_provider_conf": {
                                        "field_id": 790472
                                    },
                                    "order": 1
                                }
                            ],
                            "public": false,
                            "card_cover_image_field_id": 790455,
                            "field_options": [
                                {
                                    "id": 91796,
                                    "field_id": 790428,
                                    "hidden": false,
                                    "order": 1
                                },
                                {
                                    "id": 91797,
                                    "field_id": 790469,
                                    "hidden": false,
                                    "order": 2
                                },
                                {
                                    "id": 91798,
                                    "field_id": 790472,
                                    "hidden": false,
                                    "order": 3
                                },
                                {
                                    "id": 91799,
                                    "field_id": 790453,
                                    "hidden": true,
                                    "order": 4
                                },
                                {
                                    "id": 91800,
                                    "field_id": 790454,
                                    "hidden": false,
                                    "order": 5
                                },
                                {
                                    "id": 91801,
                                    "field_id": 790455,
                                    "hidden": true,
                                    "order": 6
                                },
                                {
                                    "id": 91802,
                                    "field_id": 790470,
                                    "hidden": true,
                                    "order": 7
                                },
                                {
                                    "id": 91803,
                                    "field_id": 790471,
                                    "hidden": true,
                                    "order": 8
                                },
                                {
                                    "id": 91804,
                                    "field_id": 790473,
                                    "hidden": false,
                                    "order": 9
                                },
                                {
                                    "id": 91805,
                                    "field_id": 790474,
                                    "hidden": true,
                                    "order": 10
                                },
                                {
                                    "id": 91806,
                                    "field_id": 790537,
                                    "hidden": false,
                                    "order": 11
                                },
                                {
                                    "id": 91807,
                                    "field_id": 790539,
                                    "hidden": true,
                                    "order": 12
                                },
                                {
                                    "id": 91808,
                                    "field_id": 790541,
                                    "hidden": true,
                                    "order": 13
                                },
                                {
                                    "id": 91809,
                                    "field_id": 790543,
                                    "hidden": true,
                                    "order": 14
                                },
                                {
                                    "id": 91810,
                                    "field_id": 790548,
                                    "hidden": true,
                                    "order": 15
                                },
                                {
                                    "id": 91811,
                                    "field_id": 790549,
                                    "hidden": true,
                                    "order": 16
                                },
                                {
                                    "id": 91812,
                                    "field_id": 799288,
                                    "hidden": true,
                                    "order": 17
                                },
                                {
                                    "id": 91813,
                                    "field_id": 799367,
                                    "hidden": true,
                                    "order": 18
                                }
                            ]
                        },
                        {
                            "id": 187944,
                            "type": "kanban",
                            "name": "Groceries by category",
                            "order": 6,
                            "filter_type": "AND",
                            "filters_disabled": false,
                            "filters": [],
                            "sortings": [],
                            "decorations": [
                                {
                                    "id": 8650,
                                    "type": "left_border_color",
                                    "value_provider_type": "single_select_color",
                                    "value_provider_conf": {
                                        "field_id": 790472
                                    },
                                    "order": 1
                                }
                            ],
                            "public": false,
                            "single_select_field_id": 790469,
                            "card_cover_image_field_id": 790455,
                            "field_options": [
                                {
                                    "id": 50775,
                                    "field_id": 790428,
                                    "hidden": false,
                                    "order": 1
                                },
                                {
                                    "id": 50776,
                                    "field_id": 790453,
                                    "hidden": false,
                                    "order": 2
                                },
                                {
                                    "id": 50777,
                                    "field_id": 790454,
                                    "hidden": false,
                                    "order": 3
                                },
                                {
                                    "id": 50782,
                                    "field_id": 790472,
                                    "hidden": false,
                                    "order": 4
                                },
                                {
                                    "id": 50779,
                                    "field_id": 790473,
                                    "hidden": false,
                                    "order": 5
                                },
                                {
                                    "id": 50780,
                                    "field_id": 790474,
                                    "hidden": false,
                                    "order": 6
                                },
                                {
                                    "id": 50781,
                                    "field_id": 790537,
                                    "hidden": false,
                                    "order": 7
                                },
                                {
                                    "id": 50778,
                                    "field_id": 790469,
                                    "hidden": true,
                                    "order": 8
                                },
                                {
                                    "id": 50783,
                                    "field_id": 790455,
                                    "hidden": true,
                                    "order": 9
                                },
                                {
                                    "id": 50784,
                                    "field_id": 790470,
                                    "hidden": true,
                                    "order": 10
                                },
                                {
                                    "id": 50785,
                                    "field_id": 790471,
                                    "hidden": true,
                                    "order": 11
                                },
                                {
                                    "id": 50786,
                                    "field_id": 790539,
                                    "hidden": true,
                                    "order": 12
                                },
                                {
                                    "id": 50787,
                                    "field_id": 790541,
                                    "hidden": true,
                                    "order": 13
                                },
                                {
                                    "id": 50788,
                                    "field_id": 790543,
                                    "hidden": true,
                                    "order": 14
                                },
                                {
                                    "id": 50789,
                                    "field_id": 790548,
                                    "hidden": true,
                                    "order": 15
                                },
                                {
                                    "id": 50790,
                                    "field_id": 790549,
                                    "hidden": true,
                                    "order": 16
                                },
                                {
                                    "id": 50791,
                                    "field_id": 799288,
                                    "hidden": true,
                                    "order": 17
                                },
                                {
                                    "id": 50792,
                                    "field_id": 799367,
                                    "hidden": true,
                                    "order": 18
                                }
                            ]
                        },
                        {
                            "id": 187942,
                            "type": "kanban",
                            "name": "Groceries by status",
                            "order": 7,
                            "filter_type": "AND",
                            "filters_disabled": false,
                            "filters": [],
                            "sortings": [],
                            "decorations": [
                                {
                                    "id": 8649,
                                    "type": "left_border_color",
                                    "value_provider_type": "single_select_color",
                                    "value_provider_conf": {
                                        "field_id": 790472
                                    },
                                    "order": 1
                                }
                            ],
                            "public": false,
                            "single_select_field_id": 790472,
                            "card_cover_image_field_id": 790455,
                            "field_options": [
                                {
                                    "id": 50757,
                                    "field_id": 790428,
                                    "hidden": false,
                                    "order": 1
                                },
                                {
                                    "id": 50758,
                                    "field_id": 790453,
                                    "hidden": false,
                                    "order": 2
                                },
                                {
                                    "id": 50759,
                                    "field_id": 790454,
                                    "hidden": false,
                                    "order": 3
                                },
                                {
                                    "id": 50761,
                                    "field_id": 790469,
                                    "hidden": false,
                                    "order": 4
                                },
                                {
                                    "id": 50765,
                                    "field_id": 790473,
                                    "hidden": false,
                                    "order": 5
                                },
                                {
                                    "id": 50766,
                                    "field_id": 790474,
                                    "hidden": false,
                                    "order": 6
                                },
                                {
                                    "id": 50767,
                                    "field_id": 790537,
                                    "hidden": false,
                                    "order": 7
                                },
                                {
                                    "id": 50764,
                                    "field_id": 790472,
                                    "hidden": true,
                                    "order": 8
                                },
                                {
                                    "id": 50760,
                                    "field_id": 790455,
                                    "hidden": true,
                                    "order": 9
                                },
                                {
                                    "id": 50762,
                                    "field_id": 790470,
                                    "hidden": true,
                                    "order": 10
                                },
                                {
                                    "id": 50763,
                                    "field_id": 790471,
                                    "hidden": true,
                                    "order": 11
                                },
                                {
                                    "id": 50768,
                                    "field_id": 790539,
                                    "hidden": true,
                                    "order": 12
                                },
                                {
                                    "id": 50769,
                                    "field_id": 790541,
                                    "hidden": true,
                                    "order": 13
                                },
                                {
                                    "id": 50770,
                                    "field_id": 790543,
                                    "hidden": true,
                                    "order": 14
                                },
                                {
                                    "id": 50771,
                                    "field_id": 790548,
                                    "hidden": true,
                                    "order": 15
                                },
                                {
                                    "id": 50772,
                                    "field_id": 790549,
                                    "hidden": true,
                                    "order": 16
                                },
                                {
                                    "id": 50773,
                                    "field_id": 799288,
                                    "hidden": true,
                                    "order": 17
                                },
                                {
                                    "id": 50774,
                                    "field_id": 799367,
                                    "hidden": true,
                                    "order": 18
                                }
                            ]
                        }
                    ],
                    "rows": [
                        {
                            "id": 1,
                            "order": "1.00000000000000000000",
                            "created_on": "2022-12-13T17:36:28.356593+00:00",
                            "updated_on": "2022-12-16T22:53:44.063921+00:00",
                            "field_790428": "Potatoes per kilogram",
                            "field_790453": "0.50",
                            "field_790454": null,
                            "field_790455": [
                                {
                                    "name": "rDHng9Kba2uul6WsNmIZIYIVnYmKk1Pa_c061a721480d46e793359381171660582cbbe9a95f39de9f5d2d646d32410b88.jpg",
                                    "visible_name": "potatoes.jpg",
                                    "original_name": "potatoes.jpg"
                                }
                            ],
                            "field_790469": 339710,
                            "field_790470": "A perennial plant in the nightshade family (Solanum tuberosum) that was first grown in South America and is now grown all over the world for its starchy tubers. Usually sold per kilogram in the market.",
                            "field_790471": null,
                            "field_790472": 339722,
                            "field_790473": "2.75",
                            "field_790474": null,
                            "field_790537": [
                                2
                            ],
                            "field_790539": null,
                            "field_790541": null,
                            "field_790543": [
                                1,
                                11,
                                13,
                                23,
                                24,
                                29
                            ],
                            "field_790548": [
                                1
                            ],
                            "field_790549": null,
                            "field_799288": null,
                            "field_799367": null
                        },
                        {
                            "id": 3,
                            "order": "3.00000000000000000000",
                            "created_on": "2022-12-13T17:41:36.674686+00:00",
                            "updated_on": "2022-12-14T18:24:59.243758+00:00",
                            "field_790428": "Leeks per kilogram",
                            "field_790453": "0.50",
                            "field_790454": null,
                            "field_790455": [
                                {
                                    "name": "RpBe5Tk7JFKquJyYn5unv6LyZFoGeitO_c8c8351f958de743c7f3867c5ac00a42726a306ee10867ee4f5257934afa8670.jpg",
                                    "visible_name": "leeks.jpg",
                                    "original_name": "leeks.jpg"
                                }
                            ],
                            "field_790469": 339710,
                            "field_790470": "This plant has dark green leaves and a thin bulb that looks like an onion. Pick the freshest.",
                            "field_790471": null,
                            "field_790472": 339721,
                            "field_790473": "1.55",
                            "field_790474": null,
                            "field_790537": [
                                2
                            ],
                            "field_790539": null,
                            "field_790541": null,
                            "field_790543": [
                                1,
                                13,
                                24,
                                29
                            ],
                            "field_790548": [
                                1
                            ],
                            "field_790549": null,
                            "field_799288": null,
                            "field_799367": null
                        },
                        {
                            "id": 4,
                            "order": "4.00000000000000000000",
                            "created_on": "2022-12-13T18:44:48.253897+00:00",
                            "updated_on": "2022-12-16T23:39:30.934339+00:00",
                            "field_790428": "Smoked mackerel per kilogram",
                            "field_790453": "0.25",
                            "field_790454": null,
                            "field_790455": [
                                {
                                    "name": "6VrNx70s8eSF6jiOZs1lPDnpHr7FjG5l_5c28622ad251fe12cb397b1e91144e32b985b12ec94428f8273e8d560aa1be23.jpg",
                                    "visible_name": "smoked_mackerel.jpg",
                                    "original_name": "smoked_mackerel.jpg"
                                }
                            ],
                            "field_790469": 339714,
                            "field_790470": "Small fatty Atlantic fish cured by smoking.",
                            "field_790471": "Choose the item with the longest expiration date.",
                            "field_790472": 339722,
                            "field_790473": "17.80",
                            "field_790474": null,
                            "field_790537": [
                                2
                            ],
                            "field_790539": null,
                            "field_790541": null,
                            "field_790543": [
                                1,
                                13,
                                24,
                                29
                            ],
                            "field_790548": [
                                1
                            ],
                            "field_790549": null,
                            "field_799288": null,
                            "field_799367": null
                        },
                        {
                            "id": 5,
                            "order": "5.00000000000000000000",
                            "created_on": "2022-12-13T18:44:49.047023+00:00",
                            "updated_on": "2022-12-17T10:24:30.930443+00:00",
                            "field_790428": "Eggs per piece",
                            "field_790453": "20.00",
                            "field_790454": null,
                            "field_790455": [
                                {
                                    "name": "X7MBuTS2iraZVOzaPkRe7f8xjXbXHKOL_b1ffb9fa3eb816bd7c0027724fcf45d72f583c7bf958980b50819cfe6bfbfba7.jpg",
                                    "visible_name": "eggs.jpg",
                                    "original_name": "eggs.jpg"
                                }
                            ],
                            "field_790469": 339715,
                            "field_790470": "Eggs with the USDA's National Organic Program label come from hens that are not kept in cages and have access to the outdoors. The hens are fed organic feed that is made without using pesticides or fertilizers.",
                            "field_790471": "Sometimes they are sold per piece.",
                            "field_790472": 339721,
                            "field_790473": "0.40",
                            "field_790474": null,
                            "field_790537": [
                                2
                            ],
                            "field_790539": null,
                            "field_790541": null,
                            "field_790543": [
                                1,
                                2,
                                10,
                                11,
                                13,
                                14,
                                22,
                                23,
                                24,
                                25,
                                29,
                                30
                            ],
                            "field_790548": [
                                1
                            ],
                            "field_790549": null,
                            "field_799288": null,
                            "field_799367": null
                        },
                        {
                            "id": 6,
                            "order": "6.00000000000000000000",
                            "created_on": "2022-12-13T18:44:51.111243+00:00",
                            "updated_on": "2022-12-16T23:39:26.828395+00:00",
                            "field_790428": "Horseradish per kilogram",
                            "field_790453": "0.25",
                            "field_790454": null,
                            "field_790455": [
                                {
                                    "name": "srZqqOaYDSmuqqKifuh4qekuxQKgCX4M_448a0bf74778b02b0dfdfe3d63db6e739ee910c750210779a7905ec1d873fbe1.jpg",
                                    "visible_name": "horseradish.jpg",
                                    "original_name": "horseradish.jpg"
                                }
                            ],
                            "field_790469": 339710,
                            "field_790470": "A coarse Eurasian plant in the mustard family with a thick, white, pungent root, large leaves at the base, and white flowers in a panicle at the top.",
                            "field_790471": "",
                            "field_790472": 339722,
                            "field_790473": "5.00",
                            "field_790474": null,
                            "field_790537": [
                                2
                            ],
                            "field_790539": null,
                            "field_790541": null,
                            "field_790543": [
                                1,
                                13,
                                24,
                                29
                            ],
                            "field_790548": [
                                1
                            ],
                            "field_790549": null,
                            "field_799288": null,
                            "field_799367": null
                        },
                        {
                            "id": 7,
                            "order": "7.00000000000000000000",
                            "created_on": "2022-12-13T18:44:52.018765+00:00",
                            "updated_on": "2022-12-14T18:32:38.050385+00:00",
                            "field_790428": "Cherry tomatoes 400g can",
                            "field_790453": "2.00",
                            "field_790454": null,
                            "field_790455": [
                                {
                                    "name": "eTUdiY1gsCHlTaNvBWwfkkAoDQKD84Y4_845e0ed70bb81a38f825973e9379180433c3667ea6b0470cfa511de7f63156f8.jpg",
                                    "visible_name": "cherry_tomatoes.jpg",
                                    "original_name": "cherry_tomatoes.jpg"
                                }
                            ],
                            "field_790469": 339709,
                            "field_790470": "A type of tomato with small fruits that range from red to yellow. It looks like little tomatoes.",
                            "field_790471": "",
                            "field_790472": 339721,
                            "field_790473": "2.00",
                            "field_790474": null,
                            "field_790537": [
                                2
                            ],
                            "field_790539": null,
                            "field_790541": null,
                            "field_790543": [
                                2,
                                12,
                                14,
                                25,
                                30
                            ],
                            "field_790548": [
                                3,
                                7
                            ],
                            "field_790549": null,
                            "field_799288": null,
                            "field_799367": null
                        },
                        {
                            "id": 8,
                            "order": "8.00000000000000000000",
                            "created_on": "2022-12-13T18:44:53.827484+00:00",
                            "updated_on": "2022-12-14T18:49:39.574972+00:00",
                            "field_790428": "Mixed bean salad 400g can",
                            "field_790453": "1.00",
                            "field_790454": null,
                            "field_790455": [
                                {
                                    "name": "hO6pctPqsjWE2nSRT8cFHbjxsVkGLBKN_ddc0c7b8c344b3d882e0fb1eebb1ccde4eb8db09a10ee828ad11cbbac3d223c8.jpg",
                                    "visible_name": "mixed_beans_salad.jpg",
                                    "original_name": "mixed_beans_salad.jpg"
                                }
                            ],
                            "field_790469": 339710,
                            "field_790470": "A combination of three or more beans with greens in a single package.",
                            "field_790471": "Check the expiry date.",
                            "field_790472": 339721,
                            "field_790473": "2.25",
                            "field_790474": null,
                            "field_790537": [
                                2
                            ],
                            "field_790539": null,
                            "field_790541": null,
                            "field_790543": [
                                2,
                                5,
                                14,
                                17,
                                25,
                                28,
                                30,
                                33
                            ],
                            "field_790548": [
                                3,
                                7
                            ],
                            "field_790549": null,
                            "field_799288": null,
                            "field_799367": null
                        },
                        {
                            "id": 9,
                            "order": "9.00000000000000000000",
                            "created_on": "2022-12-13T18:55:25.855725+00:00",
                            "updated_on": "2022-12-16T23:39:45.250696+00:00",
                            "field_790428": "Smoked ham per kilogram",
                            "field_790453": "0.50",
                            "field_790454": null,
                            "field_790455": [
                                {
                                    "name": "rqxxGP5Kr8BV5W28YFWtETShMFQqm3Wd_519c9d49ff894b9d0d941c87c60564cbc5fc6a5f713fb6dbd273d4d28de7d7c1.jpg",
                                    "visible_name": "smoked_ham.jpg",
                                    "original_name": "smoked_ham.jpg"
                                }
                            ],
                            "field_790469": 339714,
                            "field_790470": "A cut of pork from the thigh, which is often salted or smoked to make it taste better.",
                            "field_790471": "",
                            "field_790472": 339722,
                            "field_790473": "8.00",
                            "field_790474": null,
                            "field_790537": [
                                2
                            ],
                            "field_790539": null,
                            "field_790541": null,
                            "field_790543": [
                                2,
                                12,
                                14,
                                25,
                                30
                            ],
                            "field_790548": [
                                3,
                                7
                            ],
                            "field_790549": null,
                            "field_799288": null,
                            "field_799367": null
                        },
                        {
                            "id": 10,
                            "order": "9.00000000000000000000",
                            "created_on": "2022-12-13T18:55:26.762193+00:00",
                            "updated_on": "2022-12-16T23:40:23.971334+00:00",
                            "field_790428": "Wholemeal rye bread per pack",
                            "field_790453": "1.00",
                            "field_790454": null,
                            "field_790455": [
                                {
                                    "name": "FKI2TtGtoYJQCCMHbSqfHRFtSh91uTlA_e3250a32e2ec64edbd785099b90b3e7fe138476105af44797c94556539532fbf.jpg",
                                    "visible_name": "wholemeal_rye_bread.jpg",
                                    "original_name": "wholemeal_rye_bread.jpg"
                                }
                            ],
                            "field_790469": 339711,
                            "field_790470": "Wholemeal means that both the soft inner part of the grain head (called the endosperm) and the harder outer layer that protects it are used.",
                            "field_790471": "",
                            "field_790472": 339722,
                            "field_790473": "2.35",
                            "field_790474": null,
                            "field_790537": [
                                2
                            ],
                            "field_790539": null,
                            "field_790541": null,
                            "field_790543": [
                                2,
                                14,
                                25,
                                30
                            ],
                            "field_790548": [],
                            "field_790549": null,
                            "field_799288": null,
                            "field_799367": null
                        },
                        {
                            "id": 11,
                            "order": "10.00000000000000000000",
                            "created_on": "2022-12-13T18:55:27.887630+00:00",
                            "updated_on": "2022-12-16T23:39:50.663129+00:00",
                            "field_790428": "Chicken breasts per piece",
                            "field_790453": "2.00",
                            "field_790454": null,
                            "field_790455": [
                                {
                                    "name": "q5hxFLKWYbfzdNkumpYkxmaPA9GzwUOs_a5a9b49c398af007d9936f7aa8735095713384b10da34c327520d80bd7a7df37.jpg",
                                    "visible_name": "chicken_breasts.jpg",
                                    "original_name": "chicken_breasts.jpg"
                                }
                            ],
                            "field_790469": 339714,
                            "field_790470": "People like chicken breasts because they are lean and have a lot of protein. White meat is good for your health because it has zinc, potassium, vitamin B-6, niacin, and magnesium.",
                            "field_790471": "",
                            "field_790472": 339722,
                            "field_790473": "0.95",
                            "field_790474": null,
                            "field_790537": [
                                2
                            ],
                            "field_790539": null,
                            "field_790541": null,
                            "field_790543": [
                                3,
                                15,
                                26,
                                31
                            ],
                            "field_790548": [
                                3,
                                7
                            ],
                            "field_790549": null,
                            "field_799288": null,
                            "field_799367": null
                        },
                        {
                            "id": 12,
                            "order": "11.00000000000000000000",
                            "created_on": "2022-12-13T18:55:28.851335+00:00",
                            "updated_on": "2022-12-16T23:40:28.673404+00:00",
                            "field_790428": "Puff pastry 320g sheet",
                            "field_790453": "1.00",
                            "field_790454": null,
                            "field_790455": [
                                {
                                    "name": "dktjfhKCQpR0K2SnaZSeCqQtl8Iqb3jw_09dd1df4683e7e7f6faa8133b09e0ec69990963251965223a89a8c1b0b24dde7.jpg",
                                    "visible_name": "puff_pastry.jpg",
                                    "original_name": "puff_pastry.jpg"
                                }
                            ],
                            "field_790469": 339711,
                            "field_790470": "A light, flaky pastry made by rolling and folding the dough around chunks of butter or other fat so that it expands when cooked.",
                            "field_790471": "",
                            "field_790472": 339722,
                            "field_790473": "5.55",
                            "field_790474": null,
                            "field_790537": [
                                2
                            ],
                            "field_790539": null,
                            "field_790541": null,
                            "field_790543": [
                                3,
                                15,
                                26,
                                31
                            ],
                            "field_790548": [
                                3,
                                7
                            ],
                            "field_790549": null,
                            "field_799288": null,
                            "field_799367": null
                        },
                        {
                            "id": 13,
                            "order": "12.00000000000000000000",
                            "created_on": "2022-12-13T19:55:30.423674+00:00",
                            "updated_on": "2022-12-14T18:44:58.820555+00:00",
                            "field_790428": "Garlic and herb cream cheese per pack",
                            "field_790453": "1.00",
                            "field_790454": null,
                            "field_790455": [
                                {
                                    "name": "apEBM8S8h3PUfEUvjYjWvil0UwFYIhgY_bcd8db791f72fbe622a5b153f9e73fe082cf1cf2e84e184f0abde2ee49fe3034.jpg",
                                    "visible_name": "garlic_and_herb_cream_cheese.jpg",
                                    "original_name": "garlic_and_herb_cream_cheese.jpg"
                                }
                            ],
                            "field_790469": 339715,
                            "field_790470": "Garlic and herb cream cheese is a combination of a variety of herbs with garlic added for flavor, mixed with cream cheese.",
                            "field_790471": "",
                            "field_790472": 339721,
                            "field_790473": "4.35",
                            "field_790474": null,
                            "field_790537": [
                                2
                            ],
                            "field_790539": null,
                            "field_790541": null,
                            "field_790543": [
                                3,
                                12,
                                15,
                                26,
                                31
                            ],
                            "field_790548": [
                                3,
                                7
                            ],
                            "field_790549": null,
                            "field_799288": null,
                            "field_799367": null
                        },
                        {
                            "id": 14,
                            "order": "12.00000000000000000000",
                            "created_on": "2022-12-13T19:55:30.697399+00:00",
                            "updated_on": "2022-12-14T18:47:47.896069+00:00",
                            "field_790428": "Lemons per bag",
                            "field_790453": "0.50",
                            "field_790454": null,
                            "field_790455": [
                                {
                                    "name": "02JDNrXetBfoZcfqDdwEH53frMnVNavO_643644b39025d979113c5f7cab2367aa173edbd5c87bf0321060763d719f44c7.jpg",
                                    "visible_name": "lemons.jpg",
                                    "original_name": "lemons.jpg"
                                }
                            ],
                            "field_790469": 339709,
                            "field_790470": "The yellow, oval fruit of this tree has an aromatic rind and a juicy, acidic pulp that is high in vitamin C. Its peel is zesty.",
                            "field_790471": "",
                            "field_790472": 339721,
                            "field_790473": "0.55",
                            "field_790474": null,
                            "field_790537": [
                                2
                            ],
                            "field_790539": null,
                            "field_790541": null,
                            "field_790543": [
                                3,
                                11,
                                15,
                                23,
                                26,
                                31
                            ],
                            "field_790548": [
                                3,
                                7
                            ],
                            "field_790549": null,
                            "field_799288": null,
                            "field_799367": null
                        },
                        {
                            "id": 15,
                            "order": "13.00000000000000000000",
                            "created_on": "2022-12-13T19:55:31.502671+00:00",
                            "updated_on": "2022-12-14T18:49:01.502122+00:00",
                            "field_790428": "Olive oil 750mL bottle",
                            "field_790453": "1.00",
                            "field_790454": null,
                            "field_790455": [
                                {
                                    "name": "9XiOqFggaB3rNSUcMuXerDOL9mGehn3o_9dbc7e863115653587b7141ad517a2823c71941aaad99d1a3bcdee151b26ff18.jpg",
                                    "visible_name": "olive_oil.jpg",
                                    "original_name": "olive_oil.jpg"
                                }
                            ],
                            "field_790469": 339715,
                            "field_790470": "Olive oil is made by pressing olives. It is used in salad dressings, in cooking, as a part of cosmetics, and as a moisturizer.",
                            "field_790471": "",
                            "field_790472": 339721,
                            "field_790473": "3.15",
                            "field_790474": null,
                            "field_790537": [
                                2
                            ],
                            "field_790539": null,
                            "field_790541": null,
                            "field_790543": [
                                3,
                                4,
                                11,
                                15,
                                16,
                                23,
                                26,
                                27,
                                31,
                                32
                            ],
                            "field_790548": [
                                3,
                                7
                            ],
                            "field_790549": null,
                            "field_799288": null,
                            "field_799367": null
                        },
                        {
                            "id": 16,
                            "order": "14.00000000000000000000",
                            "created_on": "2022-12-13T19:55:32.784408+00:00",
                            "updated_on": "2022-12-14T18:49:52.523482+00:00",
                            "field_790428": "Mixed green beans per 200g pack",
                            "field_790453": "2.00",
                            "field_790454": null,
                            "field_790455": [
                                {
                                    "name": "03Ik56JcUNTFeHKcb2nMJmax9niFeHu5_a0e8e6e1ffb61f55914b77e1c2099894a8b39f1e7f921f029b200f9e26012186.jpg",
                                    "visible_name": "mixed_green_beans.jpg",
                                    "original_name": "mixed_green_beans.jpg"
                                }
                            ],
                            "field_790469": 339710,
                            "field_790470": "A combination of three or more green beans in a single package.",
                            "field_790471": "",
                            "field_790472": 339721,
                            "field_790473": "0.95",
                            "field_790474": null,
                            "field_790537": [
                                2
                            ],
                            "field_790539": null,
                            "field_790541": null,
                            "field_790543": [
                                3,
                                15,
                                26,
                                31
                            ],
                            "field_790548": [
                                3,
                                7
                            ],
                            "field_790549": null,
                            "field_799288": null,
                            "field_799367": null
                        },
                        {
                            "id": 17,
                            "order": "14.00000000000000000000",
                            "created_on": "2022-12-13T19:55:33.613108+00:00",
                            "updated_on": "2022-12-14T18:52:32.835628+00:00",
                            "field_790428": "Roasted red pepper per small jar",
                            "field_790453": "1.00",
                            "field_790454": null,
                            "field_790455": [
                                {
                                    "name": "F57lUueQ9Vff0K8w1Pwr6jqrlZhX2Ri1_05d9e26b6ecea660d4296dc3821fb9414d8923b65ce95ea8308be6b78fe168a3.jpg",
                                    "visible_name": "roasted_red_pepper.jpg",
                                    "original_name": "roasted_red_pepper.jpg"
                                }
                            ],
                            "field_790469": 339715,
                            "field_790470": "Roasted red bell peppers. Red peppers can be roasted in different ways. They can be cooked by holding them over an open flame, like the flame of a gas burner on the stove, or by putting them on a grill, under a broiler, or sautéing them in a pan. The peppers are roasted until the outsides are black and the skin has started to bubble. After they are roasted, the skins are taken off and the insides are cut open to get the seeds out.",
                            "field_790471": "Usually purchased in small jars.",
                            "field_790472": 339721,
                            "field_790473": "1.85",
                            "field_790474": null,
                            "field_790537": [
                                2
                            ],
                            "field_790539": null,
                            "field_790541": null,
                            "field_790543": [
                                4,
                                12,
                                16,
                                27,
                                32
                            ],
                            "field_790548": [],
                            "field_790549": null,
                            "field_799288": null,
                            "field_799367": null
                        },
                        {
                            "id": 18,
                            "order": "15.00000000000000000000",
                            "created_on": "2022-12-13T19:57:54.450093+00:00",
                            "updated_on": "2022-12-14T18:54:12.362795+00:00",
                            "field_790428": "Toasted walnuts per 50g bag",
                            "field_790453": "1.00",
                            "field_790454": null,
                            "field_790455": [
                                {
                                    "name": "9VRQwKTOSwre648p1Y1x6FEFX7ls7vfp_a15c2c379acf680428ce5dd042e64ae5e4fb52bb71f753024bcb6a933e11d44e.jpg",
                                    "visible_name": "toasted_walnuts.jpg",
                                    "original_name": "toasted_walnuts.jpg"
                                }
                            ],
                            "field_790469": 339715,
                            "field_790470": "Toasting walnuts is a great way to give many dishes more texture and depth of flavor. When you toast walnuts in the oven, they get buttery, golden, and very crunchy. High heat brings out the naturally nutty smell, which makes salads, desserts, and side dishes taste great.",
                            "field_790471": "",
                            "field_790472": 339721,
                            "field_790473": "7.45",
                            "field_790474": null,
                            "field_790537": [
                                2
                            ],
                            "field_790539": null,
                            "field_790541": null,
                            "field_790543": [
                                4,
                                12,
                                16,
                                27,
                                32
                            ],
                            "field_790548": [],
                            "field_790549": null,
                            "field_799288": null,
                            "field_799367": null
                        },
                        {
                            "id": 19,
                            "order": "16.00000000000000000000",
                            "created_on": "2022-12-13T19:57:55.499905+00:00",
                            "updated_on": "2022-12-14T18:55:49.998569+00:00",
                            "field_790428": "Garlic cloves per small sachet",
                            "field_790453": "1.00",
                            "field_790454": null,
                            "field_790455": [
                                {
                                    "name": "jgBnmfqzcrRrEae9bH6Ercn8SX6u4AeO_905b4dab38fb56a43b1a695a06c0905aad64fd06fbe72f038477b4a940e4205e.jpg",
                                    "visible_name": "garlic_cloves.jpg",
                                    "original_name": "garlic_cloves.jpg"
                                }
                            ],
                            "field_790469": 339715,
                            "field_790470": "A spice made from an aromatic bulb. A clove of garlic is one of the small bulbs that can be broken off the center of a larger bulb of garlic. Most of the time, they come in clear plastic bags.",
                            "field_790471": "",
                            "field_790472": 339721,
                            "field_790473": "1.35",
                            "field_790474": null,
                            "field_790537": [
                                2
                            ],
                            "field_790539": null,
                            "field_790541": null,
                            "field_790543": [
                                4,
                                11,
                                16,
                                23,
                                27,
                                32
                            ],
                            "field_790548": [
                                3,
                                7
                            ],
                            "field_790549": null,
                            "field_799288": null,
                            "field_799367": null
                        },
                        {
                            "id": 20,
                            "order": "17.00000000000000000000",
                            "created_on": "2022-12-13T19:57:56.501548+00:00",
                            "updated_on": "2022-12-14T18:57:26.405291+00:00",
                            "field_790428": "Linguine per 500g pack",
                            "field_790453": "1.00",
                            "field_790454": null,
                            "field_790455": [
                                {
                                    "name": "QGckIEnKbOAuPCPcrkhGRIgc5HANYb5W_d0672286b3cf3e6504b98f7b39e6fe2d54b3d8cd18b6bc2cc786d23404adaff4.jpg",
                                    "visible_name": "linguine.jpg",
                                    "original_name": "linguine.jpg"
                                }
                            ],
                            "field_790469": 339713,
                            "field_790470": "Long, flat, thin strands of pasta.",
                            "field_790471": "Make sure the package doesn't have any holes.",
                            "field_790472": 339721,
                            "field_790473": "5.75",
                            "field_790474": null,
                            "field_790537": [
                                2
                            ],
                            "field_790539": null,
                            "field_790541": null,
                            "field_790543": [
                                4,
                                12,
                                16,
                                27,
                                32
                            ],
                            "field_790548": [],
                            "field_790549": null,
                            "field_799288": null,
                            "field_799367": null
                        },
                        {
                            "id": 21,
                            "order": "18.00000000000000000000",
                            "created_on": "2022-12-13T19:57:57.512369+00:00",
                            "updated_on": "2022-12-14T18:59:27.032602+00:00",
                            "field_790428": "Parmesan cheese 250g pack",
                            "field_790453": "1.00",
                            "field_790454": null,
                            "field_790455": [
                                {
                                    "name": "R19m65OGahvQwdkaplfGcMJ5tl8ISYBx_7d7324763801d26c5937462747f58b666eeb6be01ab09ae35e959a34cedb6f89.jpg",
                                    "visible_name": "parmesan_cheese.jpg",
                                    "original_name": "parmesan_cheese.jpg"
                                }
                            ],
                            "field_790469": 339712,
                            "field_790470": "Parmesan cheese is a hard, dry cheese made from skimmed milk. It is used grated, especially on pasta dishes and soups.",
                            "field_790471": "Check the production date.",
                            "field_790472": 339721,
                            "field_790473": "2.35",
                            "field_790474": null,
                            "field_790537": [
                                2
                            ],
                            "field_790539": null,
                            "field_790541": null,
                            "field_790543": [
                                4,
                                10,
                                12,
                                16,
                                22,
                                27,
                                32
                            ],
                            "field_790548": [],
                            "field_790549": null,
                            "field_799288": null,
                            "field_799367": null
                        },
                        {
                            "id": 22,
                            "order": "19.00000000000000000000",
                            "created_on": "2022-12-13T19:57:58.858884+00:00",
                            "updated_on": "2022-12-14T19:02:06.835955+00:00",
                            "field_790428": "Kidney beans in chili sauce 400g can",
                            "field_790453": "1.00",
                            "field_790454": null,
                            "field_790455": [
                                {
                                    "name": "JcxiwHW2PF8GUPK8i2pc01OQJCxVhZov_c8d91ef78dda72e43cb3053eab24cc2beba58882e5f2269c0e973ccfe4bf3863.jpg",
                                    "visible_name": "kidney_beans_in_chili_sauce.jpg",
                                    "original_name": "kidney_beans_in_chili_sauce.jpg"
                                }
                            ],
                            "field_790469": 339715,
                            "field_790470": "Tomatoes, Water, Starch, Sugar, Chilli Powder, Paprika, Cumin, Black Pepper, Onion Powder, Garlic Powder, Coriander, Basil, Thyme, Oregano, Salt, and red kidney beans.",
                            "field_790471": "",
                            "field_790472": 339721,
                            "field_790473": "1.78",
                            "field_790474": null,
                            "field_790537": [
                                2
                            ],
                            "field_790539": null,
                            "field_790541": null,
                            "field_790543": [
                                5,
                                17,
                                28,
                                33
                            ],
                            "field_790548": [
                                3,
                                7
                            ],
                            "field_790549": null,
                            "field_799288": null,
                            "field_799367": null
                        },
                        {
                            "id": 23,
                            "order": "20.00000000000000000000",
                            "created_on": "2022-12-13T19:58:02.237936+00:00",
                            "updated_on": "2022-12-14T19:04:36.369226+00:00",
                            "field_790428": "Tomatoes per kilogram",
                            "field_790453": "0.50",
                            "field_790454": null,
                            "field_790455": [
                                {
                                    "name": "7uqwFgdkQCARjHDagQehaaCcRkalZcbA_822ace2d8159e693377f44f2db5cddb26b1da6f3984e4266271446d59ee3e4bc.jpg",
                                    "visible_name": "tomatoes.jpg",
                                    "original_name": "tomatoes.jpg"
                                }
                            ],
                            "field_790469": 339709,
                            "field_790470": "A plant in the nightshade family that is grown in many places and has edible, fleshy, and usually red fruit. The tomato is from northern South America, which is also where it was first grown for food.",
                            "field_790471": "Don't pick the ones that are already too ripe.",
                            "field_790472": 339721,
                            "field_790473": "4.35",
                            "field_790474": null,
                            "field_790537": [
                                2
                            ],
                            "field_790539": null,
                            "field_790541": null,
                            "field_790543": [
                                5,
                                12,
                                17,
                                28,
                                33
                            ],
                            "field_790548": [],
                            "field_790549": null,
                            "field_799288": null,
                            "field_799367": null
                        },
                        {
                            "id": 24,
                            "order": "21.00000000000000000000",
                            "created_on": "2022-12-13T20:00:47.208951+00:00",
                            "updated_on": "2022-12-14T19:08:24.539029+00:00",
                            "field_790428": "Ready-to-eat mixed grain per pouch",
                            "field_790453": "1.00",
                            "field_790454": null,
                            "field_790455": [
                                {
                                    "name": "oqqUtU9Bj7js2npEOV4DdAw5leMtiEPh_e8ab6ae4b623cb7070a1ea16556838e148678a209df90400cb04e5eb1f1c4027.jpg",
                                    "visible_name": "ready_to_eat_mixed_grain.jpg",
                                    "original_name": "ready_to_eat_mixed_grain.jpg"
                                }
                            ],
                            "field_790469": 339713,
                            "field_790470": "Mixed grain is any combination of wild oats, triticale, barley, wheat, rye, oats, and ready-to-eat domestic or wild oat groats.",
                            "field_790471": "",
                            "field_790472": 339721,
                            "field_790473": "11.50",
                            "field_790474": null,
                            "field_790537": [
                                2
                            ],
                            "field_790539": null,
                            "field_790541": null,
                            "field_790543": [
                                5,
                                17,
                                28,
                                33
                            ],
                            "field_790548": [
                                3,
                                7
                            ],
                            "field_790549": null,
                            "field_799288": null,
                            "field_799367": null
                        },
                        {
                            "id": 25,
                            "order": "22.00000000000000000000",
                            "created_on": "2022-12-13T20:00:48.067733+00:00",
                            "updated_on": "2022-12-17T10:23:05.498813+00:00",
                            "field_790428": "Penne per 250g pack",
                            "field_790453": "3.00",
                            "field_790454": null,
                            "field_790455": [
                                {
                                    "name": "Vp3p9mnj0KD8zVlSjB71hCjEBZuwXj6f_5b00f67e78b9a55b690e0335ac01fe6c2fda4b36791e9900f4842d87483400c7.jpg",
                                    "visible_name": "penne.jpg",
                                    "original_name": "penne.jpg"
                                }
                            ],
                            "field_790469": 339713,
                            "field_790470": "Pasta in small short tubes with diagonally cut ends.",
                            "field_790471": "Make sure the package doesn't have any holes.",
                            "field_790472": 350394,
                            "field_790473": "1.89",
                            "field_790474": null,
                            "field_790537": [
                                2
                            ],
                            "field_790539": null,
                            "field_790541": null,
                            "field_790543": [
                                6,
                                7,
                                10,
                                18,
                                19,
                                22
                            ],
                            "field_790548": [
                                6
                            ],
                            "field_790549": null,
                            "field_799288": null,
                            "field_799367": null
                        },
                        {
                            "id": 26,
                            "order": "23.00000000000000000000",
                            "created_on": "2022-12-13T20:00:49.055969+00:00",
                            "updated_on": "2022-12-17T10:23:06.778196+00:00",
                            "field_790428": "Salmon fillets per fillet",
                            "field_790453": "2.00",
                            "field_790454": null,
                            "field_790455": [
                                {
                                    "name": "2uq9eoUMa33vezhpmeYJl82rzJfboaqb_8fd80df57ca9d2cbbc82dd70beb4c678728b721041cae97b32567448714f6287.jpg",
                                    "visible_name": "salmon_fillets.jpg",
                                    "original_name": "salmon_fillets.jpg"
                                }
                            ],
                            "field_790469": 339714,
                            "field_790470": "Salmon is a large salmonid fish from the genera Oncorhynchus and Salmo. It is a food fish and a game fish. It has pink or red flesh, and when it's time to spawn, it swims from salt water to fresh water.",
                            "field_790471": "",
                            "field_790472": 350394,
                            "field_790473": "1.25",
                            "field_790474": null,
                            "field_790537": [
                                2
                            ],
                            "field_790539": null,
                            "field_790541": null,
                            "field_790543": [
                                6,
                                18
                            ],
                            "field_790548": [],
                            "field_790549": null,
                            "field_799288": null,
                            "field_799367": null
                        },
                        {
                            "id": 27,
                            "order": "24.00000000000000000000",
                            "created_on": "2022-12-13T20:00:51.186720+00:00",
                            "updated_on": "2022-12-17T20:45:02.284960+00:00",
                            "field_790428": "Dried tomatoes per 100g pack",
                            "field_790453": "1.00",
                            "field_790454": null,
                            "field_790455": [
                                {
                                    "name": "MW7AC2rtzFktagdtntptUFVrTh3PLzmN_98224dca7236c112743d414c23be81d109b9c8d5066c84464b311afbac4f9c59.jpg",
                                    "visible_name": "dried_tomatoes.jpg",
                                    "original_name": "dried_tomatoes.jpg"
                                }
                            ],
                            "field_790469": 339709,
                            "field_790470": "Dried tomatoes are ripe tomatoes that have lost the majority of their water content throughout the drying process. Before being exposed to the sun, these tomatoes are typically treated with sulfur dioxide or salt to improve their color and look.",
                            "field_790471": "",
                            "field_790472": 339721,
                            "field_790473": "5.55",
                            "field_790474": null,
                            "field_790537": [
                                2
                            ],
                            "field_790539": null,
                            "field_790541": null,
                            "field_790543": [
                                6,
                                12,
                                18
                            ],
                            "field_790548": [
                                3,
                                7
                            ],
                            "field_790549": null,
                            "field_799288": null,
                            "field_799367": null
                        },
                        {
                            "id": 28,
                            "order": "25.00000000000000000000",
                            "created_on": "2022-12-13T20:02:36.344857+00:00",
                            "updated_on": "2022-12-14T19:14:50.572954+00:00",
                            "field_790428": "Spinach per 100g bag",
                            "field_790453": "2.00",
                            "field_790454": null,
                            "field_790455": [
                                {
                                    "name": "o0CobGsuNdTqZEYXgdG3PKaTexGxIMA8_421a89451f8a5c5ca9349dd89fe5d79b3405ede04c39341b428acb4cef3890c8.jpg",
                                    "visible_name": "spinach.jpg",
                                    "original_name": "spinach.jpg"
                                }
                            ],
                            "field_790469": 339710,
                            "field_790470": "Spinach is a plant of the goosefoot family, cultivated for its edible, wrinkly or flat leaves.",
                            "field_790471": "Check the leaves for damages.",
                            "field_790472": 339721,
                            "field_790473": "2.57",
                            "field_790474": null,
                            "field_790537": [
                                2
                            ],
                            "field_790539": null,
                            "field_790541": null,
                            "field_790543": [
                                2,
                                6,
                                14,
                                18,
                                25,
                                30
                            ],
                            "field_790548": [],
                            "field_790549": null,
                            "field_799288": null,
                            "field_799367": null
                        },
                        {
                            "id": 29,
                            "order": "26.00000000000000000000",
                            "created_on": "2022-12-13T20:03:06.666578+00:00",
                            "updated_on": "2022-12-17T10:23:09.583685+00:00",
                            "field_790428": "Rapeseed oil per 250g bottle",
                            "field_790453": "1.00",
                            "field_790454": null,
                            "field_790455": [
                                {
                                    "name": "zWVK0o7zenzxRM4kheyACjBRkryAo0Wz_f913a7eec7779916378360c61e9ae84532c3a94be4e42e718edade27c8177780.jpg",
                                    "visible_name": "rapeseed_oil.jpg",
                                    "original_name": "rapeseed_oil.jpg"
                                }
                            ],
                            "field_790469": 339715,
                            "field_790470": "Appetizing golden to brown oil extracted from rapeseed.",
                            "field_790471": "",
                            "field_790472": 350394,
                            "field_790473": "12.00",
                            "field_790474": null,
                            "field_790537": [
                                2
                            ],
                            "field_790539": null,
                            "field_790541": null,
                            "field_790543": [
                                7,
                                19
                            ],
                            "field_790548": [
                                6
                            ],
                            "field_790549": null,
                            "field_799288": null,
                            "field_799367": null
                        },
                        {
                            "id": 30,
                            "order": "27.00000000000000000000",
                            "created_on": "2022-12-13T20:03:08.938323+00:00",
                            "updated_on": "2022-12-17T20:45:45.901632+00:00",
                            "field_790428": "Red onions per 250g bag",
                            "field_790453": "1.00",
                            "field_790454": null,
                            "field_790455": [
                                {
                                    "name": "Rn6p8wxPjLg1M6UshFQwzHoLImfgnztr_6a7a895a2ebadfab6b60d5f4d68d11053597ffdac4131a847d4b2821e2b4a200.jpg",
                                    "visible_name": "red_onions.jpg",
                                    "original_name": "red_onions.jpg"
                                }
                            ],
                            "field_790469": 339710,
                            "field_790470": "Red onions are a flat, mild onion with purple-colored skins that are used as a garnish for burgers and salads.",
                            "field_790471": "",
                            "field_790472": 339721,
                            "field_790473": "0.85",
                            "field_790474": null,
                            "field_790537": [
                                2
                            ],
                            "field_790539": null,
                            "field_790541": null,
                            "field_790543": [
                                7,
                                19
                            ],
                            "field_790548": [
                                3,
                                7,
                                6
                            ],
                            "field_790549": null,
                            "field_799288": null,
                            "field_799367": null
                        },
                        {
                            "id": 31,
                            "order": "28.00000000000000000000",
                            "created_on": "2022-12-13T20:03:10.078666+00:00",
                            "updated_on": "2022-12-17T10:23:12.110822+00:00",
                            "field_790428": "Kale per kilogram",
                            "field_790453": "0.30",
                            "field_790454": null,
                            "field_790455": [
                                {
                                    "name": "XnxKt4JFQBIy8af7933ZXMSHM7JqhJZG_ad105bffc0f2e7ba79bc877ce9a1b3c9631b535fbaa92fb3adde782d7026ccce.jpg",
                                    "visible_name": "kale.jpg",
                                    "original_name": "kale.jpg"
                                }
                            ],
                            "field_790469": 339710,
                            "field_790470": "Kale is a mustard family plant with dark green, spreading, typically wrinkly leaves that are consumed as a vegetable. Also known as borecole, cole, and colewort.",
                            "field_790471": "",
                            "field_790472": 350394,
                            "field_790473": "4.35",
                            "field_790474": null,
                            "field_790537": [
                                2
                            ],
                            "field_790539": null,
                            "field_790541": null,
                            "field_790543": [
                                7,
                                19
                            ],
                            "field_790548": [
                                6
                            ],
                            "field_790549": null,
                            "field_799288": null,
                            "field_799367": null
                        },
                        {
                            "id": 32,
                            "order": "29.00000000000000000000",
                            "created_on": "2022-12-13T20:03:20.879583+00:00",
                            "updated_on": "2022-12-17T10:23:02.867947+00:00",
                            "field_790428": "Cheddar cheese 300g box",
                            "field_790453": "2.00",
                            "field_790454": null,
                            "field_790455": [
                                {
                                    "name": "UZBO2NXaBd499udigsWxPg7wyWRkWUsl_d02d2e07dfdfca87a16736b0e67e8d573d12a1b836fa49e69077038e54f727ca.jpg",
                                    "visible_name": "cheddar_cheese.jpg",
                                    "original_name": "cheddar_cheese.jpg"
                                }
                            ],
                            "field_790469": 339712,
                            "field_790470": "Cheddar cheese is a hard, smooth cheese that was first made in Cheddar, England, in the southwest of the country.",
                            "field_790471": "",
                            "field_790472": 350394,
                            "field_790473": "3.25",
                            "field_790474": null,
                            "field_790537": [
                                2
                            ],
                            "field_790539": null,
                            "field_790541": null,
                            "field_790543": [
                                7,
                                8,
                                12,
                                19,
                                20
                            ],
                            "field_790548": [
                                2,
                                6
                            ],
                            "field_790549": null,
                            "field_799288": null,
                            "field_799367": null
                        },
                        {
                            "id": 33,
                            "order": "30.00000000000000000000",
                            "created_on": "2022-12-13T20:05:25.100086+00:00",
                            "updated_on": "2022-12-17T10:23:08.926387+00:00",
                            "field_790428": "Pesto per 500g jar",
                            "field_790453": "1.00",
                            "field_790454": null,
                            "field_790455": [
                                {
                                    "name": "v1oZb9bxCmp20K4yC1Ht1djbxyy2xXe5_481d48642a137aed0d1918bb0176893aca52978c70cd3382ac84694f11ae9bd7.jpg",
                                    "visible_name": "pesto.jpg",
                                    "original_name": "pesto.jpg"
                                }
                            ],
                            "field_790469": 339715,
                            "field_790470": "The main ingredients in pesto are fresh basil, olive oil, pine nuts, garlic, and grated cheese.",
                            "field_790471": "",
                            "field_790472": 350394,
                            "field_790473": "3.75",
                            "field_790474": null,
                            "field_790537": [
                                2
                            ],
                            "field_790539": null,
                            "field_790541": null,
                            "field_790543": [
                                7,
                                19
                            ],
                            "field_790548": [
                                6
                            ],
                            "field_790549": null,
                            "field_799288": null,
                            "field_799367": null
                        },
                        {
                            "id": 34,
                            "order": "31.00000000000000000000",
                            "created_on": "2022-12-13T20:38:37.259984+00:00",
                            "updated_on": "2022-12-17T10:23:11.638608+00:00",
                            "field_790428": "Pullman sandwich bread sliced per pack",
                            "field_790453": "1.00",
                            "field_790454": null,
                            "field_790455": [
                                {
                                    "name": "lCETJsSH9ALtahGpYg3pYkglFrd6O7ga_f7bfe18e33957d7f11838b5af972fffefb73f8f2fd7a44b10e84101978a575f2.jpg",
                                    "visible_name": "pullman_sandwich_bread.jpg",
                                    "original_name": "pullman_sandwich_bread.jpg"
                                }
                            ],
                            "field_790469": 339711,
                            "field_790470": "Pullman sandwich bread is a French bread with square corners that is baked in a Pullman loaf pan.",
                            "field_790471": "",
                            "field_790472": 350394,
                            "field_790473": "3.98",
                            "field_790474": null,
                            "field_790537": [
                                2
                            ],
                            "field_790539": null,
                            "field_790541": null,
                            "field_790543": [
                                8,
                                20
                            ],
                            "field_790548": [
                                2
                            ],
                            "field_790549": null,
                            "field_799288": null,
                            "field_799367": null
                        },
                        {
                            "id": 35,
                            "order": "32.00000000000000000000",
                            "created_on": "2022-12-13T20:38:38.556337+00:00",
                            "updated_on": "2022-12-17T10:23:04.859496+00:00",
                            "field_790428": "Unsalted butter per 100g pack",
                            "field_790453": "1.00",
                            "field_790454": null,
                            "field_790455": [
                                {
                                    "name": "IMLdKIxnPzgJJSjGxlICRMTBADvfZ1Ae_2ecf1286953fe64729878b410a68ff531a9142aa111a1a74cdd48eb419e51c43.jpg",
                                    "visible_name": "unsalted_butter.jpg",
                                    "original_name": "unsalted_butter.jpg"
                                }
                            ],
                            "field_790469": 339712,
                            "field_790470": "In cooking and baking, unsalted butter is often preferred because it doesn't have salt, which can change the taste of food when added to some recipes. Since salt keeps things from going bad, butter that doesn't have any will go bad faster.",
                            "field_790471": "",
                            "field_790472": 350394,
                            "field_790473": "3.75",
                            "field_790474": null,
                            "field_790537": [
                                2
                            ],
                            "field_790539": null,
                            "field_790541": null,
                            "field_790543": [
                                8,
                                20
                            ],
                            "field_790548": [
                                2
                            ],
                            "field_790549": null,
                            "field_799288": null,
                            "field_799367": null
                        },
                        {
                            "id": 36,
                            "order": "33.00000000000000000000",
                            "created_on": "2022-12-13T20:38:42.773733+00:00",
                            "updated_on": "2022-12-17T10:23:08.457673+00:00",
                            "field_790428": "Korean kimchi hot pepper paste per 250mL bottle",
                            "field_790453": "1.00",
                            "field_790454": null,
                            "field_790455": [
                                {
                                    "name": "RDiZqBKyJ2dboLRrZkQjekNhl7IdTWeS_4e67c5a214c50a6d810bebe49c0b881d93766ff2f68ab48909797aea5904b5da.jpg",
                                    "visible_name": "kimchi.jpg",
                                    "original_name": "kimchi.jpg"
                                }
                            ],
                            "field_790469": 339715,
                            "field_790470": "Kimchi is a spicy Korean dish made from salted, seasoned, and fermented vegetables like cabbage or radishes.",
                            "field_790471": "Get the usual brand we have.",
                            "field_790472": 350394,
                            "field_790473": "4.88",
                            "field_790474": null,
                            "field_790537": [
                                2
                            ],
                            "field_790539": null,
                            "field_790541": null,
                            "field_790543": [
                                8,
                                20
                            ],
                            "field_790548": [
                                2
                            ],
                            "field_790549": null,
                            "field_799288": null,
                            "field_799367": null
                        },
                        {
                            "id": 37,
                            "order": "34.00000000000000000000",
                            "created_on": "2022-12-13T20:39:30.506521+00:00",
                            "updated_on": "2022-12-17T20:45:08.768644+00:00",
                            "field_790428": "Baby back pork ribs per rack",
                            "field_790453": "2.00",
                            "field_790454": null,
                            "field_790455": [
                                {
                                    "name": "vodg66L7PbIiwCM3Z2MRKC7hDcTyNt9T_5e6be66fd326e30e4e76bd4940c87b5b24d8eb9012558a355b2958d6cb0b8ecf.jpg",
                                    "visible_name": "baby_back_pork_ribs.jpg",
                                    "original_name": "baby_back_pork_ribs.jpg"
                                }
                            ],
                            "field_790469": 339714,
                            "field_790470": "Spare ribs come from the pig's belly, while baby back ribs come from the area around the loin, which is a muscle that runs along the back of the pig on both sides of the spine. They are more curved and shorter than spareribs, which is why they are called \"baby\" ribs. There is a lot of lean meat on and between the bones.",
                            "field_790471": "",
                            "field_790472": 339722,
                            "field_790473": "11.50",
                            "field_790474": null,
                            "field_790537": [
                                2
                            ],
                            "field_790539": null,
                            "field_790541": null,
                            "field_790543": [
                                9,
                                21
                            ],
                            "field_790548": [
                                3,
                                7
                            ],
                            "field_790549": null,
                            "field_799288": null,
                            "field_799367": null
                        },
                        {
                            "id": 38,
                            "order": "35.00000000000000000000",
                            "created_on": "2022-12-13T20:39:33.047388+00:00",
                            "updated_on": "2022-12-17T20:45:19.387763+00:00",
                            "field_790428": "Ground pepper 500g bottle",
                            "field_790453": "1.00",
                            "field_790454": null,
                            "field_790455": [
                                {
                                    "name": "8JvYBSp1omYV6GuUzmRjoe9fnWf707d2_b07190b04426c5df3e2e6b0baf5ab8fad1cadf914fdfb96a0c5a9616dcd28160.jpg",
                                    "visible_name": "ground_pepper.jpg",
                                    "original_name": "ground_pepper.jpg"
                                }
                            ],
                            "field_790469": 339715,
                            "field_790470": "Ground Pepper is a seasoning composed of ground peppercorns. Typically, it comes already ground in bottles or containers.",
                            "field_790471": "",
                            "field_790472": 339721,
                            "field_790473": "7.25",
                            "field_790474": null,
                            "field_790537": [
                                2
                            ],
                            "field_790539": null,
                            "field_790541": null,
                            "field_790543": [
                                9,
                                10,
                                11,
                                12,
                                21,
                                22,
                                23
                            ],
                            "field_790548": [
                                3,
                                7
                            ],
                            "field_790549": null,
                            "field_799288": null,
                            "field_799367": null
                        },
                        {
                            "id": 39,
                            "order": "36.00000000000000000000",
                            "created_on": "2022-12-13T20:43:19.169217+00:00",
                            "updated_on": "2022-12-17T20:45:22.571833+00:00",
                            "field_790428": "Salt 500g bottle",
                            "field_790453": "1.00",
                            "field_790454": null,
                            "field_790455": [
                                {
                                    "name": "k7WstRJXVluAhApSKaWf0uWYMnDcVNXM_7270341f454bd3a56354af98d538cedcdde689bbe1e707a6a276166ee8bfba33.jpg",
                                    "visible_name": "salt.jpg",
                                    "original_name": "salt.jpg"
                                }
                            ],
                            "field_790469": 339715,
                            "field_790470": "In its powdered or granulated form, salt is widely used as a culinary seasoning and preservative. Salt is typically a whitish crystalline material composed primarily of sodium chloride. Also known as table salt and common salt.",
                            "field_790471": "",
                            "field_790472": 339721,
                            "field_790473": "5.55",
                            "field_790474": null,
                            "field_790537": [
                                2
                            ],
                            "field_790539": null,
                            "field_790541": null,
                            "field_790543": [
                                9,
                                10,
                                11,
                                21,
                                22,
                                23
                            ],
                            "field_790548": [
                                3,
                                7
                            ],
                            "field_790549": null,
                            "field_799288": null,
                            "field_799367": null
                        },
                        {
                            "id": 40,
                            "order": "37.00000000000000000000",
                            "created_on": "2022-12-13T20:45:18.515704+00:00",
                            "updated_on": "2022-12-17T20:45:12.817921+00:00",
                            "field_790428": "Pork cube cuts per kilogram",
                            "field_790453": "0.75",
                            "field_790454": null,
                            "field_790455": [
                                {
                                    "name": "XbtfaVPyWXZ744TQMj96UTgXyltbSfBc_38a2c919db7ed22bc1827ca9f9a4882b3fa50d77965cc7202f09eda259d2f4af.jpg",
                                    "visible_name": "pork_cubes.jpg",
                                    "original_name": "pork_cubes.jpg"
                                }
                            ],
                            "field_790469": 339714,
                            "field_790470": "Cubes of lean pork are ideal for casseroles. Cut from slim legs and shoulders, these high-quality pieces can be used in a variety of recipes.",
                            "field_790471": "",
                            "field_790472": 339722,
                            "field_790473": "8.95",
                            "field_790474": null,
                            "field_790537": [
                                2
                            ],
                            "field_790539": null,
                            "field_790541": null,
                            "field_790543": [
                                10,
                                11,
                                22,
                                23
                            ],
                            "field_790548": [
                                3,
                                7
                            ],
                            "field_790549": null,
                            "field_799288": null,
                            "field_799367": null
                        },
                        {
                            "id": 41,
                            "order": "38.00000000000000000000",
                            "created_on": "2022-12-13T20:52:25.518966+00:00",
                            "updated_on": "2022-12-17T20:45:25.000803+00:00",
                            "field_790428": "Soy sauce per 500mL bottle",
                            "field_790453": "1.00",
                            "field_790454": null,
                            "field_790455": [
                                {
                                    "name": "XzBJezxbUedQLVYl64f8IEJDljpU0EiJ_ff250e0cdbeee5dd2a9a7fc9bdc99b77a7d8c451bdf802476eded7a891372fae.jpg",
                                    "visible_name": "soy_sauce.jpg",
                                    "original_name": "soy_sauce.jpg"
                                }
                            ],
                            "field_790469": 339715,
                            "field_790470": "Soy sauce is a condiment produced by fermenting soybeans with toasted wheat or barley in salt water.",
                            "field_790471": "",
                            "field_790472": 339721,
                            "field_790473": "2.35",
                            "field_790474": null,
                            "field_790537": [
                                2
                            ],
                            "field_790539": null,
                            "field_790541": null,
                            "field_790543": [
                                11,
                                23
                            ],
                            "field_790548": [
                                3,
                                7
                            ],
                            "field_790549": null,
                            "field_799288": null,
                            "field_799367": null
                        },
                        {
                            "id": 42,
                            "order": "39.00000000000000000000",
                            "created_on": "2022-12-13T20:54:47.968837+00:00",
                            "updated_on": "2022-12-17T20:45:41.678655+00:00",
                            "field_790428": "Vinegar per 500mL bottle",
                            "field_790453": "1.00",
                            "field_790454": null,
                            "field_790455": [
                                {
                                    "name": "i1oky05zkRlI6IcoD2sEnEjo3zCiTh3T_a1a8557268767e9e9ca1977354b15dc1d7882455d6d92979bd1cfc7d9458ddee.jpg",
                                    "visible_name": "vinegar.jpg",
                                    "original_name": "vinegar.jpg"
                                }
                            ],
                            "field_790469": 339715,
                            "field_790470": "Used as a condiment and preservative, vinegar is a sour liquid containing acetic acid that is made by fermenting a solution (such as fermented rice or wine) containing ethanol produced by a previous fermentation.",
                            "field_790471": "",
                            "field_790472": 339721,
                            "field_790473": "2.25",
                            "field_790474": null,
                            "field_790537": [
                                2
                            ],
                            "field_790539": null,
                            "field_790541": null,
                            "field_790543": [
                                11,
                                23
                            ],
                            "field_790548": [
                                3,
                                7
                            ],
                            "field_790549": null,
                            "field_799288": null,
                            "field_799367": null
                        },
                        {
                            "id": 43,
                            "order": "40.00000000000000000000",
                            "created_on": "2022-12-13T21:38:42.899796+00:00",
                            "updated_on": "2022-12-17T10:23:07.594033+00:00",
                            "field_790428": "Sunscreen SPF 80 per bottle",
                            "field_790453": "1.00",
                            "field_790454": null,
                            "field_790455": [
                                {
                                    "name": "dDXYFAGqnKIHaa4qrGai55wsiGX3P1eU_e74ff65a8285b7e402fafc69c7bc21ce7f7eee9f131b6c5aeb1a3481d9be64b2.jpg",
                                    "visible_name": "sunscreen.jpg",
                                    "original_name": "sunscreen.jpg"
                                }
                            ],
                            "field_790469": 339718,
                            "field_790470": "Sunscreen is a substance, typically in the form of a cream or lotion, used to safeguard the skin from the sun's UV rays.",
                            "field_790471": "Make sure it's SPF 80.",
                            "field_790472": 350394,
                            "field_790473": "12.00",
                            "field_790474": null,
                            "field_790537": [
                                4
                            ],
                            "field_790539": null,
                            "field_790541": null,
                            "field_790543": [],
                            "field_790548": [
                                5
                            ],
                            "field_790549": null,
                            "field_799288": null,
                            "field_799367": null
                        },
                        {
                            "id": 44,
                            "order": "41.00000000000000000000",
                            "created_on": "2022-12-13T21:40:09.616447+00:00",
                            "updated_on": "2022-12-17T10:22:58.558468+00:00",
                            "field_790428": "Electrolyte drink per 500mL bottle",
                            "field_790453": "12.00",
                            "field_790454": null,
                            "field_790455": [
                                {
                                    "name": "SxxapOV3i0ulvWNptNWQTdjcUP2avB3s_157239b1a751a1479fbd1bf894778469a86457458f2773f966c3112d0afd5a0c.jpg",
                                    "visible_name": "electrolyte_drink.jpg",
                                    "original_name": "electrolyte_drink.jpg"
                                }
                            ],
                            "field_790469": 340726,
                            "field_790470": "Electrolyte-containing beverages contain sugar, water, and electrolytes. The primary function of an electrolyte drink is to aid in rehydration, hence electrolyte drinks are predominantly water.",
                            "field_790471": "",
                            "field_790472": 339721,
                            "field_790473": "1.87",
                            "field_790474": null,
                            "field_790537": [
                                3
                            ],
                            "field_790539": null,
                            "field_790541": null,
                            "field_790543": [],
                            "field_790548": [
                                5,
                                4,
                                8,
                                9
                            ],
                            "field_790549": null,
                            "field_799288": null,
                            "field_799367": null
                        },
                        {
                            "id": 45,
                            "order": "42.00000000000000000000",
                            "created_on": "2022-12-13T21:43:03.682263+00:00",
                            "updated_on": "2022-12-17T10:22:55.039158+00:00",
                            "field_790428": "Beer six-pack",
                            "field_790453": "5.00",
                            "field_790454": null,
                            "field_790455": [
                                {
                                    "name": "GslG1vNDsdOImmVwZx6U4liwt74BuenV_4257d441df0c976c615db6f5d307ef1ae0645c3d874d406146bef9663d2bb4bc.jpg",
                                    "visible_name": "beer_cans.jpg",
                                    "original_name": "beer_cans.jpg"
                                }
                            ],
                            "field_790469": 340726,
                            "field_790470": "Beer is a malt-based fermented alcoholic beverage typically flavored with hops.",
                            "field_790471": "Make sure to get the brand that the group likes best.",
                            "field_790472": 339721,
                            "field_790473": "5.85",
                            "field_790474": null,
                            "field_790537": [
                                3
                            ],
                            "field_790539": null,
                            "field_790541": null,
                            "field_790543": [],
                            "field_790548": [
                                4,
                                9
                            ],
                            "field_790549": null,
                            "field_799288": null,
                            "field_799367": null
                        },
                        {
                            "id": 2,
                            "order": "43.00000000000000000000",
                            "created_on": "2022-12-13T17:36:28.356674+00:00",
                            "updated_on": "2022-12-17T11:10:15.972191+00:00",
                            "field_790428": "Royal cooking oil 1.5L",
                            "field_790453": "1.00",
                            "field_790454": null,
                            "field_790455": [
                                {
                                    "name": "qwtgOSMiB8LlNsxjAxbvo1XKQfRpbsLZ_5b2829c8f162fadd286a2eac2821f1ab5b8a499b28c5df81a1c4e0186fff37c9.jpg",
                                    "visible_name": "cooking_oil.jpg",
                                    "original_name": "cooking_oil.jpg"
                                }
                            ],
                            "field_790469": 339715,
                            "field_790470": "Cooking oil is any of the many different kinds of vegetable oils that are used in cooking. Choose the one with the cheapest packaging.",
                            "field_790471": null,
                            "field_790472": 339720,
                            "field_790473": "3.50",
                            "field_790474": null,
                            "field_790537": [
                                2
                            ],
                            "field_790539": null,
                            "field_790541": null,
                            "field_790543": [
                                1,
                                13,
                                24,
                                29
                            ],
                            "field_790548": [
                                1
                            ],
                            "field_790549": null,
                            "field_799288": null,
                            "field_799367": null
                        }
                    ]
                },
                {
                    "id": 123540,
                    "name": "Grocery days",
                    "order": 5,
                    "fields": [
                        {
                            "id": 796567,
                            "type": "date",
                            "name": "Grocery day",
                            "order": 0,
                            "primary": true,
                            "date_format": "ISO",
                            "date_include_time": false,
                            "date_time_format": "24"
                        },
                        {
                            "id": 796568,
                            "type": "boolean",
                            "name": "Is fulfilled",
                            "order": 1,
                            "primary": false
                        },
                        {
                            "id": 796569,
                            "type": "created_on",
                            "name": "Date added",
                            "order": 2,
                            "primary": false,
                            "date_format": "ISO",
                            "date_include_time": true,
                            "date_time_format": "24",
                            "timezone": "Asia/Singapore"
                        },
                        {
                            "id": 798572,
                            "type": "last_modified",
                            "name": "Date updated",
                            "order": 3,
                            "primary": false,
                            "date_format": "ISO",
                            "date_include_time": true,
                            "date_time_format": "24",
                            "timezone": "Asia/Singapore"
                        },
                        {
                            "id": 798577,
                            "type": "link_row",
                            "name": "Related meal plans",
                            "order": 5,
                            "primary": false,
                            "link_row_table_id": 122786,
                            "link_row_related_field_id": 798576,
                            "has_related_field": true
                        },
                        {
                            "id": 798579,
                            "type": "link_row",
                            "name": "Related activity plans",
                            "order": 6,
                            "primary": false,
                            "link_row_table_id": 122798,
                            "link_row_related_field_id": 798578,
                            "has_related_field": true
                        },
                        {
                            "id": 799242,
                            "type": "formula",
                            "name": "Estimated cost",
                            "order": 8,
                            "primary": false,
                            "error": null,
                            "date_format": null,
                            "date_include_time": null,
                            "date_time_format": null,
                            "number_decimal_places": 2,
                            "array_formula_type": null,
                            "formula": "add( \n  sum( \n    lookup(\"Related meal plans\", \"Estimated cost\")\n  ), \n  sum( \n    lookup(\"Related activity plans\", \"Estimated cost\") \n  ) \n)",
                            "formula_type": "number"
                        }
                    ],
                    "views": [
                        {
                            "id": 187184,
                            "type": "grid",
                            "name": "All grocery days",
                            "order": 1,
                            "filter_type": "AND",
                            "filters_disabled": false,
                            "filters": [],
                            "sortings": [
                                {
                                    "id": 58969,
                                    "field_id": 796568,
                                    "order": "ASC"
                                },
                                {
                                    "id": 58970,
                                    "field_id": 796567,
                                    "order": "ASC"
                                }
                            ],
                            "decorations": [
                                {
                                    "id": 8626,
                                    "type": "background_color",
                                    "value_provider_type": "conditional_color",
                                    "value_provider_conf": {
                                        "colors": [
                                            {
                                                "color": "light-green",
                                                "filters": [
                                                    {
                                                        "id": "63d50992-6639-4ed9-98de-b3f157eab4a2",
                                                        "type": "boolean",
                                                        "field": 796568,
                                                        "value": "1"
                                                    }
                                                ],
                                                "operator": "AND"
                                            }
                                        ]
                                    },
                                    "order": 1
                                }
                            ],
                            "public": false,
                            "row_identifier_type": "count",
                            "field_options": [
                                {
                                    "id": 1154751,
                                    "field_id": 796567,
                                    "width": 142,
                                    "hidden": false,
                                    "order": 0,
                                    "aggregation_type": "unique_count",
                                    "aggregation_raw_type": "unique_count"
                                },
                                {
                                    "id": 1154749,
                                    "field_id": 796568,
                                    "width": 120,
                                    "hidden": false,
                                    "order": 1,
                                    "aggregation_type": "checked_percentage",
                                    "aggregation_raw_type": "empty_count"
                                },
                                {
                                    "id": 1154750,
                                    "field_id": 796569,
                                    "width": 148,
                                    "hidden": false,
                                    "order": 4,
                                    "aggregation_type": "",
                                    "aggregation_raw_type": ""
                                },
                                {
                                    "id": 1157948,
                                    "field_id": 798572,
                                    "width": 148,
                                    "hidden": false,
                                    "order": 5,
                                    "aggregation_type": "",
                                    "aggregation_raw_type": ""
                                },
                                {
                                    "id": 1157953,
                                    "field_id": 798577,
                                    "width": 200,
                                    "hidden": true,
                                    "order": 6,
                                    "aggregation_type": "",
                                    "aggregation_raw_type": ""
                                },
                                {
                                    "id": 1157955,
                                    "field_id": 798579,
                                    "width": 200,
                                    "hidden": true,
                                    "order": 7,
                                    "aggregation_type": "",
                                    "aggregation_raw_type": ""
                                },
                                {
                                    "id": 1158873,
                                    "field_id": 799242,
                                    "width": 150,
                                    "hidden": false,
                                    "order": 2,
                                    "aggregation_type": "average",
                                    "aggregation_raw_type": "average"
                                }
                            ]
                        },
                        {
                            "id": 187946,
                            "type": "form",
                            "name": "Add grocery day",
                            "order": 2,
                            "public": false,
                            "title": "Add a grocery day",
                            "description": "",
                            "cover_image": {
                                "name": "ddxj6z4wYwOtsrVZ32sKSOuz68L52opp_c476f3c4a6f63597848a00f411f4eaf3df1c11e9cf347bf40b9134d7756d8431.jpg",
                                "original_name": "Header.ShoppingCarts.01.jpg"
                            },
                            "logo_image": null,
                            "submit_text": "Submit",
                            "submit_action": "MESSAGE",
                            "submit_action_message": "The grocery day was successfully added to the database. To add more, please reload this page.",
                            "submit_action_redirect_url": "",
                            "field_options": [
                                {
                                    "id": 114727,
                                    "field_id": 796567,
                                    "name": "",
                                    "description": "Please enter your planned or scheduled date to go to the grocery store to do your shopping.",
                                    "enabled": true,
                                    "required": true,
                                    "order": 32767,
                                    "show_when_matching_conditions": false,
                                    "condition_type": "AND",
                                    "conditions": []
                                },
                                {
                                    "id": 114728,
                                    "field_id": 796568,
                                    "name": "",
                                    "description": "Tick this checkbox to indicate that you've already bought the groceries you need for this grocery day.",
                                    "enabled": true,
                                    "required": false,
                                    "order": 32767,
                                    "show_when_matching_conditions": true,
                                    "condition_type": "AND",
                                    "conditions": [
                                        {
                                            "id": 1517,
                                            "field": 796567,
                                            "type": "date_is_before",
                                            "value": "Asia/Singapore??today"
                                        }
                                    ]
                                },
                                {
                                    "id": 114729,
                                    "field_id": 796569,
                                    "name": "",
                                    "description": "",
                                    "enabled": false,
                                    "required": true,
                                    "order": 32767,
                                    "show_when_matching_conditions": false,
                                    "condition_type": "AND",
                                    "conditions": []
                                },
                                {
                                    "id": 114730,
                                    "field_id": 798572,
                                    "name": "",
                                    "description": "",
                                    "enabled": false,
                                    "required": true,
                                    "order": 32767,
                                    "show_when_matching_conditions": false,
                                    "condition_type": "AND",
                                    "conditions": []
                                },
                                {
                                    "id": 114731,
                                    "field_id": 798577,
                                    "name": "",
                                    "description": "",
                                    "enabled": false,
                                    "required": true,
                                    "order": 32767,
                                    "show_when_matching_conditions": false,
                                    "condition_type": "AND",
                                    "conditions": []
                                },
                                {
                                    "id": 114732,
                                    "field_id": 798579,
                                    "name": "",
                                    "description": "",
                                    "enabled": false,
                                    "required": true,
                                    "order": 32767,
                                    "show_when_matching_conditions": false,
                                    "condition_type": "AND",
                                    "conditions": []
                                },
                                {
                                    "id": 114733,
                                    "field_id": 799242,
                                    "name": "",
                                    "description": "",
                                    "enabled": false,
                                    "required": true,
                                    "order": 32767,
                                    "show_when_matching_conditions": false,
                                    "condition_type": "AND",
                                    "conditions": []
                                }
                            ]
                        },
                        {
                            "id": 187952,
                            "type": "grid",
                            "name": "Grocery days to run",
                            "order": 3,
                            "filter_type": "AND",
                            "filters_disabled": false,
                            "filters": [
                                {
                                    "id": 74909,
                                    "field_id": 796568,
                                    "type": "boolean",
                                    "value": ""
                                }
                            ],
                            "sortings": [
                                {
                                    "id": 59014,
                                    "field_id": 796567,
                                    "order": "ASC"
                                }
                            ],
                            "decorations": [],
                            "public": false,
                            "row_identifier_type": "count",
                            "field_options": [
                                {
                                    "id": 1159096,
                                    "field_id": 796567,
                                    "width": 133,
                                    "hidden": false,
                                    "order": 0,
                                    "aggregation_type": "unique_count",
                                    "aggregation_raw_type": "unique_count"
                                },
                                {
                                    "id": 1159097,
                                    "field_id": 796568,
                                    "width": 120,
                                    "hidden": false,
                                    "order": 1,
                                    "aggregation_type": "checked_percentage",
                                    "aggregation_raw_type": "empty_count"
                                },
                                {
                                    "id": 1159098,
                                    "field_id": 796569,
                                    "width": 148,
                                    "hidden": false,
                                    "order": 4,
                                    "aggregation_type": "",
                                    "aggregation_raw_type": ""
                                },
                                {
                                    "id": 1159099,
                                    "field_id": 798572,
                                    "width": 148,
                                    "hidden": false,
                                    "order": 5,
                                    "aggregation_type": "",
                                    "aggregation_raw_type": ""
                                },
                                {
                                    "id": 1159100,
                                    "field_id": 798577,
                                    "width": 200,
                                    "hidden": true,
                                    "order": 6,
                                    "aggregation_type": "",
                                    "aggregation_raw_type": ""
                                },
                                {
                                    "id": 1159101,
                                    "field_id": 798579,
                                    "width": 200,
                                    "hidden": true,
                                    "order": 7,
                                    "aggregation_type": "",
                                    "aggregation_raw_type": ""
                                },
                                {
                                    "id": 1159102,
                                    "field_id": 799242,
                                    "width": 150,
                                    "hidden": false,
                                    "order": 2,
                                    "aggregation_type": "average",
                                    "aggregation_raw_type": "average"
                                }
                            ]
                        },
                        {
                            "id": 187959,
                            "type": "grid",
                            "name": "Grocery days for the month",
                            "order": 4,
                            "filter_type": "AND",
                            "filters_disabled": false,
                            "filters": [
                                {
                                    "id": 74924,
                                    "field_id": 796567,
                                    "type": "date_is",
                                    "value": "Asia/Singapore??this_month"
                                }
                            ],
                            "sortings": [
                                {
                                    "id": 59025,
                                    "field_id": 796568,
                                    "order": "ASC"
                                },
                                {
                                    "id": 59026,
                                    "field_id": 796567,
                                    "order": "ASC"
                                }
                            ],
                            "decorations": [
                                {
                                    "id": 8661,
                                    "type": "background_color",
                                    "value_provider_type": "conditional_color",
                                    "value_provider_conf": {
                                        "colors": [
                                            {
                                                "color": "light-green",
                                                "filters": [
                                                    {
                                                        "id": "63d50992-6639-4ed9-98de-b3f157eab4a2",
                                                        "type": "boolean",
                                                        "field": 796568,
                                                        "value": "1"
                                                    }
                                                ],
                                                "operator": "AND"
                                            }
                                        ]
                                    },
                                    "order": 1
                                }
                            ],
                            "public": false,
                            "row_identifier_type": "count",
                            "field_options": [
                                {
                                    "id": 1159175,
                                    "field_id": 796567,
                                    "width": 133,
                                    "hidden": false,
                                    "order": 0,
                                    "aggregation_type": "unique_count",
                                    "aggregation_raw_type": "unique_count"
                                },
                                {
                                    "id": 1159176,
                                    "field_id": 796568,
                                    "width": 120,
                                    "hidden": false,
                                    "order": 1,
                                    "aggregation_type": "checked_percentage",
                                    "aggregation_raw_type": "empty_count"
                                },
                                {
                                    "id": 1159177,
                                    "field_id": 796569,
                                    "width": 148,
                                    "hidden": false,
                                    "order": 4,
                                    "aggregation_type": "",
                                    "aggregation_raw_type": ""
                                },
                                {
                                    "id": 1159178,
                                    "field_id": 798572,
                                    "width": 148,
                                    "hidden": false,
                                    "order": 5,
                                    "aggregation_type": "",
                                    "aggregation_raw_type": ""
                                },
                                {
                                    "id": 1159179,
                                    "field_id": 798577,
                                    "width": 200,
                                    "hidden": true,
                                    "order": 6,
                                    "aggregation_type": "",
                                    "aggregation_raw_type": ""
                                },
                                {
                                    "id": 1159180,
                                    "field_id": 798579,
                                    "width": 200,
                                    "hidden": true,
                                    "order": 7,
                                    "aggregation_type": "",
                                    "aggregation_raw_type": ""
                                },
                                {
                                    "id": 1159181,
                                    "field_id": 799242,
                                    "width": 150,
                                    "hidden": false,
                                    "order": 2,
                                    "aggregation_type": "average",
                                    "aggregation_raw_type": "average"
                                }
                            ]
                        }
                    ],
                    "rows": [
                        {
                            "id": 1,
                            "order": "1.00000000000000000000",
                            "created_on": "2022-12-15T20:02:04.237745+00:00",
                            "updated_on": "2022-12-17T09:12:34.806056+00:00",
                            "field_796567": "2023-01-08",
                            "field_796568": "true",
                            "field_796569": null,
                            "field_798572": null,
                            "field_798577": [
                                1,
                                2,
                                3,
                                6,
                                4,
                                7,
                                5,
                                8,
                                9,
                                10,
                                11,
                                12
                            ],
                            "field_798579": [
                                1,
                                2,
                                3,
                                4
                            ],
                            "field_799242": null
                        },
                        {
                            "id": 2,
                            "order": "2.00000000000000000000",
                            "created_on": "2022-12-15T20:02:04.237828+00:00",
                            "updated_on": "2022-12-17T09:44:32.036386+00:00",
                            "field_796567": "2023-01-15",
                            "field_796568": "true",
                            "field_796569": null,
                            "field_798572": null,
                            "field_798577": [
                                13,
                                14,
                                15,
                                16,
                                17
                            ],
                            "field_798579": [
                                5,
                                6
                            ],
                            "field_799242": null
                        },
                        {
                            "id": 3,
                            "order": "3.00000000000000000000",
                            "created_on": "2022-12-16T19:00:39.673599+00:00",
                            "updated_on": "2022-12-17T10:20:19.651330+00:00",
                            "field_796567": "2023-01-22",
                            "field_796568": "true",
                            "field_796569": null,
                            "field_798572": null,
                            "field_798577": [
                                18,
                                19,
                                20,
                                21,
                                22,
                                23
                            ],
                            "field_798579": [],
                            "field_799242": null
                        },
                        {
                            "id": 4,
                            "order": "4.00000000000000000000",
                            "created_on": "2022-12-16T19:00:40.800876+00:00",
                            "updated_on": "2022-12-17T20:28:36.700124+00:00",
                            "field_796567": "2023-01-29",
                            "field_796568": "false",
                            "field_796569": null,
                            "field_798572": null,
                            "field_798577": [
                                24,
                                25,
                                26,
                                27,
                                28
                            ],
                            "field_798579": [
                                8,
                                7
                            ],
                            "field_799242": null
                        },
                        {
                            "id": 5,
                            "order": "5.00000000000000000000",
                            "created_on": "2022-12-16T19:00:41.851450+00:00",
                            "updated_on": "2022-12-17T20:27:42.228896+00:00",
                            "field_796567": "2023-02-05",
                            "field_796568": "false",
                            "field_796569": null,
                            "field_798572": null,
                            "field_798577": [
                                29,
                                30,
                                31,
                                32,
                                33
                            ],
                            "field_798579": [
                                9
                            ],
                            "field_799242": null
                        }
                    ]
                },
                {
                    "id": 122786,
                    "name": "Meal plans",
                    "order": 6,
                    "fields": [
                        {
                            "id": 790431,
                            "type": "formula",
                            "name": "ID",
                            "order": 0,
                            "primary": true,
                            "error": null,
                            "date_format": null,
                            "date_include_time": null,
                            "date_time_format": null,
                            "number_decimal_places": null,
                            "array_formula_type": null,
                            "formula": "concat( \n  \"M\", \n  if( \n    row_id() < 10, \n    concat(\"0000\", row_id()), \n    if( \n      row_id() < 100, \n      concat(\"000\", row_id()), \n      if( \n        row_id() < 1000, \n        concat(\"00\", row_id()), \n        if( \n          row_id() < 10000, \n          concat(\"0\", row_id()), \n          row_id() \n        ) \n      ) \n    ) \n  ) \n)",
                            "formula_type": "text"
                        },
                        {
                            "id": 790432,
                            "type": "date",
                            "name": "Plan date",
                            "order": 1,
                            "primary": false,
                            "date_format": "ISO",
                            "date_include_time": false,
                            "date_time_format": "24"
                        },
                        {
                            "id": 790433,
                            "type": "text",
                            "name": "Meal",
                            "order": 2,
                            "primary": false,
                            "text_default": ""
                        },
                        {
                            "id": 790485,
                            "type": "long_text",
                            "name": "Notes",
                            "order": 3,
                            "primary": false
                        },
                        {
                            "id": 790542,
                            "type": "link_row",
                            "name": "Items",
                            "order": 4,
                            "primary": false,
                            "link_row_table_id": 122785,
                            "link_row_related_field_id": 790543,
                            "has_related_field": true
                        },
                        {
                            "id": 790562,
                            "type": "formula",
                            "name": "Estimated cost",
                            "order": 6,
                            "primary": false,
                            "error": null,
                            "date_format": null,
                            "date_include_time": null,
                            "date_time_format": null,
                            "number_decimal_places": 2,
                            "array_formula_type": null,
                            "formula": "sum( \n  lookup(\"Items\", \"Total price\") \n)",
                            "formula_type": "number"
                        },
                        {
                            "id": 790610,
                            "type": "created_on",
                            "name": "Date added",
                            "order": 7,
                            "primary": false,
                            "date_format": "ISO",
                            "date_include_time": true,
                            "date_time_format": "24",
                            "timezone": "Asia/Singapore"
                        },
                        {
                            "id": 790611,
                            "type": "last_modified",
                            "name": "Date updated",
                            "order": 8,
                            "primary": false,
                            "date_format": "ISO",
                            "date_include_time": true,
                            "date_time_format": "24",
                            "timezone": "Asia/Singapore"
                        },
                        {
                            "id": 798574,
                            "type": "formula",
                            "name": "Schedule status",
                            "order": 10,
                            "primary": false,
                            "error": null,
                            "date_format": null,
                            "date_include_time": null,
                            "date_time_format": null,
                            "number_decimal_places": null,
                            "array_formula_type": "text",
                            "formula": "if( \n  or( \n    isblank(field(\"Plan date\")), \n    isblank(field(\"Grocery day\")) \n  ), \n  \"\", \n  if( \n    field(\"Grocery before plan\") < 0, \n    \"😡 Missed\", \n    if( \n      and( \n        field(\"Grocery before plan\") = 0, \n        field(\"Is grocery fulfilled\") = \"No\" \n      ), \n      \"🛒 On grocery day\", \n      if( \n        and( \n          field(\"Grocery before plan\") > 7, \n          field(\"Is grocery fulfilled\") = \"No\" \n        ), \n        \"✍🏼 To do\", \n        if( \n          field(\"Is grocery fulfilled\") = \"Yes\", \n          \"💸 Completed\", \n          \"📅 Timely\" \n        ) \n      ) \n    ) \n  ) \n)",
                            "formula_type": "array"
                        },
                        {
                            "id": 798576,
                            "type": "link_row",
                            "name": "Grocery day",
                            "order": 11,
                            "primary": false,
                            "link_row_table_id": 123540,
                            "link_row_related_field_id": 798577,
                            "has_related_field": true
                        },
                        {
                            "id": 798580,
                            "type": "formula",
                            "name": "Grocery before plan",
                            "order": 12,
                            "primary": false,
                            "error": null,
                            "date_format": null,
                            "date_include_time": null,
                            "date_time_format": null,
                            "number_decimal_places": 0,
                            "array_formula_type": null,
                            "formula": "tonumber( \n  join( \n    totext( \n      date_diff( \n        \"day\", \n        field(\"Grocery day\"), \n        field(\"Plan date\") \n      ) \n    ), \n    \"\" \n  ) \n)",
                            "formula_type": "number"
                        },
                        {
                            "id": 798728,
                            "type": "formula",
                            "name": "Is grocery fulfilled",
                            "order": 14,
                            "primary": false,
                            "error": null,
                            "date_format": null,
                            "date_include_time": null,
                            "date_time_format": null,
                            "number_decimal_places": null,
                            "array_formula_type": null,
                            "formula": "join( \n  if( \n    lookup(\"Grocery day\", \"Is fulfilled\"), \n    \"Yes\", \n    \"No\" \n  ), \n  \"\" \n)",
                            "formula_type": "text"
                        }
                    ],
                    "views": [
                        {
                            "id": 185833,
                            "type": "grid",
                            "name": "All meal plans",
                            "order": 1,
                            "filter_type": "AND",
                            "filters_disabled": false,
                            "filters": [],
                            "sortings": [
                                {
                                    "id": 58971,
                                    "field_id": 798728,
                                    "order": "ASC"
                                },
                                {
                                    "id": 58972,
                                    "field_id": 790432,
                                    "order": "ASC"
                                }
                            ],
                            "decorations": [
                                {
                                    "id": 8623,
                                    "type": "background_color",
                                    "value_provider_type": "conditional_color",
                                    "value_provider_conf": {
                                        "colors": [
                                            {
                                                "color": "light-red",
                                                "filters": [
                                                    {
                                                        "id": "ed20bced-08c3-4151-bca4-747c1be445ad",
                                                        "type": "not_empty",
                                                        "field": 798580,
                                                        "value": ""
                                                    },
                                                    {
                                                        "id": "8e497a27-2b63-48f4-b154-a1916b81c845",
                                                        "type": "lower_than",
                                                        "field": 798580,
                                                        "value": "0"
                                                    }
                                                ],
                                                "operator": "AND"
                                            },
                                            {
                                                "color": "light-green",
                                                "filters": [
                                                    {
                                                        "id": "9b087722-3696-4138-8bbf-158fcf9397d9",
                                                        "type": "equal",
                                                        "field": 798728,
                                                        "value": "Yes"
                                                    }
                                                ],
                                                "operator": "AND"
                                            }
                                        ]
                                    },
                                    "order": 1
                                }
                            ],
                            "public": false,
                            "row_identifier_type": "count",
                            "field_options": [
                                {
                                    "id": 1145314,
                                    "field_id": 790431,
                                    "width": 100,
                                    "hidden": false,
                                    "order": 0,
                                    "aggregation_type": "",
                                    "aggregation_raw_type": ""
                                },
                                {
                                    "id": 1145312,
                                    "field_id": 790432,
                                    "width": 118,
                                    "hidden": false,
                                    "order": 1,
                                    "aggregation_type": "not_empty_percentage",
                                    "aggregation_raw_type": "empty_count"
                                },
                                {
                                    "id": 1145313,
                                    "field_id": 790433,
                                    "width": 200,
                                    "hidden": false,
                                    "order": 3,
                                    "aggregation_type": "unique_count",
                                    "aggregation_raw_type": "unique_count"
                                },
                                {
                                    "id": 1145361,
                                    "field_id": 790485,
                                    "width": 240,
                                    "hidden": false,
                                    "order": 4,
                                    "aggregation_type": "",
                                    "aggregation_raw_type": ""
                                },
                                {
                                    "id": 1145414,
                                    "field_id": 790542,
                                    "width": 201,
                                    "hidden": false,
                                    "order": 6,
                                    "aggregation_type": "not_empty_percentage",
                                    "aggregation_raw_type": "empty_count"
                                },
                                {
                                    "id": 1145437,
                                    "field_id": 790562,
                                    "width": 150,
                                    "hidden": false,
                                    "order": 8,
                                    "aggregation_type": "average",
                                    "aggregation_raw_type": "average"
                                },
                                {
                                    "id": 1145505,
                                    "field_id": 790610,
                                    "width": 148,
                                    "hidden": false,
                                    "order": 9,
                                    "aggregation_type": "",
                                    "aggregation_raw_type": ""
                                },
                                {
                                    "id": 1145506,
                                    "field_id": 790611,
                                    "width": 148,
                                    "hidden": false,
                                    "order": 10,
                                    "aggregation_type": "",
                                    "aggregation_raw_type": ""
                                },
                                {
                                    "id": 1157950,
                                    "field_id": 798574,
                                    "width": 157,
                                    "hidden": false,
                                    "order": 2,
                                    "aggregation_type": "",
                                    "aggregation_raw_type": ""
                                },
                                {
                                    "id": 1157952,
                                    "field_id": 798576,
                                    "width": 135,
                                    "hidden": false,
                                    "order": 5,
                                    "aggregation_type": "not_empty_percentage",
                                    "aggregation_raw_type": "empty_count"
                                },
                                {
                                    "id": 1157956,
                                    "field_id": 798580,
                                    "width": 184,
                                    "hidden": true,
                                    "order": 32767,
                                    "aggregation_type": "average",
                                    "aggregation_raw_type": "average"
                                },
                                {
                                    "id": 1158152,
                                    "field_id": 798728,
                                    "width": 169,
                                    "hidden": true,
                                    "order": 32767,
                                    "aggregation_type": "",
                                    "aggregation_raw_type": ""
                                }
                            ]
                        },
                        {
                            "id": 187947,
                            "type": "form",
                            "name": "Add meal plan",
                            "order": 2,
                            "public": false,
                            "title": "Add a meal",
                            "description": "",
                            "cover_image": {
                                "name": "jl3DMxW9BDg8tYPem3w0CSNUxy3CtvY1_84dfe63ee63daab256380e9da1e343951c83302a57d729fee1e7aa38043f9d1f.jpg",
                                "original_name": "Header.Meals.01.jpg"
                            },
                            "logo_image": null,
                            "submit_text": "Submit",
                            "submit_action": "MESSAGE",
                            "submit_action_message": "The meal plan was successfully added to the database. To add more, please reload this page.",
                            "submit_action_redirect_url": "",
                            "field_options": [
                                {
                                    "id": 114735,
                                    "field_id": 790432,
                                    "name": "",
                                    "description": "Please enter the date you plan to have this meal.",
                                    "enabled": true,
                                    "required": true,
                                    "order": 0,
                                    "show_when_matching_conditions": false,
                                    "condition_type": "AND",
                                    "conditions": []
                                },
                                {
                                    "id": 114743,
                                    "field_id": 798576,
                                    "name": "",
                                    "description": "Please indicate the date when you plan to buy all items required for this plan.",
                                    "enabled": true,
                                    "required": true,
                                    "order": 1,
                                    "show_when_matching_conditions": false,
                                    "condition_type": "AND",
                                    "conditions": []
                                },
                                {
                                    "id": 114736,
                                    "field_id": 790433,
                                    "name": "",
                                    "description": "Please enter the name or title of this meal. It could also be the name of a dish.",
                                    "enabled": true,
                                    "required": true,
                                    "order": 2,
                                    "show_when_matching_conditions": false,
                                    "condition_type": "AND",
                                    "conditions": []
                                },
                                {
                                    "id": 114737,
                                    "field_id": 790485,
                                    "name": "",
                                    "description": "Type in any other remarks or brief description about this meal.",
                                    "enabled": true,
                                    "required": false,
                                    "order": 3,
                                    "show_when_matching_conditions": false,
                                    "condition_type": "AND",
                                    "conditions": []
                                },
                                {
                                    "id": 114738,
                                    "field_id": 790542,
                                    "name": "",
                                    "description": "Please select all grocery items needed for this meal.",
                                    "enabled": true,
                                    "required": false,
                                    "order": 4,
                                    "show_when_matching_conditions": false,
                                    "condition_type": "AND",
                                    "conditions": []
                                },
                                {
                                    "id": 114734,
                                    "field_id": 790431,
                                    "name": "",
                                    "description": "",
                                    "enabled": false,
                                    "required": true,
                                    "order": 5,
                                    "show_when_matching_conditions": false,
                                    "condition_type": "AND",
                                    "conditions": []
                                },
                                {
                                    "id": 114739,
                                    "field_id": 790562,
                                    "name": "",
                                    "description": "",
                                    "enabled": false,
                                    "required": true,
                                    "order": 6,
                                    "show_when_matching_conditions": false,
                                    "condition_type": "AND",
                                    "conditions": []
                                },
                                {
                                    "id": 114740,
                                    "field_id": 790610,
                                    "name": "",
                                    "description": "",
                                    "enabled": false,
                                    "required": true,
                                    "order": 7,
                                    "show_when_matching_conditions": false,
                                    "condition_type": "AND",
                                    "conditions": []
                                },
                                {
                                    "id": 114741,
                                    "field_id": 790611,
                                    "name": "",
                                    "description": "",
                                    "enabled": false,
                                    "required": true,
                                    "order": 8,
                                    "show_when_matching_conditions": false,
                                    "condition_type": "AND",
                                    "conditions": []
                                },
                                {
                                    "id": 114742,
                                    "field_id": 798574,
                                    "name": "",
                                    "description": "",
                                    "enabled": false,
                                    "required": true,
                                    "order": 9,
                                    "show_when_matching_conditions": false,
                                    "condition_type": "AND",
                                    "conditions": []
                                },
                                {
                                    "id": 114744,
                                    "field_id": 798580,
                                    "name": "",
                                    "description": "",
                                    "enabled": false,
                                    "required": true,
                                    "order": 10,
                                    "show_when_matching_conditions": false,
                                    "condition_type": "AND",
                                    "conditions": []
                                },
                                {
                                    "id": 114745,
                                    "field_id": 798728,
                                    "name": "",
                                    "description": "",
                                    "enabled": false,
                                    "required": true,
                                    "order": 11,
                                    "show_when_matching_conditions": false,
                                    "condition_type": "AND",
                                    "conditions": []
                                }
                            ]
                        },
                        {
                            "id": 187953,
                            "type": "grid",
                            "name": "Meal plans to do shopping",
                            "order": 3,
                            "filter_type": "AND",
                            "filters_disabled": false,
                            "filters": [
                                {
                                    "id": 74910,
                                    "field_id": 798728,
                                    "type": "equal",
                                    "value": "No"
                                }
                            ],
                            "sortings": [
                                {
                                    "id": 59016,
                                    "field_id": 790432,
                                    "order": "ASC"
                                }
                            ],
                            "decorations": [
                                {
                                    "id": 8655,
                                    "type": "background_color",
                                    "value_provider_type": "conditional_color",
                                    "value_provider_conf": {
                                        "colors": [
                                            {
                                                "color": "light-red",
                                                "filters": [
                                                    {
                                                        "id": "3368127c-0a1a-494f-8af2-b49da8d32182",
                                                        "type": "not_empty",
                                                        "field": 798580,
                                                        "value": ""
                                                    },
                                                    {
                                                        "id": "425fe420-b253-4f2a-b54f-32945e0d8256",
                                                        "type": "lower_than",
                                                        "field": 798580,
                                                        "value": "0"
                                                    }
                                                ],
                                                "operator": "AND"
                                            }
                                        ]
                                    },
                                    "order": 1
                                }
                            ],
                            "public": false,
                            "row_identifier_type": "count",
                            "field_options": [
                                {
                                    "id": 1159103,
                                    "field_id": 790431,
                                    "width": 100,
                                    "hidden": false,
                                    "order": 0,
                                    "aggregation_type": "",
                                    "aggregation_raw_type": ""
                                },
                                {
                                    "id": 1159104,
                                    "field_id": 790432,
                                    "width": 118,
                                    "hidden": false,
                                    "order": 1,
                                    "aggregation_type": "not_empty_percentage",
                                    "aggregation_raw_type": "empty_count"
                                },
                                {
                                    "id": 1159105,
                                    "field_id": 790433,
                                    "width": 200,
                                    "hidden": false,
                                    "order": 3,
                                    "aggregation_type": "unique_count",
                                    "aggregation_raw_type": "unique_count"
                                },
                                {
                                    "id": 1159106,
                                    "field_id": 790485,
                                    "width": 240,
                                    "hidden": false,
                                    "order": 4,
                                    "aggregation_type": "",
                                    "aggregation_raw_type": ""
                                },
                                {
                                    "id": 1159107,
                                    "field_id": 790542,
                                    "width": 201,
                                    "hidden": false,
                                    "order": 6,
                                    "aggregation_type": "not_empty_percentage",
                                    "aggregation_raw_type": "empty_count"
                                },
                                {
                                    "id": 1159108,
                                    "field_id": 790562,
                                    "width": 150,
                                    "hidden": false,
                                    "order": 8,
                                    "aggregation_type": "average",
                                    "aggregation_raw_type": "average"
                                },
                                {
                                    "id": 1159109,
                                    "field_id": 790610,
                                    "width": 148,
                                    "hidden": false,
                                    "order": 9,
                                    "aggregation_type": "",
                                    "aggregation_raw_type": ""
                                },
                                {
                                    "id": 1159110,
                                    "field_id": 790611,
                                    "width": 148,
                                    "hidden": false,
                                    "order": 10,
                                    "aggregation_type": "",
                                    "aggregation_raw_type": ""
                                },
                                {
                                    "id": 1159111,
                                    "field_id": 798574,
                                    "width": 157,
                                    "hidden": false,
                                    "order": 2,
                                    "aggregation_type": "",
                                    "aggregation_raw_type": ""
                                },
                                {
                                    "id": 1159112,
                                    "field_id": 798576,
                                    "width": 135,
                                    "hidden": false,
                                    "order": 5,
                                    "aggregation_type": "not_empty_percentage",
                                    "aggregation_raw_type": "empty_count"
                                },
                                {
                                    "id": 1159113,
                                    "field_id": 798580,
                                    "width": 184,
                                    "hidden": true,
                                    "order": 32767,
                                    "aggregation_type": "average",
                                    "aggregation_raw_type": "average"
                                },
                                {
                                    "id": 1159114,
                                    "field_id": 798728,
                                    "width": 169,
                                    "hidden": true,
                                    "order": 32767,
                                    "aggregation_type": "",
                                    "aggregation_raw_type": ""
                                }
                            ]
                        },
                        {
                            "id": 187958,
                            "type": "grid",
                            "name": "Meal plans for the week",
                            "order": 4,
                            "filter_type": "AND",
                            "filters_disabled": false,
                            "filters": [
                                {
                                    "id": 74923,
                                    "field_id": 790432,
                                    "type": "date_is",
                                    "value": "Asia/Singapore??this_week"
                                }
                            ],
                            "sortings": [
                                {
                                    "id": 59024,
                                    "field_id": 790432,
                                    "order": "ASC"
                                }
                            ],
                            "decorations": [
                                {
                                    "id": 8660,
                                    "type": "background_color",
                                    "value_provider_type": "conditional_color",
                                    "value_provider_conf": {
                                        "colors": [
                                            {
                                                "color": "light-red",
                                                "filters": [
                                                    {
                                                        "id": "3368127c-0a1a-494f-8af2-b49da8d32182",
                                                        "type": "not_empty",
                                                        "field": 798580,
                                                        "value": ""
                                                    },
                                                    {
                                                        "id": "425fe420-b253-4f2a-b54f-32945e0d8256",
                                                        "type": "lower_than",
                                                        "field": 798580,
                                                        "value": "0"
                                                    }
                                                ],
                                                "operator": "AND"
                                            }
                                        ]
                                    },
                                    "order": 1
                                }
                            ],
                            "public": false,
                            "row_identifier_type": "count",
                            "field_options": [
                                {
                                    "id": 1159163,
                                    "field_id": 790431,
                                    "width": 100,
                                    "hidden": false,
                                    "order": 0,
                                    "aggregation_type": "",
                                    "aggregation_raw_type": ""
                                },
                                {
                                    "id": 1159164,
                                    "field_id": 790432,
                                    "width": 118,
                                    "hidden": false,
                                    "order": 1,
                                    "aggregation_type": "not_empty_percentage",
                                    "aggregation_raw_type": "empty_count"
                                },
                                {
                                    "id": 1159165,
                                    "field_id": 790433,
                                    "width": 200,
                                    "hidden": false,
                                    "order": 3,
                                    "aggregation_type": "unique_count",
                                    "aggregation_raw_type": "unique_count"
                                },
                                {
                                    "id": 1159166,
                                    "field_id": 790485,
                                    "width": 240,
                                    "hidden": false,
                                    "order": 4,
                                    "aggregation_type": "",
                                    "aggregation_raw_type": ""
                                },
                                {
                                    "id": 1159167,
                                    "field_id": 790542,
                                    "width": 201,
                                    "hidden": false,
                                    "order": 6,
                                    "aggregation_type": "not_empty_percentage",
                                    "aggregation_raw_type": "empty_count"
                                },
                                {
                                    "id": 1159168,
                                    "field_id": 790562,
                                    "width": 150,
                                    "hidden": false,
                                    "order": 8,
                                    "aggregation_type": "average",
                                    "aggregation_raw_type": "average"
                                },
                                {
                                    "id": 1159169,
                                    "field_id": 790610,
                                    "width": 148,
                                    "hidden": false,
                                    "order": 9,
                                    "aggregation_type": "",
                                    "aggregation_raw_type": ""
                                },
                                {
                                    "id": 1159170,
                                    "field_id": 790611,
                                    "width": 148,
                                    "hidden": false,
                                    "order": 10,
                                    "aggregation_type": "",
                                    "aggregation_raw_type": ""
                                },
                                {
                                    "id": 1159171,
                                    "field_id": 798574,
                                    "width": 157,
                                    "hidden": false,
                                    "order": 2,
                                    "aggregation_type": "",
                                    "aggregation_raw_type": ""
                                },
                                {
                                    "id": 1159172,
                                    "field_id": 798576,
                                    "width": 135,
                                    "hidden": false,
                                    "order": 5,
                                    "aggregation_type": "not_empty_percentage",
                                    "aggregation_raw_type": "empty_count"
                                },
                                {
                                    "id": 1159173,
                                    "field_id": 798580,
                                    "width": 184,
                                    "hidden": true,
                                    "order": 32767,
                                    "aggregation_type": "average",
                                    "aggregation_raw_type": "average"
                                },
                                {
                                    "id": 1159174,
                                    "field_id": 798728,
                                    "width": 169,
                                    "hidden": true,
                                    "order": 32767,
                                    "aggregation_type": "",
                                    "aggregation_raw_type": ""
                                }
                            ]
                        },
                        {
                            "id": 187954,
                            "type": "grid",
                            "name": "Completed meal plans",
                            "order": 5,
                            "filter_type": "OR",
                            "filters_disabled": false,
                            "filters": [
                                {
                                    "id": 74911,
                                    "field_id": 798728,
                                    "type": "equal",
                                    "value": "Yes"
                                },
                                {
                                    "id": 74936,
                                    "field_id": 790432,
                                    "type": "date_is_before",
                                    "value": "Asia/Singapore??today"
                                }
                            ],
                            "sortings": [
                                {
                                    "id": 59017,
                                    "field_id": 790432,
                                    "order": "ASC"
                                }
                            ],
                            "decorations": [
                                {
                                    "id": 8656,
                                    "type": "background_color",
                                    "value_provider_type": "conditional_color",
                                    "value_provider_conf": {
                                        "colors": [
                                            {
                                                "color": "light-red",
                                                "filters": [
                                                    {
                                                        "id": "3368127c-0a1a-494f-8af2-b49da8d32182",
                                                        "type": "not_empty",
                                                        "field": 798580,
                                                        "value": ""
                                                    },
                                                    {
                                                        "id": "425fe420-b253-4f2a-b54f-32945e0d8256",
                                                        "type": "lower_than",
                                                        "field": 798580,
                                                        "value": "0"
                                                    }
                                                ],
                                                "operator": "AND"
                                            }
                                        ]
                                    },
                                    "order": 1
                                }
                            ],
                            "public": false,
                            "row_identifier_type": "count",
                            "field_options": [
                                {
                                    "id": 1159115,
                                    "field_id": 790431,
                                    "width": 100,
                                    "hidden": false,
                                    "order": 0,
                                    "aggregation_type": "",
                                    "aggregation_raw_type": ""
                                },
                                {
                                    "id": 1159116,
                                    "field_id": 790432,
                                    "width": 118,
                                    "hidden": false,
                                    "order": 1,
                                    "aggregation_type": "not_empty_percentage",
                                    "aggregation_raw_type": "empty_count"
                                },
                                {
                                    "id": 1159117,
                                    "field_id": 790433,
                                    "width": 200,
                                    "hidden": false,
                                    "order": 3,
                                    "aggregation_type": "unique_count",
                                    "aggregation_raw_type": "unique_count"
                                },
                                {
                                    "id": 1159118,
                                    "field_id": 790485,
                                    "width": 240,
                                    "hidden": false,
                                    "order": 4,
                                    "aggregation_type": "",
                                    "aggregation_raw_type": ""
                                },
                                {
                                    "id": 1159119,
                                    "field_id": 790542,
                                    "width": 201,
                                    "hidden": false,
                                    "order": 6,
                                    "aggregation_type": "not_empty_percentage",
                                    "aggregation_raw_type": "empty_count"
                                },
                                {
                                    "id": 1159120,
                                    "field_id": 790562,
                                    "width": 150,
                                    "hidden": false,
                                    "order": 8,
                                    "aggregation_type": "average",
                                    "aggregation_raw_type": "average"
                                },
                                {
                                    "id": 1159121,
                                    "field_id": 790610,
                                    "width": 148,
                                    "hidden": false,
                                    "order": 9,
                                    "aggregation_type": "",
                                    "aggregation_raw_type": ""
                                },
                                {
                                    "id": 1159122,
                                    "field_id": 790611,
                                    "width": 148,
                                    "hidden": false,
                                    "order": 10,
                                    "aggregation_type": "",
                                    "aggregation_raw_type": ""
                                },
                                {
                                    "id": 1159123,
                                    "field_id": 798574,
                                    "width": 157,
                                    "hidden": false,
                                    "order": 2,
                                    "aggregation_type": "",
                                    "aggregation_raw_type": ""
                                },
                                {
                                    "id": 1159124,
                                    "field_id": 798576,
                                    "width": 135,
                                    "hidden": false,
                                    "order": 5,
                                    "aggregation_type": "not_empty_percentage",
                                    "aggregation_raw_type": "empty_count"
                                },
                                {
                                    "id": 1159125,
                                    "field_id": 798580,
                                    "width": 184,
                                    "hidden": true,
                                    "order": 32767,
                                    "aggregation_type": "average",
                                    "aggregation_raw_type": "average"
                                },
                                {
                                    "id": 1159126,
                                    "field_id": 798728,
                                    "width": 169,
                                    "hidden": true,
                                    "order": 32767,
                                    "aggregation_type": "",
                                    "aggregation_raw_type": ""
                                }
                            ]
                        },
                        {
                            "id": 187955,
                            "type": "grid",
                            "name": "Unfinished plans",
                            "order": 6,
                            "filter_type": "OR",
                            "filters_disabled": false,
                            "filters": [
                                {
                                    "id": 74913,
                                    "field_id": 798576,
                                    "type": "empty",
                                    "value": ""
                                },
                                {
                                    "id": 74914,
                                    "field_id": 790542,
                                    "type": "empty",
                                    "value": ""
                                },
                                {
                                    "id": 74915,
                                    "field_id": 790433,
                                    "type": "empty",
                                    "value": ""
                                },
                                {
                                    "id": 74916,
                                    "field_id": 790432,
                                    "type": "empty",
                                    "value": ""
                                }
                            ],
                            "sortings": [
                                {
                                    "id": 59019,
                                    "field_id": 790432,
                                    "order": "ASC"
                                }
                            ],
                            "decorations": [
                                {
                                    "id": 8657,
                                    "type": "background_color",
                                    "value_provider_type": "conditional_color",
                                    "value_provider_conf": {
                                        "colors": [
                                            {
                                                "color": "light-red",
                                                "filters": [
                                                    {
                                                        "id": "ed20bced-08c3-4151-bca4-747c1be445ad",
                                                        "type": "not_empty",
                                                        "field": 798580,
                                                        "value": ""
                                                    },
                                                    {
                                                        "id": "8e497a27-2b63-48f4-b154-a1916b81c845",
                                                        "type": "lower_than",
                                                        "field": 798580,
                                                        "value": "0"
                                                    }
                                                ],
                                                "operator": "AND"
                                            },
                                            {
                                                "color": "light-green",
                                                "filters": [
                                                    {
                                                        "id": "9b087722-3696-4138-8bbf-158fcf9397d9",
                                                        "type": "equal",
                                                        "field": 798728,
                                                        "value": "Yes"
                                                    }
                                                ],
                                                "operator": "AND"
                                            }
                                        ]
                                    },
                                    "order": 1
                                }
                            ],
                            "public": false,
                            "row_identifier_type": "count",
                            "field_options": [
                                {
                                    "id": 1159127,
                                    "field_id": 790431,
                                    "width": 100,
                                    "hidden": false,
                                    "order": 0,
                                    "aggregation_type": "",
                                    "aggregation_raw_type": ""
                                },
                                {
                                    "id": 1159128,
                                    "field_id": 790432,
                                    "width": 118,
                                    "hidden": false,
                                    "order": 1,
                                    "aggregation_type": "not_empty_percentage",
                                    "aggregation_raw_type": "empty_count"
                                },
                                {
                                    "id": 1159129,
                                    "field_id": 790433,
                                    "width": 200,
                                    "hidden": false,
                                    "order": 3,
                                    "aggregation_type": "unique_count",
                                    "aggregation_raw_type": "unique_count"
                                },
                                {
                                    "id": 1159130,
                                    "field_id": 790485,
                                    "width": 240,
                                    "hidden": false,
                                    "order": 4,
                                    "aggregation_type": "",
                                    "aggregation_raw_type": ""
                                },
                                {
                                    "id": 1159131,
                                    "field_id": 790542,
                                    "width": 201,
                                    "hidden": false,
                                    "order": 6,
                                    "aggregation_type": "not_empty_percentage",
                                    "aggregation_raw_type": "empty_count"
                                },
                                {
                                    "id": 1159132,
                                    "field_id": 790562,
                                    "width": 150,
                                    "hidden": false,
                                    "order": 8,
                                    "aggregation_type": "average",
                                    "aggregation_raw_type": "average"
                                },
                                {
                                    "id": 1159133,
                                    "field_id": 790610,
                                    "width": 148,
                                    "hidden": false,
                                    "order": 9,
                                    "aggregation_type": "",
                                    "aggregation_raw_type": ""
                                },
                                {
                                    "id": 1159134,
                                    "field_id": 790611,
                                    "width": 148,
                                    "hidden": false,
                                    "order": 10,
                                    "aggregation_type": "",
                                    "aggregation_raw_type": ""
                                },
                                {
                                    "id": 1159135,
                                    "field_id": 798574,
                                    "width": 157,
                                    "hidden": false,
                                    "order": 2,
                                    "aggregation_type": "",
                                    "aggregation_raw_type": ""
                                },
                                {
                                    "id": 1159136,
                                    "field_id": 798576,
                                    "width": 135,
                                    "hidden": false,
                                    "order": 5,
                                    "aggregation_type": "not_empty_percentage",
                                    "aggregation_raw_type": "empty_count"
                                },
                                {
                                    "id": 1159137,
                                    "field_id": 798580,
                                    "width": 184,
                                    "hidden": true,
                                    "order": 32767,
                                    "aggregation_type": "average",
                                    "aggregation_raw_type": "average"
                                },
                                {
                                    "id": 1159138,
                                    "field_id": 798728,
                                    "width": 169,
                                    "hidden": true,
                                    "order": 32767,
                                    "aggregation_type": "",
                                    "aggregation_raw_type": ""
                                }
                            ]
                        }
                    ],
                    "rows": [
                        {
                            "id": 1,
                            "order": "1.00000000000000000000",
                            "created_on": "2022-12-13T17:36:38.572599+00:00",
                            "updated_on": "2022-12-16T22:58:34.914513+00:00",
                            "field_790431": null,
                            "field_790432": "2023-01-07",
                            "field_790433": "Smoked mackerel and greens",
                            "field_790485": "Step 1: Cover the potatoes and microwave them with a bit of water for 7 minutes.\n\nStep 2: Put the oil in a skillet and heat it over medium heat. Add the leeks and cook for 10 minutes, stirring them often so they don't stick. If you turn up the heat, the potatoes will get crispier.\n\nStep 3: Do four gaps in the pan with the leek mix. Put an egg in each well and sprinkle with salt. Simmer for 7–9 minutes. Pâté in the center of the plate, with horseradish on the side.",
                            "field_790542": [
                                1,
                                2,
                                3,
                                4,
                                5,
                                6
                            ],
                            "field_790562": null,
                            "field_790610": null,
                            "field_790611": null,
                            "field_798574": null,
                            "field_798576": [
                                1
                            ],
                            "field_798580": null,
                            "field_798728": null
                        },
                        {
                            "id": 2,
                            "order": "2.00000000000000000000",
                            "created_on": "2022-12-13T17:36:38.572672+00:00",
                            "updated_on": "2022-12-16T19:24:23.808185+00:00",
                            "field_790431": null,
                            "field_790432": "2023-01-10",
                            "field_790433": "Bean and baked eggs",
                            "field_790485": "Step 1: Put the tomato-bean salad in a frying pan or casserole dish that can go in the oven or on the stovetop without burning. Simmer for 8 minutes. Spinach needs 3 minutes to soften.\n\nStep 2: Preheat the grill to a medium temperature. Using the back of a spoon, make four indents in the mix. Grill the ham for 5–7 minutes.",
                            "field_790542": [
                                7,
                                8,
                                28,
                                5,
                                9,
                                10
                            ],
                            "field_790562": null,
                            "field_790610": null,
                            "field_790611": null,
                            "field_798574": null,
                            "field_798576": [
                                1
                            ],
                            "field_798580": null,
                            "field_798728": null
                        },
                        {
                            "id": 3,
                            "order": "3.00000000000000000000",
                            "created_on": "2022-12-13T18:55:46.802841+00:00",
                            "updated_on": "2022-12-16T19:24:24.288003+00:00",
                            "field_790431": null,
                            "field_790432": "2023-01-11",
                            "field_790433": "Garlic chicken",
                            "field_790485": "Step 1: Preheat the oven to 200°C (180°C fan). Make a cut in each chicken breast, then use a rolling pin to flatten them.\n\nStep 2: Cut the pastry in half lengthwise and lay it on a baking sheet. Place a chicken breast on each side, then put cheese in the spaces. Salt and pepper should be added to the lemon zest on the pastry before serving. Every package's seal should be on the bottom. Bake for 35 minutes until brown.\n\nStep 3: Boil or steam the greens for 9 minutes, until they are soft. Chicken tossed in oil needs seasoning. Cut lemon wedges into wedges for squeezing over chicken packages.",
                            "field_790542": [
                                11,
                                12,
                                13,
                                14,
                                15,
                                16
                            ],
                            "field_790562": null,
                            "field_790610": null,
                            "field_790611": null,
                            "field_798574": null,
                            "field_798576": [
                                1
                            ],
                            "field_798580": null,
                            "field_798728": null
                        },
                        {
                            "id": 4,
                            "order": "4.00000000000000000000",
                            "created_on": "2022-12-13T18:55:47.369344+00:00",
                            "updated_on": "2022-12-16T19:24:25.774101+00:00",
                            "field_790431": null,
                            "field_790432": "2023-01-12",
                            "field_790433": "Red pepper linguine",
                            "field_790485": "Step 1: Mix roasted red pepper, olive oil, walnuts, and garlic in a food processor.\n\nStep 2: Boil salted water, add pasta, and cook for 2 minutes less than the package says. Drain to save cooking water. Reheat the pasta with the cooking water you saved and the red pepper sauce. Pasta with Parmesan and toasted walnuts Give seasonings.",
                            "field_790542": [
                                17,
                                15,
                                18,
                                19,
                                20,
                                21
                            ],
                            "field_790562": null,
                            "field_790610": null,
                            "field_790611": null,
                            "field_798574": null,
                            "field_798576": [
                                1
                            ],
                            "field_798580": null,
                            "field_798728": null
                        },
                        {
                            "id": 5,
                            "order": "5.00000000000000000000",
                            "created_on": "2022-12-13T18:55:48.193299+00:00",
                            "updated_on": "2022-12-16T19:24:25.785268+00:00",
                            "field_790431": null,
                            "field_790432": "2023-01-14",
                            "field_790433": "Veggie chili",
                            "field_790485": "Turn the oven on and set it to 200°C or 180°C. Cook the vegetables for 12 minutes in a casserole dish. Add the beans and tomatoes, season with salt and pepper, and cook for another 12–17 minutes, until the dish is very hot. Heat the pouch on high for 45 seconds in the microwave, and serve with the chili.",
                            "field_790542": [
                                8,
                                22,
                                23,
                                24
                            ],
                            "field_790562": null,
                            "field_790610": null,
                            "field_790611": null,
                            "field_798574": null,
                            "field_798576": [
                                1
                            ],
                            "field_798580": null,
                            "field_798728": null
                        },
                        {
                            "id": 6,
                            "order": "6.00000000000000000000",
                            "created_on": "2022-12-13T18:55:49.108977+00:00",
                            "updated_on": "2022-12-16T19:24:25.771598+00:00",
                            "field_790431": null,
                            "field_790432": "2023-01-15",
                            "field_790433": "Salmon and spinach pasta",
                            "field_790485": "Follow the directions on the package for how to cook the pasta. Fry the salmon in the oil from the tomatoes for 5–7 minutes. Flake the fish in the pan, then add the spinach and pasta that have been rinsed and drained. Stir for 2–3 minutes, until the spinach has softened.",
                            "field_790542": [
                                25,
                                26,
                                27,
                                28
                            ],
                            "field_790562": null,
                            "field_790610": null,
                            "field_790611": null,
                            "field_798574": null,
                            "field_798576": [
                                1
                            ],
                            "field_798580": null,
                            "field_798728": null
                        },
                        {
                            "id": 7,
                            "order": "7.00000000000000000000",
                            "created_on": "2022-12-13T18:55:50.026121+00:00",
                            "updated_on": "2022-12-16T19:24:25.780324+00:00",
                            "field_790431": null,
                            "field_790432": "2023-01-09",
                            "field_790433": "Pesto and kale pasta",
                            "field_790485": "Step 1: Heat the oil to the right temperature in a large sauce pan over medium heat. Fry the onions for 9 minutes, or until they are easier to shape and have started to caramelize. After adding the kale and the 120 mL of water, keep cooking for another 7 minutes, or until the kale has softened.\n\nStep 2: Follow the directions on the package to cook the pasta. After draining, save a little of the cooking water. Combine the pasta, onion mixture, soft cheese, and pesto. If you need to make the mixture easier to stir, add a splash of the cooking water you saved. Season.",
                            "field_790542": [
                                29,
                                30,
                                31,
                                25,
                                32,
                                33
                            ],
                            "field_790562": null,
                            "field_790610": null,
                            "field_790611": null,
                            "field_798574": null,
                            "field_798576": [
                                1
                            ],
                            "field_798580": null,
                            "field_798728": null
                        },
                        {
                            "id": 8,
                            "order": "8.00000000000000000000",
                            "created_on": "2022-12-13T19:49:13.528468+00:00",
                            "updated_on": "2022-12-16T19:24:26.145284+00:00",
                            "field_790431": null,
                            "field_790432": "2023-01-10",
                            "field_790433": "Kimchi grilled cheese",
                            "field_790485": "Step 1: Place two bread slices. Per slice, use 1 teaspoon butter. Two teaspoons of gochujang, half a cup of cheddar, and half the kimchi go on one slice. Close the sandwich with the butter sides out. Place 3 tablespoons of cheese on the sandwich and press it down to adhere.\n\nStep 2: Melt 1 tablespoon of butter in a medium nonstick skillet. Cook the sandwich with the cheese side down, pushing it down every so often with a heat-safe spatula, until golden brown and crisp, about 5 minutes. Spread 3 Tbsp. of cheese on the sandwich and press to stick. Flip the sandwich and heat it for 5 minutes, until it is golden brown and the cheese has melted. Wipe out the skillet and prepare another sandwich.",
                            "field_790542": [
                                34,
                                35,
                                36,
                                32
                            ],
                            "field_790562": null,
                            "field_790610": null,
                            "field_790611": null,
                            "field_798574": null,
                            "field_798576": [
                                1
                            ],
                            "field_798580": null,
                            "field_798728": null
                        },
                        {
                            "id": 9,
                            "order": "8.00000000000000000000",
                            "created_on": "2022-12-13T19:49:13.531766+00:00",
                            "updated_on": "2022-12-16T19:24:26.531372+00:00",
                            "field_790431": null,
                            "field_790432": "2023-01-11",
                            "field_790433": "Grilled ribs",
                            "field_790485": "Step 1: Put the ribs out in the open for 30 minutes. Cut the pork ribs into pieces with 2 or 3 ribs. Add salt and pepper.\n\nStep 2: Prepare a grill over medium heat. Hold your palm about 7\" above the grill grate for 8–9 seconds to see if the heat is medium.\n\nStep 3: Grill the ribs, bone-side down, for 18 minutes. Turn the ribs over and cook for 18 more minutes, until they are crisp.\n\nStep 4: Cut between the bones of the ribs and put them on a dish.",
                            "field_790542": [
                                37,
                                38,
                                39
                            ],
                            "field_790562": null,
                            "field_790610": null,
                            "field_790611": null,
                            "field_798574": null,
                            "field_798576": [
                                1
                            ],
                            "field_798580": null,
                            "field_798728": null
                        },
                        {
                            "id": 10,
                            "order": "9.00000000000000000000",
                            "created_on": "2022-12-13T19:49:15.066204+00:00",
                            "updated_on": "2022-12-16T19:24:26.881119+00:00",
                            "field_790431": null,
                            "field_790432": "2023-01-12",
                            "field_790433": "Carbonara",
                            "field_790485": "Step 1: Cook the guanciale in a large skillet on medium-low heat for 7 minutes, turning it often. Save the drippings by placing a strainer over a bowl. In a bowl, let the guanciale cool. Whisked egg yolks and egg.\n\nStep 2: Cook the pasta in salted, boiling water until it's al dente, stirring it every so often. Reserve 10 cups pasta boiling liquid.\n\nStep 3: Toss the rigatoni with the egg mixture, 3 tablespoons of the liquid from boiling the pasta, and 2 tablespoon of the guanciale drippings. Mix and stir between batches to melt 3/4 cup of Pecorino. Add black pepper and pasta water by tablespoons until the sauce becomes thicker. Salinize.\n\nStep 4: Divide into bowls. Pecorino-top.",
                            "field_790542": [
                                40,
                                5,
                                25,
                                39,
                                38,
                                21
                            ],
                            "field_790562": null,
                            "field_790610": null,
                            "field_790611": null,
                            "field_798574": null,
                            "field_798576": [
                                1
                            ],
                            "field_798580": null,
                            "field_798728": null
                        },
                        {
                            "id": 11,
                            "order": "10.00000000000000000000",
                            "created_on": "2022-12-13T20:19:16.800264+00:00",
                            "updated_on": "2022-12-16T19:24:27.253749+00:00",
                            "field_790431": null,
                            "field_790432": "2023-01-14",
                            "field_790433": "Pork adobo",
                            "field_790485": "Mix the pork, soy sauce, and garlic in a bowl and let them sit for 45 minutes.\nAdd the pork, oil, and soy sauce marinade to a medium- to large-sized pot and cook over high heat until the pork is golden brown. Watch the garlic carefully so it doesn't burn.\nBring the soy sauce marinade and the rest of the ingredients to a boil. Turn the heat down to a simmer and cook the pork and carrots for 45–60 minutes, uncovered, until they are soft.",
                            "field_790542": [
                                40,
                                1,
                                41,
                                39,
                                38,
                                5,
                                15,
                                42,
                                14,
                                19
                            ],
                            "field_790562": null,
                            "field_790610": null,
                            "field_790611": null,
                            "field_798574": null,
                            "field_798576": [
                                1
                            ],
                            "field_798580": null,
                            "field_798728": null
                        },
                        {
                            "id": 12,
                            "order": "11.00000000000000000000",
                            "created_on": "2022-12-13T20:19:18.201031+00:00",
                            "updated_on": "2022-12-16T21:05:56.228686+00:00",
                            "field_790431": null,
                            "field_790432": "2023-01-15",
                            "field_790433": "Cheesy meaty pasta",
                            "field_790485": "Since this recipe makes a lot, it's best to use a deep skillet.\n\nDon't buy pre-shredded cheese; if you shred it yourself, it will melt better.\n\nIf you want to make half as much, it's easy to cut the recipe in half.\n\nDon't skip the water for the pasta! It's the key to making pasta that's filling.",
                            "field_790542": [
                                9,
                                7,
                                13,
                                17,
                                18,
                                20,
                                21,
                                27,
                                32,
                                23,
                                38
                            ],
                            "field_790562": null,
                            "field_790610": null,
                            "field_790611": null,
                            "field_798574": null,
                            "field_798576": [
                                1
                            ],
                            "field_798580": null,
                            "field_798728": null
                        },
                        {
                            "id": 13,
                            "order": "12.00000000000000000000",
                            "created_on": "2022-12-17T08:45:15.422579+00:00",
                            "updated_on": "2022-12-17T09:10:49.978157+00:00",
                            "field_790431": null,
                            "field_790432": "2023-01-15",
                            "field_790433": "Smoked mackerel and greens",
                            "field_790485": "Step 1: Cover the potatoes and microwave them with a bit of water for 7 minutes.\n\nStep 2: Put the oil in a skillet and heat it over medium heat. Add the leeks and cook for 10 minutes, stirring them often so they don't stick. If you turn up the heat, the potatoes will get crispier.\n\nStep 3: Do four gaps in the pan with the leek mix. Put an egg in each well and sprinkle with salt. Simmer for 7–9 minutes. Pâté in the center of the plate, with horseradish on the side.",
                            "field_790542": [
                                1,
                                2,
                                3,
                                4,
                                5,
                                6
                            ],
                            "field_790562": null,
                            "field_790610": null,
                            "field_790611": null,
                            "field_798574": null,
                            "field_798576": [
                                2
                            ],
                            "field_798580": null,
                            "field_798728": null
                        },
                        {
                            "id": 14,
                            "order": "12.00000000000000000000",
                            "created_on": "2022-12-17T08:45:15.433364+00:00",
                            "updated_on": "2022-12-17T09:11:04.491491+00:00",
                            "field_790431": null,
                            "field_790432": "2023-01-17",
                            "field_790433": "Bean and baked eggs",
                            "field_790485": "Step 1: Put the tomato-bean salad in a frying pan or casserole dish that can go in the oven or on the stovetop without burning. Simmer for 8 minutes. Spinach needs 3 minutes to soften.\n\nStep 2: Preheat the grill to a medium temperature. Using the back of a spoon, make four indents in the mix. Grill the ham for 5–7 minutes.",
                            "field_790542": [
                                5,
                                7,
                                8,
                                9,
                                10,
                                28
                            ],
                            "field_790562": null,
                            "field_790610": null,
                            "field_790611": null,
                            "field_798574": null,
                            "field_798576": [
                                2
                            ],
                            "field_798580": null,
                            "field_798728": null
                        },
                        {
                            "id": 15,
                            "order": "12.00000000000000000000",
                            "created_on": "2022-12-17T08:45:15.865961+00:00",
                            "updated_on": "2022-12-17T09:11:11.753498+00:00",
                            "field_790431": null,
                            "field_790432": "2023-01-18",
                            "field_790433": "Garlic chicken",
                            "field_790485": "Step 1: Preheat the oven to 200°C (180°C fan). Make a cut in each chicken breast, then use a rolling pin to flatten them.\n\nStep 2: Cut the pastry in half lengthwise and lay it on a baking sheet. Place a chicken breast on each side, then put cheese in the spaces. Salt and pepper should be added to the lemon zest on the pastry before serving. Every package's seal should be on the bottom. Bake for 35 minutes until brown.\n\nStep 3: Boil or steam the greens for 9 minutes, until they are soft. Chicken tossed in oil needs seasoning. Cut lemon wedges into wedges for squeezing over chicken packages.",
                            "field_790542": [
                                11,
                                12,
                                13,
                                14,
                                15,
                                16
                            ],
                            "field_790562": null,
                            "field_790610": null,
                            "field_790611": null,
                            "field_798574": null,
                            "field_798576": [
                                2
                            ],
                            "field_798580": null,
                            "field_798728": null
                        },
                        {
                            "id": 16,
                            "order": "13.00000000000000000000",
                            "created_on": "2022-12-17T08:45:17.518706+00:00",
                            "updated_on": "2022-12-17T09:11:17.685964+00:00",
                            "field_790431": null,
                            "field_790432": "2023-01-19",
                            "field_790433": "Red pepper linguine",
                            "field_790485": "Step 1: Mix roasted red pepper, olive oil, walnuts, and garlic in a food processor.\n\nStep 2: Boil salted water, add pasta, and cook for 2 minutes less than the package says. Drain to save cooking water. Reheat the pasta with the cooking water you saved and the red pepper sauce. Pasta with Parmesan and toasted walnuts Give seasonings.",
                            "field_790542": [
                                15,
                                17,
                                18,
                                19,
                                20,
                                21
                            ],
                            "field_790562": null,
                            "field_790610": null,
                            "field_790611": null,
                            "field_798574": null,
                            "field_798576": [
                                2
                            ],
                            "field_798580": null,
                            "field_798728": null
                        },
                        {
                            "id": 17,
                            "order": "14.00000000000000000000",
                            "created_on": "2022-12-17T08:45:18.927749+00:00",
                            "updated_on": "2022-12-17T09:11:24.226217+00:00",
                            "field_790431": null,
                            "field_790432": "2023-01-20",
                            "field_790433": "Veggie chili",
                            "field_790485": "Turn the oven on and set it to 200°C or 180°C. Cook the vegetables for 12 minutes in a casserole dish. Add the beans and tomatoes, season with salt and pepper, and cook for another 12–17 minutes, until the dish is very hot. Heat the pouch on high for 45 seconds in the microwave, and serve with the chili.",
                            "field_790542": [
                                8,
                                22,
                                23,
                                24
                            ],
                            "field_790562": null,
                            "field_790610": null,
                            "field_790611": null,
                            "field_798574": null,
                            "field_798576": [
                                2
                            ],
                            "field_798580": null,
                            "field_798728": null
                        },
                        {
                            "id": 18,
                            "order": "14.00000000000000000000",
                            "created_on": "2022-12-17T08:45:19.867651+00:00",
                            "updated_on": "2022-12-17T09:11:48.601314+00:00",
                            "field_790431": null,
                            "field_790432": "2023-01-22",
                            "field_790433": "Salmon and spinach pasta",
                            "field_790485": "Follow the directions on the package for how to cook the pasta. Fry the salmon in the oil from the tomatoes for 5–7 minutes. Flake the fish in the pan, then add the spinach and pasta that have been rinsed and drained. Stir for 2–3 minutes, until the spinach has softened.",
                            "field_790542": [
                                25,
                                26,
                                27,
                                28
                            ],
                            "field_790562": null,
                            "field_790610": null,
                            "field_790611": null,
                            "field_798574": null,
                            "field_798576": [
                                3
                            ],
                            "field_798580": null,
                            "field_798728": null
                        },
                        {
                            "id": 19,
                            "order": "15.00000000000000000000",
                            "created_on": "2022-12-17T08:45:21.018033+00:00",
                            "updated_on": "2022-12-17T09:11:58.066805+00:00",
                            "field_790431": null,
                            "field_790432": "2023-01-23",
                            "field_790433": "Pesto and kale pasta",
                            "field_790485": "Step 1: Heat the oil to the right temperature in a large sauce pan over medium heat. Fry the onions for 9 minutes, or until they are easier to shape and have started to caramelize. After adding the kale and the 120 mL of water, keep cooking for another 7 minutes, or until the kale has softened.\n\nStep 2: Follow the directions on the package to cook the pasta. After draining, save a little of the cooking water. Combine the pasta, onion mixture, soft cheese, and pesto. If you need to make the mixture easier to stir, add a splash of the cooking water you saved. Season.",
                            "field_790542": [
                                25,
                                29,
                                30,
                                31,
                                32,
                                33
                            ],
                            "field_790562": null,
                            "field_790610": null,
                            "field_790611": null,
                            "field_798574": null,
                            "field_798576": [
                                3
                            ],
                            "field_798580": null,
                            "field_798728": null
                        },
                        {
                            "id": 20,
                            "order": "16.00000000000000000000",
                            "created_on": "2022-12-17T08:45:24.636124+00:00",
                            "updated_on": "2022-12-17T09:12:01.652676+00:00",
                            "field_790431": null,
                            "field_790432": "2023-01-24",
                            "field_790433": "Kimchi grilled cheese",
                            "field_790485": "Step 1: Place two bread slices. Per slice, use 1 teaspoon butter. Two teaspoons of gochujang, half a cup of cheddar, and half the kimchi go on one slice. Close the sandwich with the butter sides out. Place 3 tablespoons of cheese on the sandwich and press it down to adhere.\n\nStep 2: Melt 1 tablespoon of butter in a medium nonstick skillet. Cook the sandwich with the cheese side down, pushing it down every so often with a heat-safe spatula, until golden brown and crisp, about 5 minutes. Spread 3 Tbsp. of cheese on the sandwich and press to stick. Flip the sandwich and heat it for 5 minutes, until it is golden brown and the cheese has melted. Wipe out the skillet and prepare another sandwich.",
                            "field_790542": [
                                32,
                                34,
                                35,
                                36
                            ],
                            "field_790562": null,
                            "field_790610": null,
                            "field_790611": null,
                            "field_798574": null,
                            "field_798576": [
                                3
                            ],
                            "field_798580": null,
                            "field_798728": null
                        },
                        {
                            "id": 21,
                            "order": "17.00000000000000000000",
                            "created_on": "2022-12-17T08:45:28.458418+00:00",
                            "updated_on": "2022-12-17T09:12:06.028126+00:00",
                            "field_790431": null,
                            "field_790432": "2023-01-25",
                            "field_790433": "Grilled ribs",
                            "field_790485": "Step 1: Put the ribs out in the open for 30 minutes. Cut the pork ribs into pieces with 2 or 3 ribs. Add salt and pepper.\n\nStep 2: Prepare a grill over medium heat. Hold your palm about 7\" above the grill grate for 8–9 seconds to see if the heat is medium.\n\nStep 3: Grill the ribs, bone-side down, for 18 minutes. Turn the ribs over and cook for 18 more minutes, until they are crisp.\n\nStep 4: Cut between the bones of the ribs and put them on a dish.",
                            "field_790542": [
                                37,
                                38,
                                39
                            ],
                            "field_790562": null,
                            "field_790610": null,
                            "field_790611": null,
                            "field_798574": null,
                            "field_798576": [
                                3
                            ],
                            "field_798580": null,
                            "field_798728": null
                        },
                        {
                            "id": 22,
                            "order": "18.00000000000000000000",
                            "created_on": "2022-12-17T08:45:31.009910+00:00",
                            "updated_on": "2022-12-17T09:12:15.117579+00:00",
                            "field_790431": null,
                            "field_790432": "2023-01-27",
                            "field_790433": "Carbonara",
                            "field_790485": "Step 1: Cook the guanciale in a large skillet on medium-low heat for 7 minutes, turning it often. Save the drippings by placing a strainer over a bowl. In a bowl, let the guanciale cool. Whisked egg yolks and egg.\n\nStep 2: Cook the pasta in salted, boiling water until it's al dente, stirring it every so often. Reserve 10 cups pasta boiling liquid.\n\nStep 3: Toss the rigatoni with the egg mixture, 3 tablespoons of the liquid from boiling the pasta, and 2 tablespoon of the guanciale drippings. Mix and stir between batches to melt 3/4 cup of Pecorino. Add black pepper and pasta water by tablespoons until the sauce becomes thicker. Salinize.\n\nStep 4: Divide into bowls. Pecorino-top.",
                            "field_790542": [
                                5,
                                21,
                                25,
                                38,
                                39,
                                40
                            ],
                            "field_790562": null,
                            "field_790610": null,
                            "field_790611": null,
                            "field_798574": null,
                            "field_798576": [
                                3
                            ],
                            "field_798580": null,
                            "field_798728": null
                        },
                        {
                            "id": 23,
                            "order": "19.00000000000000000000",
                            "created_on": "2022-12-17T08:45:33.399405+00:00",
                            "updated_on": "2022-12-17T09:12:21.389806+00:00",
                            "field_790431": null,
                            "field_790432": "2023-01-28",
                            "field_790433": "Pork adobo",
                            "field_790485": "Mix the pork, soy sauce, and garlic in a bowl and let them sit for 45 minutes.\nAdd the pork, oil, and soy sauce marinade to a medium- to large-sized pot and cook over high heat until the pork is golden brown. Watch the garlic carefully so it doesn't burn.\nBring the soy sauce marinade and the rest of the ingredients to a boil. Turn the heat down to a simmer and cook the pork and carrots for 45–60 minutes, uncovered, until they are soft.",
                            "field_790542": [
                                1,
                                5,
                                14,
                                15,
                                19,
                                38,
                                39,
                                40,
                                41,
                                42
                            ],
                            "field_790562": null,
                            "field_790610": null,
                            "field_790611": null,
                            "field_798574": null,
                            "field_798576": [
                                3
                            ],
                            "field_798580": null,
                            "field_798728": null
                        },
                        {
                            "id": 24,
                            "order": "20.00000000000000000000",
                            "created_on": "2022-12-17T09:30:06.314780+00:00",
                            "updated_on": "2022-12-17T09:47:26.432574+00:00",
                            "field_790431": null,
                            "field_790432": "2023-01-29",
                            "field_790433": "Smoked mackerel and greens",
                            "field_790485": "Step 1: Cover the potatoes and microwave them with a bit of water for 7 minutes.\n\nStep 2: Put the oil in a skillet and heat it over medium heat. Add the leeks and cook for 10 minutes, stirring them often so they don't stick. If you turn up the heat, the potatoes will get crispier.\n\nStep 3: Do four gaps in the pan with the leek mix. Put an egg in each well and sprinkle with salt. Simmer for 7–9 minutes. Pâté in the center of the plate, with horseradish on the side.",
                            "field_790542": [
                                1,
                                2,
                                3,
                                4,
                                5,
                                6
                            ],
                            "field_790562": null,
                            "field_790610": null,
                            "field_790611": null,
                            "field_798574": null,
                            "field_798576": [
                                4
                            ],
                            "field_798580": null,
                            "field_798728": null
                        },
                        {
                            "id": 25,
                            "order": "21.00000000000000000000",
                            "created_on": "2022-12-17T09:30:08.772951+00:00",
                            "updated_on": "2022-12-17T09:47:33.294145+00:00",
                            "field_790431": null,
                            "field_790432": "2023-01-30",
                            "field_790433": "Bean and baked eggs",
                            "field_790485": "Step 1: Put the tomato-bean salad in a frying pan or casserole dish that can go in the oven or on the stovetop without burning. Simmer for 8 minutes. Spinach needs 3 minutes to soften.\n\nStep 2: Preheat the grill to a medium temperature. Using the back of a spoon, make four indents in the mix. Grill the ham for 5–7 minutes.",
                            "field_790542": [
                                5,
                                7,
                                8,
                                9,
                                10,
                                28
                            ],
                            "field_790562": null,
                            "field_790610": null,
                            "field_790611": null,
                            "field_798574": null,
                            "field_798576": [
                                4
                            ],
                            "field_798580": null,
                            "field_798728": null
                        },
                        {
                            "id": 26,
                            "order": "21.00000000000000000000",
                            "created_on": "2022-12-17T09:30:09.651444+00:00",
                            "updated_on": "2022-12-17T09:47:49.157473+00:00",
                            "field_790431": null,
                            "field_790432": "2023-01-31",
                            "field_790433": "Garlic chicken",
                            "field_790485": "Step 1: Preheat the oven to 200°C (180°C fan). Make a cut in each chicken breast, then use a rolling pin to flatten them.\n\nStep 2: Cut the pastry in half lengthwise and lay it on a baking sheet. Place a chicken breast on each side, then put cheese in the spaces. Salt and pepper should be added to the lemon zest on the pastry before serving. Every package's seal should be on the bottom. Bake for 35 minutes until brown.\n\nStep 3: Boil or steam the greens for 9 minutes, until they are soft. Chicken tossed in oil needs seasoning. Cut lemon wedges into wedges for squeezing over chicken packages.",
                            "field_790542": [
                                11,
                                12,
                                13,
                                14,
                                15,
                                16
                            ],
                            "field_790562": null,
                            "field_790610": null,
                            "field_790611": null,
                            "field_798574": null,
                            "field_798576": [
                                4
                            ],
                            "field_798580": null,
                            "field_798728": null
                        },
                        {
                            "id": 27,
                            "order": "22.00000000000000000000",
                            "created_on": "2022-12-17T09:30:11.090173+00:00",
                            "updated_on": "2022-12-17T09:47:54.249103+00:00",
                            "field_790431": null,
                            "field_790432": "2023-02-01",
                            "field_790433": "Red pepper linguine",
                            "field_790485": "Step 1: Mix roasted red pepper, olive oil, walnuts, and garlic in a food processor.\n\nStep 2: Boil salted water, add pasta, and cook for 2 minutes less than the package says. Drain to save cooking water. Reheat the pasta with the cooking water you saved and the red pepper sauce. Pasta with Parmesan and toasted walnuts Give seasonings.",
                            "field_790542": [
                                15,
                                17,
                                18,
                                19,
                                20,
                                21
                            ],
                            "field_790562": null,
                            "field_790610": null,
                            "field_790611": null,
                            "field_798574": null,
                            "field_798576": [
                                4
                            ],
                            "field_798580": null,
                            "field_798728": null
                        },
                        {
                            "id": 28,
                            "order": "23.00000000000000000000",
                            "created_on": "2022-12-17T09:30:14.889094+00:00",
                            "updated_on": "2022-12-17T09:47:59.915980+00:00",
                            "field_790431": null,
                            "field_790432": "2023-02-02",
                            "field_790433": "Veggie chili",
                            "field_790485": "Turn the oven on and set it to 200°C or 180°C. Cook the vegetables for 12 minutes in a casserole dish. Add the beans and tomatoes, season with salt and pepper, and cook for another 12–17 minutes, until the dish is very hot. Heat the pouch on high for 45 seconds in the microwave, and serve with the chili.",
                            "field_790542": [
                                8,
                                22,
                                23,
                                24
                            ],
                            "field_790562": null,
                            "field_790610": null,
                            "field_790611": null,
                            "field_798574": null,
                            "field_798576": [
                                4
                            ],
                            "field_798580": null,
                            "field_798728": null
                        },
                        {
                            "id": 29,
                            "order": "24.00000000000000000000",
                            "created_on": "2022-12-17T20:06:36.568601+00:00",
                            "updated_on": "2022-12-17T20:34:19.371091+00:00",
                            "field_790431": null,
                            "field_790432": "2023-02-14",
                            "field_790433": "Smoked mackerel and greens",
                            "field_790485": "Step 1: Cover the potatoes and microwave them with a bit of water for 7 minutes.\n\nStep 2: Put the oil in a skillet and heat it over medium heat. Add the leeks and cook for 10 minutes, stirring them often so they don't stick. If you turn up the heat, the potatoes will get crispier.\n\nStep 3: Do four gaps in the pan with the leek mix. Put an egg in each well and sprinkle with salt. Simmer for 7–9 minutes. Pâté in the center of the plate, with horseradish on the side.",
                            "field_790542": [
                                1,
                                3,
                                4,
                                5,
                                6,
                                2
                            ],
                            "field_790562": null,
                            "field_790610": null,
                            "field_790611": null,
                            "field_798574": null,
                            "field_798576": [
                                5
                            ],
                            "field_798580": null,
                            "field_798728": null
                        },
                        {
                            "id": 30,
                            "order": "24.00000000000000000000",
                            "created_on": "2022-12-17T20:06:37.360376+00:00",
                            "updated_on": "2022-12-17T20:34:19.414145+00:00",
                            "field_790431": null,
                            "field_790432": "2023-02-15",
                            "field_790433": "Bean and baked eggs",
                            "field_790485": "Step 1: Put the tomato-bean salad in a frying pan or casserole dish that can go in the oven or on the stovetop without burning. Simmer for 8 minutes. Spinach needs 3 minutes to soften.\n\nStep 2: Preheat the grill to a medium temperature. Using the back of a spoon, make four indents in the mix. Grill the ham for 5–7 minutes.",
                            "field_790542": [
                                5,
                                7,
                                8,
                                9,
                                10,
                                28
                            ],
                            "field_790562": null,
                            "field_790610": null,
                            "field_790611": null,
                            "field_798574": null,
                            "field_798576": [
                                5
                            ],
                            "field_798580": null,
                            "field_798728": null
                        },
                        {
                            "id": 31,
                            "order": "25.00000000000000000000",
                            "created_on": "2022-12-17T20:06:38.596130+00:00",
                            "updated_on": "2022-12-17T20:34:19.442282+00:00",
                            "field_790431": null,
                            "field_790432": "2023-02-17",
                            "field_790433": "Garlic chicken",
                            "field_790485": "Step 1: Preheat the oven to 200°C (180°C fan). Make a cut in each chicken breast, then use a rolling pin to flatten them.\n\nStep 2: Cut the pastry in half lengthwise and lay it on a baking sheet. Place a chicken breast on each side, then put cheese in the spaces. Salt and pepper should be added to the lemon zest on the pastry before serving. Every package's seal should be on the bottom. Bake for 35 minutes until brown.\n\nStep 3: Boil or steam the greens for 9 minutes, until they are soft. Chicken tossed in oil needs seasoning. Cut lemon wedges into wedges for squeezing over chicken packages.",
                            "field_790542": [
                                11,
                                12,
                                13,
                                14,
                                15,
                                16
                            ],
                            "field_790562": null,
                            "field_790610": null,
                            "field_790611": null,
                            "field_798574": null,
                            "field_798576": [
                                5
                            ],
                            "field_798580": null,
                            "field_798728": null
                        },
                        {
                            "id": 32,
                            "order": "26.00000000000000000000",
                            "created_on": "2022-12-17T20:06:43.004010+00:00",
                            "updated_on": "2022-12-17T20:34:19.475729+00:00",
                            "field_790431": null,
                            "field_790432": "2023-02-18",
                            "field_790433": "Red pepper linguine",
                            "field_790485": "Step 1: Mix roasted red pepper, olive oil, walnuts, and garlic in a food processor.\n\nStep 2: Boil salted water, add pasta, and cook for 2 minutes less than the package says. Drain to save cooking water. Reheat the pasta with the cooking water you saved and the red pepper sauce. Pasta with Parmesan and toasted walnuts Give seasonings.",
                            "field_790542": [
                                15,
                                17,
                                18,
                                19,
                                20,
                                21
                            ],
                            "field_790562": null,
                            "field_790610": null,
                            "field_790611": null,
                            "field_798574": null,
                            "field_798576": [
                                5
                            ],
                            "field_798580": null,
                            "field_798728": null
                        },
                        {
                            "id": 33,
                            "order": "27.00000000000000000000",
                            "created_on": "2022-12-17T20:06:45.689052+00:00",
                            "updated_on": "2022-12-17T20:34:19.496976+00:00",
                            "field_790431": null,
                            "field_790432": "2023-02-19",
                            "field_790433": "Veggie chili",
                            "field_790485": "Turn the oven on and set it to 200°C or 180°C. Cook the vegetables for 12 minutes in a casserole dish. Add the beans and tomatoes, season with salt and pepper, and cook for another 12–17 minutes, until the dish is very hot. Heat the pouch on high for 45 seconds in the microwave, and serve with the chili.",
                            "field_790542": [
                                8,
                                22,
                                23,
                                24
                            ],
                            "field_790562": null,
                            "field_790610": null,
                            "field_790611": null,
                            "field_798574": null,
                            "field_798576": [
                                5
                            ],
                            "field_798580": null,
                            "field_798728": null
                        }
                    ]
                },
                {
                    "id": 122798,
                    "name": "Activity plans",
                    "order": 7,
                    "fields": [
                        {
                            "id": 790486,
                            "type": "formula",
                            "name": "ID",
                            "order": 0,
                            "primary": true,
                            "error": null,
                            "date_format": null,
                            "date_include_time": null,
                            "date_time_format": null,
                            "number_decimal_places": null,
                            "array_formula_type": null,
                            "formula": "concat( \n  \"A\", \n  if( \n    row_id() < 10, \n    concat(\"0000\", row_id()), \n    if( \n      row_id() < 100, \n      concat(\"000\", row_id()), \n      if( \n        row_id() < 1000, \n        concat(\"00\", row_id()), \n        if( \n          row_id() < 10000, \n          concat(\"0\", row_id()), \n          row_id() \n        ) \n      ) \n    ) \n  ) \n)",
                            "formula_type": "text"
                        },
                        {
                            "id": 790487,
                            "type": "date",
                            "name": "Plan date",
                            "order": 1,
                            "primary": false,
                            "date_format": "ISO",
                            "date_include_time": false,
                            "date_time_format": "24"
                        },
                        {
                            "id": 790488,
                            "type": "text",
                            "name": "Activity",
                            "order": 2,
                            "primary": false,
                            "text_default": ""
                        },
                        {
                            "id": 790489,
                            "type": "long_text",
                            "name": "Notes",
                            "order": 3,
                            "primary": false
                        },
                        {
                            "id": 790547,
                            "type": "link_row",
                            "name": "Items",
                            "order": 4,
                            "primary": false,
                            "link_row_table_id": 122785,
                            "link_row_related_field_id": 790548,
                            "has_related_field": true
                        },
                        {
                            "id": 790566,
                            "type": "formula",
                            "name": "Estimated cost",
                            "order": 6,
                            "primary": false,
                            "error": null,
                            "date_format": null,
                            "date_include_time": null,
                            "date_time_format": null,
                            "number_decimal_places": 2,
                            "array_formula_type": null,
                            "formula": "sum( \n  lookup(\"Items\", \"Total price\") \n)",
                            "formula_type": "number"
                        },
                        {
                            "id": 790567,
                            "type": "created_on",
                            "name": "Date added",
                            "order": 7,
                            "primary": false,
                            "date_format": "ISO",
                            "date_include_time": true,
                            "date_time_format": "24",
                            "timezone": "Asia/Singapore"
                        },
                        {
                            "id": 790568,
                            "type": "last_modified",
                            "name": "Date updated",
                            "order": 8,
                            "primary": false,
                            "date_format": "ISO",
                            "date_include_time": true,
                            "date_time_format": "24",
                            "timezone": "Asia/Singapore"
                        },
                        {
                            "id": 798575,
                            "type": "formula",
                            "name": "Schedule status",
                            "order": 10,
                            "primary": false,
                            "error": null,
                            "date_format": null,
                            "date_include_time": null,
                            "date_time_format": null,
                            "number_decimal_places": null,
                            "array_formula_type": "text",
                            "formula": "if( \n  or( \n    isblank(field(\"Plan date\")), \n    isblank(field(\"Grocery day\")) \n  ), \n  \"\", \n  if( \n    field(\"Grocery before plan\") < 0, \n    \"😡 Missed\", \n    if( \n      and( \n        field(\"Grocery before plan\") = 0, \n        field(\"Is grocery fulfilled\") = \"No\" \n      ), \n      \"🛒 On grocery day\", \n      if( \n        and( \n          field(\"Grocery before plan\") > 7, \n          field(\"Is grocery fulfilled\") = \"No\" \n        ), \n        \"✍🏼 To do\", \n        if( \n          field(\"Is grocery fulfilled\") = \"Yes\", \n          \"💸 Completed\", \n          \"📅 Timely\" \n        ) \n      ) \n    ) \n  ) \n)",
                            "formula_type": "array"
                        },
                        {
                            "id": 798578,
                            "type": "link_row",
                            "name": "Grocery day",
                            "order": 11,
                            "primary": false,
                            "link_row_table_id": 123540,
                            "link_row_related_field_id": 798579,
                            "has_related_field": true
                        },
                        {
                            "id": 798671,
                            "type": "formula",
                            "name": "Grocery before plan",
                            "order": 12,
                            "primary": false,
                            "error": null,
                            "date_format": null,
                            "date_include_time": null,
                            "date_time_format": null,
                            "number_decimal_places": 0,
                            "array_formula_type": null,
                            "formula": "tonumber( \n  join( \n    totext( \n      date_diff( \n        \"day\", \n        field(\"Grocery day\"), \n        field(\"Plan date\") \n      ) \n    ), \n    \"\" \n  ) \n)",
                            "formula_type": "number"
                        },
                        {
                            "id": 798726,
                            "type": "formula",
                            "name": "Is grocery fulfilled",
                            "order": 13,
                            "primary": false,
                            "error": null,
                            "date_format": null,
                            "date_include_time": null,
                            "date_time_format": null,
                            "number_decimal_places": null,
                            "array_formula_type": null,
                            "formula": "join( \n  if( \n    lookup(\"Grocery day\", \"Is fulfilled\"), \n    \"Yes\", \n    \"No\" \n  ), \n  \"\" \n)",
                            "formula_type": "text"
                        }
                    ],
                    "views": [
                        {
                            "id": 185846,
                            "type": "grid",
                            "name": "All activity plans",
                            "order": 1,
                            "filter_type": "AND",
                            "filters_disabled": false,
                            "filters": [],
                            "sortings": [
                                {
                                    "id": 58973,
                                    "field_id": 798726,
                                    "order": "ASC"
                                },
                                {
                                    "id": 58974,
                                    "field_id": 790487,
                                    "order": "ASC"
                                }
                            ],
                            "decorations": [
                                {
                                    "id": 8624,
                                    "type": "background_color",
                                    "value_provider_type": "conditional_color",
                                    "value_provider_conf": {
                                        "colors": [
                                            {
                                                "color": "light-red",
                                                "filters": [
                                                    {
                                                        "id": "5785fdc9-631a-4227-97d6-b813af16da50",
                                                        "type": "not_empty",
                                                        "field": 798671,
                                                        "value": ""
                                                    },
                                                    {
                                                        "id": "8c7f019a-eb23-403e-827f-7d56778c3569",
                                                        "type": "lower_than",
                                                        "field": 798671,
                                                        "value": "0"
                                                    }
                                                ],
                                                "operator": "AND"
                                            },
                                            {
                                                "color": "light-green",
                                                "filters": [
                                                    {
                                                        "id": "58dcff34-069e-4ef9-bdda-64b321bc6fbc",
                                                        "type": "equal",
                                                        "field": 798726,
                                                        "value": "Yes"
                                                    }
                                                ],
                                                "operator": "AND"
                                            }
                                        ]
                                    },
                                    "order": 1
                                }
                            ],
                            "public": false,
                            "row_identifier_type": "count",
                            "field_options": [
                                {
                                    "id": 1145362,
                                    "field_id": 790486,
                                    "width": 100,
                                    "hidden": false,
                                    "order": 0,
                                    "aggregation_type": "",
                                    "aggregation_raw_type": ""
                                },
                                {
                                    "id": 1145363,
                                    "field_id": 790487,
                                    "width": 118,
                                    "hidden": false,
                                    "order": 1,
                                    "aggregation_type": "not_empty_percentage",
                                    "aggregation_raw_type": "empty_count"
                                },
                                {
                                    "id": 1145364,
                                    "field_id": 790488,
                                    "width": 180,
                                    "hidden": false,
                                    "order": 3,
                                    "aggregation_type": "unique_count",
                                    "aggregation_raw_type": "unique_count"
                                },
                                {
                                    "id": 1145365,
                                    "field_id": 790489,
                                    "width": 184,
                                    "hidden": false,
                                    "order": 4,
                                    "aggregation_type": "",
                                    "aggregation_raw_type": ""
                                },
                                {
                                    "id": 1145419,
                                    "field_id": 790547,
                                    "width": 213,
                                    "hidden": false,
                                    "order": 6,
                                    "aggregation_type": "not_empty_percentage",
                                    "aggregation_raw_type": "empty_count"
                                },
                                {
                                    "id": 1145441,
                                    "field_id": 790566,
                                    "width": 151,
                                    "hidden": false,
                                    "order": 8,
                                    "aggregation_type": "average",
                                    "aggregation_raw_type": "average"
                                },
                                {
                                    "id": 1145442,
                                    "field_id": 790567,
                                    "width": 148,
                                    "hidden": false,
                                    "order": 9,
                                    "aggregation_type": "",
                                    "aggregation_raw_type": ""
                                },
                                {
                                    "id": 1145504,
                                    "field_id": 790568,
                                    "width": 148,
                                    "hidden": false,
                                    "order": 10,
                                    "aggregation_type": "",
                                    "aggregation_raw_type": ""
                                },
                                {
                                    "id": 1157951,
                                    "field_id": 798575,
                                    "width": 157,
                                    "hidden": false,
                                    "order": 2,
                                    "aggregation_type": "",
                                    "aggregation_raw_type": ""
                                },
                                {
                                    "id": 1157954,
                                    "field_id": 798578,
                                    "width": 135,
                                    "hidden": false,
                                    "order": 5,
                                    "aggregation_type": "not_empty_percentage",
                                    "aggregation_raw_type": "empty_count"
                                },
                                {
                                    "id": 1158102,
                                    "field_id": 798671,
                                    "width": 183,
                                    "hidden": true,
                                    "order": 32767,
                                    "aggregation_type": "average",
                                    "aggregation_raw_type": "average"
                                },
                                {
                                    "id": 1158150,
                                    "field_id": 798726,
                                    "width": 170,
                                    "hidden": true,
                                    "order": 32767,
                                    "aggregation_type": "",
                                    "aggregation_raw_type": ""
                                }
                            ]
                        },
                        {
                            "id": 187948,
                            "type": "form",
                            "name": "Add activity plan",
                            "order": 2,
                            "public": false,
                            "title": "Add a planned activity",
                            "description": "",
                            "cover_image": {
                                "name": "RCZKcudDZhQA154j7J6y2YZ3BRGURj4C_58e80b2d46fe1571e1d09c213d568e0c1712e58f220d32341fee578a77a87bd0.jpg",
                                "original_name": "Header.HotAirBalloons.01.jpg"
                            },
                            "logo_image": null,
                            "submit_text": "Submit",
                            "submit_action": "MESSAGE",
                            "submit_action_message": "The activity plan was successfully added to the database. To add more, please reload this page.",
                            "submit_action_redirect_url": "",
                            "field_options": [
                                {
                                    "id": 114747,
                                    "field_id": 790487,
                                    "name": "",
                                    "description": "Please enter the date you plan to have this activity.",
                                    "enabled": true,
                                    "required": true,
                                    "order": 0,
                                    "show_when_matching_conditions": false,
                                    "condition_type": "AND",
                                    "conditions": []
                                },
                                {
                                    "id": 114755,
                                    "field_id": 798578,
                                    "name": "",
                                    "description": "Please indicate the date when you plan to buy all items required for this plan.",
                                    "enabled": true,
                                    "required": true,
                                    "order": 1,
                                    "show_when_matching_conditions": false,
                                    "condition_type": "AND",
                                    "conditions": []
                                },
                                {
                                    "id": 114748,
                                    "field_id": 790488,
                                    "name": "",
                                    "description": "Please enter the name or title of this planned activity.",
                                    "enabled": true,
                                    "required": true,
                                    "order": 2,
                                    "show_when_matching_conditions": false,
                                    "condition_type": "AND",
                                    "conditions": []
                                },
                                {
                                    "id": 114749,
                                    "field_id": 790489,
                                    "name": "",
                                    "description": "Type in any other remarks or brief description about this planned activity.",
                                    "enabled": true,
                                    "required": false,
                                    "order": 3,
                                    "show_when_matching_conditions": false,
                                    "condition_type": "AND",
                                    "conditions": []
                                },
                                {
                                    "id": 114750,
                                    "field_id": 790547,
                                    "name": "",
                                    "description": "Please select all grocery items needed for this activity.",
                                    "enabled": true,
                                    "required": false,
                                    "order": 4,
                                    "show_when_matching_conditions": false,
                                    "condition_type": "AND",
                                    "conditions": []
                                },
                                {
                                    "id": 114746,
                                    "field_id": 790486,
                                    "name": "",
                                    "description": "",
                                    "enabled": false,
                                    "required": true,
                                    "order": 5,
                                    "show_when_matching_conditions": false,
                                    "condition_type": "AND",
                                    "conditions": []
                                },
                                {
                                    "id": 114751,
                                    "field_id": 790566,
                                    "name": "",
                                    "description": "",
                                    "enabled": false,
                                    "required": true,
                                    "order": 6,
                                    "show_when_matching_conditions": false,
                                    "condition_type": "AND",
                                    "conditions": []
                                },
                                {
                                    "id": 114752,
                                    "field_id": 790567,
                                    "name": "",
                                    "description": "",
                                    "enabled": false,
                                    "required": true,
                                    "order": 7,
                                    "show_when_matching_conditions": false,
                                    "condition_type": "AND",
                                    "conditions": []
                                },
                                {
                                    "id": 114753,
                                    "field_id": 790568,
                                    "name": "",
                                    "description": "",
                                    "enabled": false,
                                    "required": true,
                                    "order": 8,
                                    "show_when_matching_conditions": false,
                                    "condition_type": "AND",
                                    "conditions": []
                                },
                                {
                                    "id": 114754,
                                    "field_id": 798575,
                                    "name": "",
                                    "description": "",
                                    "enabled": false,
                                    "required": true,
                                    "order": 9,
                                    "show_when_matching_conditions": false,
                                    "condition_type": "AND",
                                    "conditions": []
                                },
                                {
                                    "id": 114756,
                                    "field_id": 798671,
                                    "name": "",
                                    "description": "",
                                    "enabled": false,
                                    "required": true,
                                    "order": 10,
                                    "show_when_matching_conditions": false,
                                    "condition_type": "AND",
                                    "conditions": []
                                },
                                {
                                    "id": 114757,
                                    "field_id": 798726,
                                    "name": "",
                                    "description": "",
                                    "enabled": false,
                                    "required": true,
                                    "order": 11,
                                    "show_when_matching_conditions": false,
                                    "condition_type": "AND",
                                    "conditions": []
                                }
                            ]
                        },
                        {
                            "id": 187957,
                            "type": "grid",
                            "name": "Activity plans to do shopping",
                            "order": 3,
                            "filter_type": "AND",
                            "filters_disabled": false,
                            "filters": [
                                {
                                    "id": 74921,
                                    "field_id": 798726,
                                    "type": "equal",
                                    "value": "No"
                                }
                            ],
                            "sortings": [
                                {
                                    "id": 59023,
                                    "field_id": 790487,
                                    "order": "ASC"
                                }
                            ],
                            "decorations": [
                                {
                                    "id": 8659,
                                    "type": "background_color",
                                    "value_provider_type": "conditional_color",
                                    "value_provider_conf": {
                                        "colors": [
                                            {
                                                "color": "light-red",
                                                "filters": [
                                                    {
                                                        "id": "9bae728f-6d10-4ce5-b64b-16f9816ddce7",
                                                        "type": "not_empty",
                                                        "field": 798671,
                                                        "value": ""
                                                    },
                                                    {
                                                        "id": "2e21f643-98f3-4fc2-a226-272ae5a96518",
                                                        "type": "lower_than",
                                                        "field": 798671,
                                                        "value": "0"
                                                    }
                                                ],
                                                "operator": "AND"
                                            }
                                        ]
                                    },
                                    "order": 1
                                }
                            ],
                            "public": false,
                            "row_identifier_type": "count",
                            "field_options": [
                                {
                                    "id": 1159151,
                                    "field_id": 790486,
                                    "width": 100,
                                    "hidden": false,
                                    "order": 0,
                                    "aggregation_type": "",
                                    "aggregation_raw_type": ""
                                },
                                {
                                    "id": 1159152,
                                    "field_id": 790487,
                                    "width": 118,
                                    "hidden": false,
                                    "order": 1,
                                    "aggregation_type": "not_empty_percentage",
                                    "aggregation_raw_type": "empty_count"
                                },
                                {
                                    "id": 1159153,
                                    "field_id": 790488,
                                    "width": 180,
                                    "hidden": false,
                                    "order": 3,
                                    "aggregation_type": "unique_count",
                                    "aggregation_raw_type": "unique_count"
                                },
                                {
                                    "id": 1159154,
                                    "field_id": 790489,
                                    "width": 184,
                                    "hidden": false,
                                    "order": 4,
                                    "aggregation_type": "",
                                    "aggregation_raw_type": ""
                                },
                                {
                                    "id": 1159155,
                                    "field_id": 790547,
                                    "width": 213,
                                    "hidden": false,
                                    "order": 6,
                                    "aggregation_type": "not_empty_percentage",
                                    "aggregation_raw_type": "empty_count"
                                },
                                {
                                    "id": 1159156,
                                    "field_id": 790566,
                                    "width": 151,
                                    "hidden": false,
                                    "order": 8,
                                    "aggregation_type": "average",
                                    "aggregation_raw_type": "average"
                                },
                                {
                                    "id": 1159157,
                                    "field_id": 790567,
                                    "width": 148,
                                    "hidden": false,
                                    "order": 9,
                                    "aggregation_type": "",
                                    "aggregation_raw_type": ""
                                },
                                {
                                    "id": 1159158,
                                    "field_id": 790568,
                                    "width": 148,
                                    "hidden": false,
                                    "order": 10,
                                    "aggregation_type": "",
                                    "aggregation_raw_type": ""
                                },
                                {
                                    "id": 1159159,
                                    "field_id": 798575,
                                    "width": 157,
                                    "hidden": false,
                                    "order": 2,
                                    "aggregation_type": "",
                                    "aggregation_raw_type": ""
                                },
                                {
                                    "id": 1159160,
                                    "field_id": 798578,
                                    "width": 135,
                                    "hidden": false,
                                    "order": 5,
                                    "aggregation_type": "not_empty_percentage",
                                    "aggregation_raw_type": "empty_count"
                                },
                                {
                                    "id": 1159161,
                                    "field_id": 798671,
                                    "width": 183,
                                    "hidden": true,
                                    "order": 32767,
                                    "aggregation_type": "average",
                                    "aggregation_raw_type": "average"
                                },
                                {
                                    "id": 1159162,
                                    "field_id": 798726,
                                    "width": 170,
                                    "hidden": true,
                                    "order": 32767,
                                    "aggregation_type": "",
                                    "aggregation_raw_type": ""
                                }
                            ]
                        },
                        {
                            "id": 187983,
                            "type": "grid",
                            "name": "Activity plans for the week",
                            "order": 4,
                            "filter_type": "AND",
                            "filters_disabled": false,
                            "filters": [
                                {
                                    "id": 74933,
                                    "field_id": 790487,
                                    "type": "date_is",
                                    "value": "Asia/Singapore??this_week"
                                }
                            ],
                            "sortings": [
                                {
                                    "id": 59038,
                                    "field_id": 798726,
                                    "order": "ASC"
                                },
                                {
                                    "id": 59039,
                                    "field_id": 790487,
                                    "order": "ASC"
                                }
                            ],
                            "decorations": [
                                {
                                    "id": 8662,
                                    "type": "background_color",
                                    "value_provider_type": "conditional_color",
                                    "value_provider_conf": {
                                        "colors": [
                                            {
                                                "color": "light-red",
                                                "filters": [
                                                    {
                                                        "id": "5785fdc9-631a-4227-97d6-b813af16da50",
                                                        "type": "not_empty",
                                                        "field": 798671,
                                                        "value": ""
                                                    },
                                                    {
                                                        "id": "8c7f019a-eb23-403e-827f-7d56778c3569",
                                                        "type": "lower_than",
                                                        "field": 798671,
                                                        "value": "0"
                                                    }
                                                ],
                                                "operator": "AND"
                                            },
                                            {
                                                "color": "light-green",
                                                "filters": [
                                                    {
                                                        "id": "58dcff34-069e-4ef9-bdda-64b321bc6fbc",
                                                        "type": "equal",
                                                        "field": 798726,
                                                        "value": "Yes"
                                                    }
                                                ],
                                                "operator": "AND"
                                            }
                                        ]
                                    },
                                    "order": 1
                                }
                            ],
                            "public": false,
                            "row_identifier_type": "count",
                            "field_options": [
                                {
                                    "id": 1159317,
                                    "field_id": 790486,
                                    "width": 100,
                                    "hidden": false,
                                    "order": 0,
                                    "aggregation_type": "",
                                    "aggregation_raw_type": ""
                                },
                                {
                                    "id": 1159318,
                                    "field_id": 790487,
                                    "width": 118,
                                    "hidden": false,
                                    "order": 1,
                                    "aggregation_type": "not_empty_percentage",
                                    "aggregation_raw_type": "empty_count"
                                },
                                {
                                    "id": 1159319,
                                    "field_id": 790488,
                                    "width": 180,
                                    "hidden": false,
                                    "order": 3,
                                    "aggregation_type": "unique_count",
                                    "aggregation_raw_type": "unique_count"
                                },
                                {
                                    "id": 1159320,
                                    "field_id": 790489,
                                    "width": 184,
                                    "hidden": false,
                                    "order": 4,
                                    "aggregation_type": "",
                                    "aggregation_raw_type": ""
                                },
                                {
                                    "id": 1159321,
                                    "field_id": 790547,
                                    "width": 213,
                                    "hidden": false,
                                    "order": 6,
                                    "aggregation_type": "not_empty_percentage",
                                    "aggregation_raw_type": "empty_count"
                                },
                                {
                                    "id": 1159322,
                                    "field_id": 790566,
                                    "width": 151,
                                    "hidden": false,
                                    "order": 8,
                                    "aggregation_type": "average",
                                    "aggregation_raw_type": "average"
                                },
                                {
                                    "id": 1159323,
                                    "field_id": 790567,
                                    "width": 148,
                                    "hidden": false,
                                    "order": 9,
                                    "aggregation_type": "",
                                    "aggregation_raw_type": ""
                                },
                                {
                                    "id": 1159324,
                                    "field_id": 790568,
                                    "width": 148,
                                    "hidden": false,
                                    "order": 10,
                                    "aggregation_type": "",
                                    "aggregation_raw_type": ""
                                },
                                {
                                    "id": 1159325,
                                    "field_id": 798575,
                                    "width": 157,
                                    "hidden": false,
                                    "order": 2,
                                    "aggregation_type": "",
                                    "aggregation_raw_type": ""
                                },
                                {
                                    "id": 1159326,
                                    "field_id": 798578,
                                    "width": 135,
                                    "hidden": false,
                                    "order": 5,
                                    "aggregation_type": "not_empty_percentage",
                                    "aggregation_raw_type": "empty_count"
                                },
                                {
                                    "id": 1159327,
                                    "field_id": 798671,
                                    "width": 183,
                                    "hidden": true,
                                    "order": 32767,
                                    "aggregation_type": "average",
                                    "aggregation_raw_type": "average"
                                },
                                {
                                    "id": 1159328,
                                    "field_id": 798726,
                                    "width": 170,
                                    "hidden": true,
                                    "order": 32767,
                                    "aggregation_type": "",
                                    "aggregation_raw_type": ""
                                }
                            ]
                        },
                        {
                            "id": 187984,
                            "type": "grid",
                            "name": "Completed activity plans",
                            "order": 5,
                            "filter_type": "OR",
                            "filters_disabled": false,
                            "filters": [
                                {
                                    "id": 74934,
                                    "field_id": 798726,
                                    "type": "equal",
                                    "value": "Yes"
                                },
                                {
                                    "id": 74935,
                                    "field_id": 790487,
                                    "type": "date_is_before",
                                    "value": "Asia/Singapore??today"
                                }
                            ],
                            "sortings": [
                                {
                                    "id": 59040,
                                    "field_id": 798726,
                                    "order": "ASC"
                                },
                                {
                                    "id": 59041,
                                    "field_id": 790487,
                                    "order": "ASC"
                                }
                            ],
                            "decorations": [
                                {
                                    "id": 8663,
                                    "type": "background_color",
                                    "value_provider_type": "conditional_color",
                                    "value_provider_conf": {
                                        "colors": [
                                            {
                                                "color": "light-red",
                                                "filters": [
                                                    {
                                                        "id": "5785fdc9-631a-4227-97d6-b813af16da50",
                                                        "type": "not_empty",
                                                        "field": 798671,
                                                        "value": ""
                                                    },
                                                    {
                                                        "id": "8c7f019a-eb23-403e-827f-7d56778c3569",
                                                        "type": "lower_than",
                                                        "field": 798671,
                                                        "value": "0"
                                                    }
                                                ],
                                                "operator": "AND"
                                            },
                                            {
                                                "color": "light-green",
                                                "filters": [
                                                    {
                                                        "id": "58dcff34-069e-4ef9-bdda-64b321bc6fbc",
                                                        "type": "equal",
                                                        "field": 798726,
                                                        "value": "Yes"
                                                    }
                                                ],
                                                "operator": "AND"
                                            }
                                        ]
                                    },
                                    "order": 1
                                }
                            ],
                            "public": false,
                            "row_identifier_type": "count",
                            "field_options": [
                                {
                                    "id": 1159329,
                                    "field_id": 790486,
                                    "width": 100,
                                    "hidden": false,
                                    "order": 0,
                                    "aggregation_type": "",
                                    "aggregation_raw_type": ""
                                },
                                {
                                    "id": 1159330,
                                    "field_id": 790487,
                                    "width": 118,
                                    "hidden": false,
                                    "order": 1,
                                    "aggregation_type": "not_empty_percentage",
                                    "aggregation_raw_type": "empty_count"
                                },
                                {
                                    "id": 1159331,
                                    "field_id": 790488,
                                    "width": 180,
                                    "hidden": false,
                                    "order": 3,
                                    "aggregation_type": "unique_count",
                                    "aggregation_raw_type": "unique_count"
                                },
                                {
                                    "id": 1159332,
                                    "field_id": 790489,
                                    "width": 184,
                                    "hidden": false,
                                    "order": 4,
                                    "aggregation_type": "",
                                    "aggregation_raw_type": ""
                                },
                                {
                                    "id": 1159333,
                                    "field_id": 790547,
                                    "width": 213,
                                    "hidden": false,
                                    "order": 6,
                                    "aggregation_type": "not_empty_percentage",
                                    "aggregation_raw_type": "empty_count"
                                },
                                {
                                    "id": 1159334,
                                    "field_id": 790566,
                                    "width": 151,
                                    "hidden": false,
                                    "order": 8,
                                    "aggregation_type": "average",
                                    "aggregation_raw_type": "average"
                                },
                                {
                                    "id": 1159335,
                                    "field_id": 790567,
                                    "width": 148,
                                    "hidden": false,
                                    "order": 9,
                                    "aggregation_type": "",
                                    "aggregation_raw_type": ""
                                },
                                {
                                    "id": 1159336,
                                    "field_id": 790568,
                                    "width": 148,
                                    "hidden": false,
                                    "order": 10,
                                    "aggregation_type": "",
                                    "aggregation_raw_type": ""
                                },
                                {
                                    "id": 1159337,
                                    "field_id": 798575,
                                    "width": 157,
                                    "hidden": false,
                                    "order": 2,
                                    "aggregation_type": "",
                                    "aggregation_raw_type": ""
                                },
                                {
                                    "id": 1159338,
                                    "field_id": 798578,
                                    "width": 135,
                                    "hidden": false,
                                    "order": 5,
                                    "aggregation_type": "not_empty_percentage",
                                    "aggregation_raw_type": "empty_count"
                                },
                                {
                                    "id": 1159339,
                                    "field_id": 798671,
                                    "width": 183,
                                    "hidden": true,
                                    "order": 32767,
                                    "aggregation_type": "average",
                                    "aggregation_raw_type": "average"
                                },
                                {
                                    "id": 1159340,
                                    "field_id": 798726,
                                    "width": 170,
                                    "hidden": true,
                                    "order": 32767,
                                    "aggregation_type": "",
                                    "aggregation_raw_type": ""
                                }
                            ]
                        },
                        {
                            "id": 187956,
                            "type": "grid",
                            "name": "Unfinished plans",
                            "order": 6,
                            "filter_type": "OR",
                            "filters_disabled": false,
                            "filters": [
                                {
                                    "id": 74917,
                                    "field_id": 798578,
                                    "type": "empty",
                                    "value": ""
                                },
                                {
                                    "id": 74918,
                                    "field_id": 790547,
                                    "type": "empty",
                                    "value": ""
                                },
                                {
                                    "id": 74919,
                                    "field_id": 790488,
                                    "type": "empty",
                                    "value": ""
                                },
                                {
                                    "id": 74920,
                                    "field_id": 790487,
                                    "type": "empty",
                                    "value": ""
                                }
                            ],
                            "sortings": [
                                {
                                    "id": 59020,
                                    "field_id": 798726,
                                    "order": "ASC"
                                },
                                {
                                    "id": 59021,
                                    "field_id": 790487,
                                    "order": "ASC"
                                }
                            ],
                            "decorations": [
                                {
                                    "id": 8658,
                                    "type": "background_color",
                                    "value_provider_type": "conditional_color",
                                    "value_provider_conf": {
                                        "colors": [
                                            {
                                                "color": "light-red",
                                                "filters": [
                                                    {
                                                        "id": "5785fdc9-631a-4227-97d6-b813af16da50",
                                                        "type": "not_empty",
                                                        "field": 798671,
                                                        "value": ""
                                                    },
                                                    {
                                                        "id": "8c7f019a-eb23-403e-827f-7d56778c3569",
                                                        "type": "lower_than",
                                                        "field": 798671,
                                                        "value": "0"
                                                    }
                                                ],
                                                "operator": "AND"
                                            },
                                            {
                                                "color": "light-green",
                                                "filters": [
                                                    {
                                                        "id": "58dcff34-069e-4ef9-bdda-64b321bc6fbc",
                                                        "type": "equal",
                                                        "field": 798726,
                                                        "value": "Yes"
                                                    }
                                                ],
                                                "operator": "AND"
                                            }
                                        ]
                                    },
                                    "order": 1
                                }
                            ],
                            "public": false,
                            "row_identifier_type": "count",
                            "field_options": [
                                {
                                    "id": 1159139,
                                    "field_id": 790486,
                                    "width": 100,
                                    "hidden": false,
                                    "order": 0,
                                    "aggregation_type": "",
                                    "aggregation_raw_type": ""
                                },
                                {
                                    "id": 1159140,
                                    "field_id": 790487,
                                    "width": 118,
                                    "hidden": false,
                                    "order": 1,
                                    "aggregation_type": "not_empty_percentage",
                                    "aggregation_raw_type": "empty_count"
                                },
                                {
                                    "id": 1159141,
                                    "field_id": 790488,
                                    "width": 180,
                                    "hidden": false,
                                    "order": 3,
                                    "aggregation_type": "unique_count",
                                    "aggregation_raw_type": "unique_count"
                                },
                                {
                                    "id": 1159142,
                                    "field_id": 790489,
                                    "width": 184,
                                    "hidden": false,
                                    "order": 4,
                                    "aggregation_type": "",
                                    "aggregation_raw_type": ""
                                },
                                {
                                    "id": 1159143,
                                    "field_id": 790547,
                                    "width": 213,
                                    "hidden": false,
                                    "order": 6,
                                    "aggregation_type": "not_empty_percentage",
                                    "aggregation_raw_type": "empty_count"
                                },
                                {
                                    "id": 1159144,
                                    "field_id": 790566,
                                    "width": 151,
                                    "hidden": false,
                                    "order": 8,
                                    "aggregation_type": "average",
                                    "aggregation_raw_type": "average"
                                },
                                {
                                    "id": 1159145,
                                    "field_id": 790567,
                                    "width": 148,
                                    "hidden": false,
                                    "order": 9,
                                    "aggregation_type": "",
                                    "aggregation_raw_type": ""
                                },
                                {
                                    "id": 1159146,
                                    "field_id": 790568,
                                    "width": 148,
                                    "hidden": false,
                                    "order": 10,
                                    "aggregation_type": "",
                                    "aggregation_raw_type": ""
                                },
                                {
                                    "id": 1159147,
                                    "field_id": 798575,
                                    "width": 157,
                                    "hidden": false,
                                    "order": 2,
                                    "aggregation_type": "",
                                    "aggregation_raw_type": ""
                                },
                                {
                                    "id": 1159148,
                                    "field_id": 798578,
                                    "width": 135,
                                    "hidden": false,
                                    "order": 5,
                                    "aggregation_type": "not_empty_percentage",
                                    "aggregation_raw_type": "empty_count"
                                },
                                {
                                    "id": 1159149,
                                    "field_id": 798671,
                                    "width": 183,
                                    "hidden": true,
                                    "order": 32767,
                                    "aggregation_type": "average",
                                    "aggregation_raw_type": "average"
                                },
                                {
                                    "id": 1159150,
                                    "field_id": 798726,
                                    "width": 170,
                                    "hidden": true,
                                    "order": 32767,
                                    "aggregation_type": "",
                                    "aggregation_raw_type": ""
                                }
                            ]
                        }
                    ],
                    "rows": [
                        {
                            "id": 1,
                            "order": "1.00000000000000000000",
                            "created_on": "2022-12-13T17:36:38.572599+00:00",
                            "updated_on": "2022-12-17T20:42:41.225935+00:00",
                            "field_790486": null,
                            "field_790487": "2023-01-05",
                            "field_790488": "Office lunch potluck",
                            "field_790489": "Plans to prepare smoked mackerel and greens.",
                            "field_790547": [
                                1,
                                2,
                                3,
                                4,
                                5,
                                6
                            ],
                            "field_790566": null,
                            "field_790567": null,
                            "field_790568": null,
                            "field_798575": null,
                            "field_798578": [
                                1
                            ],
                            "field_798671": null,
                            "field_798726": null
                        },
                        {
                            "id": 2,
                            "order": "2.00000000000000000000",
                            "created_on": "2022-12-13T17:36:38.572672+00:00",
                            "updated_on": "2022-12-16T20:34:04.424840+00:00",
                            "field_790486": null,
                            "field_790487": "2023-01-10",
                            "field_790488": "Picnic with friends potluck",
                            "field_790489": "Thinking of bringing kimchi grilled cheese.",
                            "field_790547": [
                                32,
                                34,
                                35,
                                36
                            ],
                            "field_790566": null,
                            "field_790567": null,
                            "field_790568": null,
                            "field_798575": null,
                            "field_798578": [
                                1
                            ],
                            "field_798671": null,
                            "field_798726": null
                        },
                        {
                            "id": 3,
                            "order": "3.00000000000000000000",
                            "created_on": "2022-12-13T18:21:34.757058+00:00",
                            "updated_on": "2022-12-17T09:43:33.114563+00:00",
                            "field_790486": null,
                            "field_790487": "2023-01-11",
                            "field_790488": "Camping day",
                            "field_790489": "Plans to bring a lot of food.",
                            "field_790547": [
                                11,
                                12,
                                13,
                                14,
                                15,
                                16,
                                8,
                                22,
                                27,
                                7,
                                24,
                                37,
                                38,
                                39,
                                30,
                                19,
                                9,
                                42,
                                41,
                                40
                            ],
                            "field_790566": null,
                            "field_790567": null,
                            "field_790568": null,
                            "field_798575": null,
                            "field_798578": [
                                1
                            ],
                            "field_798671": null,
                            "field_798726": null
                        },
                        {
                            "id": 4,
                            "order": "4.00000000000000000000",
                            "created_on": "2022-12-13T18:52:32.896066+00:00",
                            "updated_on": "2022-12-16T19:25:22.208170+00:00",
                            "field_790486": null,
                            "field_790487": "2023-01-12",
                            "field_790488": "Poker night",
                            "field_790489": "Assigned to bring beer.",
                            "field_790547": [
                                45,
                                44
                            ],
                            "field_790566": null,
                            "field_790567": null,
                            "field_790568": null,
                            "field_798575": null,
                            "field_798578": [
                                1
                            ],
                            "field_798671": null,
                            "field_798726": null
                        },
                        {
                            "id": 5,
                            "order": "4.00000000000000000000",
                            "created_on": "2022-12-13T18:52:32.925775+00:00",
                            "updated_on": "2022-12-17T20:38:54.957673+00:00",
                            "field_790486": null,
                            "field_790487": "2023-01-17",
                            "field_790488": "Swimming",
                            "field_790489": "Got everything ready.",
                            "field_790547": [
                                43,
                                44
                            ],
                            "field_790566": null,
                            "field_790567": null,
                            "field_790568": null,
                            "field_798575": null,
                            "field_798578": [
                                2
                            ],
                            "field_798671": null,
                            "field_798726": null
                        },
                        {
                            "id": 6,
                            "order": "5.00000000000000000000",
                            "created_on": "2022-12-13T18:52:33.639483+00:00",
                            "updated_on": "2022-12-17T20:42:52.251289+00:00",
                            "field_790486": null,
                            "field_790487": "2023-01-18",
                            "field_790488": "Office lunch potluck",
                            "field_790489": "Plans to prepare pesto and kale pasta.",
                            "field_790547": [
                                32,
                                33,
                                25,
                                29,
                                30,
                                31
                            ],
                            "field_790566": null,
                            "field_790567": null,
                            "field_790568": null,
                            "field_798575": null,
                            "field_798578": [
                                2
                            ],
                            "field_798671": null,
                            "field_798726": null
                        },
                        {
                            "id": 7,
                            "order": "6.00000000000000000000",
                            "created_on": "2022-12-13T18:52:34.410644+00:00",
                            "updated_on": "2022-12-17T20:39:27.403526+00:00",
                            "field_790486": null,
                            "field_790487": "2023-01-31",
                            "field_790488": "Camping day",
                            "field_790489": "The more food there is, the better.",
                            "field_790547": [
                                7,
                                8,
                                9,
                                11,
                                12,
                                13,
                                14,
                                15,
                                16,
                                19,
                                22,
                                24,
                                27,
                                30,
                                37,
                                38,
                                39,
                                40,
                                41,
                                42
                            ],
                            "field_790566": null,
                            "field_790567": null,
                            "field_790568": null,
                            "field_798575": null,
                            "field_798578": [
                                4
                            ],
                            "field_798671": null,
                            "field_798726": null
                        },
                        {
                            "id": 8,
                            "order": "7.00000000000000000000",
                            "created_on": "2022-12-16T20:34:25.802742+00:00",
                            "updated_on": "2022-12-17T20:37:58.773612+00:00",
                            "field_790486": null,
                            "field_790487": "2023-01-30",
                            "field_790488": "Gym day",
                            "field_790489": "Planning to go back to the gym.",
                            "field_790547": [
                                44
                            ],
                            "field_790566": null,
                            "field_790567": null,
                            "field_790568": null,
                            "field_798575": null,
                            "field_798578": [
                                4
                            ],
                            "field_798671": null,
                            "field_798726": null
                        },
                        {
                            "id": 9,
                            "order": "8.00000000000000000000",
                            "created_on": "2022-12-17T20:40:07.628977+00:00",
                            "updated_on": "2022-12-17T20:44:33.490387+00:00",
                            "field_790486": null,
                            "field_790487": "2023-02-17",
                            "field_790488": "Poker night",
                            "field_790489": "Assigned to bring beer again.",
                            "field_790547": [
                                44,
                                45
                            ],
                            "field_790566": null,
                            "field_790567": null,
                            "field_790568": null,
                            "field_798575": null,
                            "field_798578": [
                                5
                            ],
                            "field_798671": null,
                            "field_798726": null
                        }
                    ]
                },
                {
                    "id": 122788,
                    "name": "Shops",
                    "order": 8,
                    "fields": [
                        {
                            "id": 790437,
                            "type": "text",
                            "name": "Name",
                            "order": 0,
                            "primary": true,
                            "text_default": ""
                        },
                        {
                            "id": 790438,
                            "type": "file",
                            "name": "Photo",
                            "order": 1,
                            "primary": false
                        },
                        {
                            "id": 790439,
                            "type": "boolean",
                            "name": "Is active",
                            "order": 2,
                            "primary": false
                        },
                        {
                            "id": 790497,
                            "type": "formula",
                            "name": "Items count",
                            "order": 3,
                            "primary": false,
                            "error": null,
                            "date_format": null,
                            "date_include_time": null,
                            "date_time_format": null,
                            "number_decimal_places": 0,
                            "array_formula_type": null,
                            "formula": "count( \n  filter( \n    lookup(\"Related grocery items\", \"Name\"), \n    lookup(\"Related grocery items\", \"Latest plans for sorting\") > 0 \n  ) \n)",
                            "formula_type": "number"
                        },
                        {
                            "id": 790502,
                            "type": "single_select",
                            "name": "Category",
                            "order": 4,
                            "primary": false,
                            "select_options": [
                                {
                                    "id": 339723,
                                    "value": "Convenience store",
                                    "color": "dark-green",
                                    "order": 0
                                },
                                {
                                    "id": 339724,
                                    "value": "Department store",
                                    "color": "dark-orange",
                                    "order": 1
                                },
                                {
                                    "id": 339725,
                                    "value": "Discount store",
                                    "color": "dark-red",
                                    "order": 2
                                },
                                {
                                    "id": 339726,
                                    "value": "Hardware store",
                                    "color": "dark-gray",
                                    "order": 3
                                },
                                {
                                    "id": 339727,
                                    "value": "Hypermarket",
                                    "color": "dark-blue",
                                    "order": 4
                                },
                                {
                                    "id": 339728,
                                    "value": "Online store",
                                    "color": "green",
                                    "order": 5
                                },
                                {
                                    "id": 339729,
                                    "value": "Outlet store",
                                    "color": "orange",
                                    "order": 6
                                },
                                {
                                    "id": 339730,
                                    "value": "Pharmacy",
                                    "color": "red",
                                    "order": 7
                                },
                                {
                                    "id": 339731,
                                    "value": "Specialty store",
                                    "color": "gray",
                                    "order": 8
                                },
                                {
                                    "id": 339732,
                                    "value": "Supermarket",
                                    "color": "blue",
                                    "order": 9
                                },
                                {
                                    "id": 339733,
                                    "value": "Warehouse store",
                                    "color": "light-green",
                                    "order": 10
                                }
                            ]
                        },
                        {
                            "id": 790518,
                            "type": "long_text",
                            "name": "Description",
                            "order": 5,
                            "primary": false
                        },
                        {
                            "id": 790520,
                            "type": "text",
                            "name": "Address",
                            "order": 6,
                            "primary": false,
                            "text_default": ""
                        },
                        {
                            "id": 790521,
                            "type": "phone_number",
                            "name": "Phone",
                            "order": 7,
                            "primary": false
                        },
                        {
                            "id": 790524,
                            "type": "email",
                            "name": "Email address",
                            "order": 8,
                            "primary": false
                        },
                        {
                            "id": 790525,
                            "type": "url",
                            "name": "Website",
                            "order": 9,
                            "primary": false
                        },
                        {
                            "id": 790526,
                            "type": "number",
                            "name": "Distance from home (km)",
                            "order": 10,
                            "primary": false,
                            "number_decimal_places": 2,
                            "number_negative": false
                        },
                        {
                            "id": 790532,
                            "type": "formula",
                            "name": "Total items price",
                            "order": 12,
                            "primary": false,
                            "error": null,
                            "date_format": null,
                            "date_include_time": null,
                            "date_time_format": null,
                            "number_decimal_places": 2,
                            "array_formula_type": null,
                            "formula": "sum( \n  filter( \n    lookup(\"Related grocery items\", \"Total price\"), \n    lookup(\"Related grocery items\", \"Latest plans for sorting\") > 0 \n  ) \n)",
                            "formula_type": "number"
                        },
                        {
                            "id": 790538,
                            "type": "link_row",
                            "name": "Related grocery items",
                            "order": 14,
                            "primary": false,
                            "link_row_table_id": 122785,
                            "link_row_related_field_id": 790537,
                            "has_related_field": true
                        }
                    ],
                    "views": [
                        {
                            "id": 185835,
                            "type": "grid",
                            "name": "All shops",
                            "order": 1,
                            "filter_type": "AND",
                            "filters_disabled": false,
                            "filters": [],
                            "sortings": [
                                {
                                    "id": 58975,
                                    "field_id": 790437,
                                    "order": "ASC"
                                }
                            ],
                            "decorations": [
                                {
                                    "id": 8631,
                                    "type": "left_border_color",
                                    "value_provider_type": "conditional_color",
                                    "value_provider_conf": {
                                        "colors": [
                                            {
                                                "color": "dark-green",
                                                "filters": [
                                                    {
                                                        "id": "7ad3a5c5-d08b-48a0-92aa-262ada097c43",
                                                        "type": "higher_than",
                                                        "field": 790497,
                                                        "value": "0"
                                                    }
                                                ],
                                                "operator": "AND"
                                            }
                                        ]
                                    },
                                    "order": 1
                                }
                            ],
                            "public": false,
                            "row_identifier_type": "count",
                            "field_options": [
                                {
                                    "id": 1145320,
                                    "field_id": 790437,
                                    "width": 190,
                                    "hidden": false,
                                    "order": 0,
                                    "aggregation_type": "unique_count",
                                    "aggregation_raw_type": "unique_count"
                                },
                                {
                                    "id": 1145318,
                                    "field_id": 790438,
                                    "width": 100,
                                    "hidden": false,
                                    "order": 1,
                                    "aggregation_type": "",
                                    "aggregation_raw_type": ""
                                },
                                {
                                    "id": 1145319,
                                    "field_id": 790439,
                                    "width": 111,
                                    "hidden": false,
                                    "order": 13,
                                    "aggregation_type": "",
                                    "aggregation_raw_type": ""
                                },
                                {
                                    "id": 1145371,
                                    "field_id": 790497,
                                    "width": 133,
                                    "hidden": false,
                                    "order": 2,
                                    "aggregation_type": "average",
                                    "aggregation_raw_type": "average"
                                },
                                {
                                    "id": 1145376,
                                    "field_id": 790502,
                                    "width": 167,
                                    "hidden": false,
                                    "order": 3,
                                    "aggregation_type": "",
                                    "aggregation_raw_type": ""
                                },
                                {
                                    "id": 1145390,
                                    "field_id": 790518,
                                    "width": 168,
                                    "hidden": false,
                                    "order": 4,
                                    "aggregation_type": "",
                                    "aggregation_raw_type": ""
                                },
                                {
                                    "id": 1145391,
                                    "field_id": 790520,
                                    "width": 186,
                                    "hidden": false,
                                    "order": 6,
                                    "aggregation_type": "",
                                    "aggregation_raw_type": ""
                                },
                                {
                                    "id": 1145392,
                                    "field_id": 790521,
                                    "width": 112,
                                    "hidden": false,
                                    "order": 7,
                                    "aggregation_type": "",
                                    "aggregation_raw_type": ""
                                },
                                {
                                    "id": 1145393,
                                    "field_id": 790524,
                                    "width": 184,
                                    "hidden": false,
                                    "order": 8,
                                    "aggregation_type": "",
                                    "aggregation_raw_type": ""
                                },
                                {
                                    "id": 1145394,
                                    "field_id": 790525,
                                    "width": 198,
                                    "hidden": false,
                                    "order": 9,
                                    "aggregation_type": "",
                                    "aggregation_raw_type": ""
                                },
                                {
                                    "id": 1145398,
                                    "field_id": 790526,
                                    "width": 215,
                                    "hidden": false,
                                    "order": 5,
                                    "aggregation_type": "median",
                                    "aggregation_raw_type": "median"
                                },
                                {
                                    "id": 1145403,
                                    "field_id": 790532,
                                    "width": 162,
                                    "hidden": false,
                                    "order": 11,
                                    "aggregation_type": "average",
                                    "aggregation_raw_type": "average"
                                },
                                {
                                    "id": 1145408,
                                    "field_id": 790538,
                                    "width": 193,
                                    "hidden": true,
                                    "order": 14,
                                    "aggregation_type": "",
                                    "aggregation_raw_type": ""
                                }
                            ]
                        },
                        {
                            "id": 187950,
                            "type": "form",
                            "name": "Add shop",
                            "order": 2,
                            "public": false,
                            "title": "Add a shop",
                            "description": "",
                            "cover_image": {
                                "name": "iTjD6wbicCjeqcSvOfhsYWQj2k0PBzk8_8f9acff93bfec89b0e8a3171c7fc0ef48ffd8af071236978a51feb2b5aa83215.jpg",
                                "original_name": "Header.MarketHalls.01.jpg"
                            },
                            "logo_image": null,
                            "submit_text": "Submit",
                            "submit_action": "MESSAGE",
                            "submit_action_message": "The shop was successfully added to the database. To add more, please reload this page.",
                            "submit_action_redirect_url": "",
                            "field_options": [
                                {
                                    "id": 114758,
                                    "field_id": 790437,
                                    "name": "",
                                    "description": "Please type in a unique name or identifier for this shop or store",
                                    "enabled": true,
                                    "required": true,
                                    "order": 32767,
                                    "show_when_matching_conditions": false,
                                    "condition_type": "AND",
                                    "conditions": []
                                },
                                {
                                    "id": 114759,
                                    "field_id": 790438,
                                    "name": "",
                                    "description": "Upload any photo or photos of the grocery store or shop here.",
                                    "enabled": true,
                                    "required": false,
                                    "order": 32767,
                                    "show_when_matching_conditions": false,
                                    "condition_type": "AND",
                                    "conditions": []
                                },
                                {
                                    "id": 114760,
                                    "field_id": 790439,
                                    "name": "",
                                    "description": "",
                                    "enabled": false,
                                    "required": true,
                                    "order": 32767,
                                    "show_when_matching_conditions": false,
                                    "condition_type": "AND",
                                    "conditions": []
                                },
                                {
                                    "id": 114761,
                                    "field_id": 790497,
                                    "name": "",
                                    "description": "",
                                    "enabled": false,
                                    "required": true,
                                    "order": 32767,
                                    "show_when_matching_conditions": false,
                                    "condition_type": "AND",
                                    "conditions": []
                                },
                                {
                                    "id": 114762,
                                    "field_id": 790502,
                                    "name": "",
                                    "description": "Please select the type of store of this shop.",
                                    "enabled": true,
                                    "required": true,
                                    "order": 32767,
                                    "show_when_matching_conditions": false,
                                    "condition_type": "AND",
                                    "conditions": []
                                },
                                {
                                    "id": 114763,
                                    "field_id": 790518,
                                    "name": "",
                                    "description": "Type in all you need to know or remember about this shop.",
                                    "enabled": true,
                                    "required": false,
                                    "order": 32767,
                                    "show_when_matching_conditions": false,
                                    "condition_type": "AND",
                                    "conditions": []
                                },
                                {
                                    "id": 114764,
                                    "field_id": 790520,
                                    "name": "",
                                    "description": "Please enter the complete address of this shop.",
                                    "enabled": true,
                                    "required": true,
                                    "order": 32767,
                                    "show_when_matching_conditions": false,
                                    "condition_type": "AND",
                                    "conditions": []
                                },
                                {
                                    "id": 114765,
                                    "field_id": 790521,
                                    "name": "",
                                    "description": "Enter the current phone number of this shop.",
                                    "enabled": true,
                                    "required": false,
                                    "order": 32767,
                                    "show_when_matching_conditions": false,
                                    "condition_type": "AND",
                                    "conditions": []
                                },
                                {
                                    "id": 114766,
                                    "field_id": 790524,
                                    "name": "",
                                    "description": "Enter the current email address of this shop.",
                                    "enabled": true,
                                    "required": false,
                                    "order": 32767,
                                    "show_when_matching_conditions": false,
                                    "condition_type": "AND",
                                    "conditions": []
                                },
                                {
                                    "id": 114767,
                                    "field_id": 790525,
                                    "name": "",
                                    "description": "Enter the website of this shop.",
                                    "enabled": true,
                                    "required": false,
                                    "order": 32767,
                                    "show_when_matching_conditions": false,
                                    "condition_type": "AND",
                                    "conditions": []
                                },
                                {
                                    "id": 114768,
                                    "field_id": 790526,
                                    "name": "",
                                    "description": "Specify how close or far this shop is from your home.",
                                    "enabled": true,
                                    "required": false,
                                    "order": 32767,
                                    "show_when_matching_conditions": false,
                                    "condition_type": "AND",
                                    "conditions": []
                                },
                                {
                                    "id": 114769,
                                    "field_id": 790532,
                                    "name": "",
                                    "description": "",
                                    "enabled": false,
                                    "required": true,
                                    "order": 32767,
                                    "show_when_matching_conditions": false,
                                    "condition_type": "AND",
                                    "conditions": []
                                },
                                {
                                    "id": 114770,
                                    "field_id": 790538,
                                    "name": "",
                                    "description": "",
                                    "enabled": false,
                                    "required": true,
                                    "order": 32767,
                                    "show_when_matching_conditions": false,
                                    "condition_type": "AND",
                                    "conditions": []
                                }
                            ]
                        },
                        {
                            "id": 187951,
                            "type": "grid",
                            "name": "Shops to visit",
                            "order": 3,
                            "filter_type": "AND",
                            "filters_disabled": false,
                            "filters": [
                                {
                                    "id": 74908,
                                    "field_id": 790439,
                                    "type": "boolean",
                                    "value": "1"
                                },
                                {
                                    "id": 75026,
                                    "field_id": 790497,
                                    "type": "higher_than",
                                    "value": "0"
                                }
                            ],
                            "sortings": [
                                {
                                    "id": 59011,
                                    "field_id": 790526,
                                    "order": "ASC"
                                },
                                {
                                    "id": 59012,
                                    "field_id": 790437,
                                    "order": "ASC"
                                }
                            ],
                            "decorations": [
                                {
                                    "id": 8652,
                                    "type": "left_border_color",
                                    "value_provider_type": "conditional_color",
                                    "value_provider_conf": {
                                        "colors": [
                                            {
                                                "color": "dark-green",
                                                "filters": [
                                                    {
                                                        "id": "7ad3a5c5-d08b-48a0-92aa-262ada097c43",
                                                        "type": "higher_than",
                                                        "field": 790497,
                                                        "value": "0"
                                                    }
                                                ],
                                                "operator": "AND"
                                            }
                                        ]
                                    },
                                    "order": 1
                                }
                            ],
                            "public": false,
                            "row_identifier_type": "count",
                            "field_options": [
                                {
                                    "id": 1159083,
                                    "field_id": 790437,
                                    "width": 190,
                                    "hidden": false,
                                    "order": 0,
                                    "aggregation_type": "unique_count",
                                    "aggregation_raw_type": "unique_count"
                                },
                                {
                                    "id": 1159084,
                                    "field_id": 790438,
                                    "width": 100,
                                    "hidden": false,
                                    "order": 1,
                                    "aggregation_type": "",
                                    "aggregation_raw_type": ""
                                },
                                {
                                    "id": 1159085,
                                    "field_id": 790439,
                                    "width": 111,
                                    "hidden": true,
                                    "order": 11,
                                    "aggregation_type": "",
                                    "aggregation_raw_type": ""
                                },
                                {
                                    "id": 1159086,
                                    "field_id": 790497,
                                    "width": 133,
                                    "hidden": false,
                                    "order": 3,
                                    "aggregation_type": "average",
                                    "aggregation_raw_type": "average"
                                },
                                {
                                    "id": 1159087,
                                    "field_id": 790502,
                                    "width": 167,
                                    "hidden": false,
                                    "order": 4,
                                    "aggregation_type": "",
                                    "aggregation_raw_type": ""
                                },
                                {
                                    "id": 1159088,
                                    "field_id": 790518,
                                    "width": 168,
                                    "hidden": false,
                                    "order": 5,
                                    "aggregation_type": "",
                                    "aggregation_raw_type": ""
                                },
                                {
                                    "id": 1159089,
                                    "field_id": 790520,
                                    "width": 186,
                                    "hidden": false,
                                    "order": 6,
                                    "aggregation_type": "",
                                    "aggregation_raw_type": ""
                                },
                                {
                                    "id": 1159090,
                                    "field_id": 790521,
                                    "width": 112,
                                    "hidden": false,
                                    "order": 7,
                                    "aggregation_type": "",
                                    "aggregation_raw_type": ""
                                },
                                {
                                    "id": 1159091,
                                    "field_id": 790524,
                                    "width": 184,
                                    "hidden": false,
                                    "order": 8,
                                    "aggregation_type": "",
                                    "aggregation_raw_type": ""
                                },
                                {
                                    "id": 1159092,
                                    "field_id": 790525,
                                    "width": 198,
                                    "hidden": false,
                                    "order": 9,
                                    "aggregation_type": "",
                                    "aggregation_raw_type": ""
                                },
                                {
                                    "id": 1159093,
                                    "field_id": 790526,
                                    "width": 215,
                                    "hidden": false,
                                    "order": 2,
                                    "aggregation_type": "median",
                                    "aggregation_raw_type": "median"
                                },
                                {
                                    "id": 1159094,
                                    "field_id": 790532,
                                    "width": 162,
                                    "hidden": false,
                                    "order": 10,
                                    "aggregation_type": "average",
                                    "aggregation_raw_type": "average"
                                },
                                {
                                    "id": 1159095,
                                    "field_id": 790538,
                                    "width": 193,
                                    "hidden": true,
                                    "order": 12,
                                    "aggregation_type": "",
                                    "aggregation_raw_type": ""
                                }
                            ]
                        },
                        {
                            "id": 187949,
                            "type": "kanban",
                            "name": "By category",
                            "order": 4,
                            "filter_type": "AND",
                            "filters_disabled": false,
                            "filters": [
                                {
                                    "id": 74907,
                                    "field_id": 790439,
                                    "type": "boolean",
                                    "value": "1"
                                }
                            ],
                            "sortings": [],
                            "decorations": [
                                {
                                    "id": 8651,
                                    "type": "left_border_color",
                                    "value_provider_type": "conditional_color",
                                    "value_provider_conf": {
                                        "colors": [
                                            {
                                                "color": "dark-green",
                                                "filters": [
                                                    {
                                                        "id": "267d385d-dce9-4dc3-bb47-5b06e0d21ddb",
                                                        "type": "higher_than",
                                                        "field": 790497,
                                                        "value": "0"
                                                    }
                                                ],
                                                "operator": "AND"
                                            }
                                        ]
                                    },
                                    "order": 1
                                }
                            ],
                            "public": false,
                            "single_select_field_id": 790502,
                            "card_cover_image_field_id": 790438,
                            "field_options": [
                                {
                                    "id": 50793,
                                    "field_id": 790437,
                                    "hidden": false,
                                    "order": 1
                                },
                                {
                                    "id": 50802,
                                    "field_id": 790525,
                                    "hidden": false,
                                    "order": 2
                                },
                                {
                                    "id": 50799,
                                    "field_id": 790520,
                                    "hidden": false,
                                    "order": 3
                                },
                                {
                                    "id": 50800,
                                    "field_id": 790521,
                                    "hidden": false,
                                    "order": 4
                                },
                                {
                                    "id": 50803,
                                    "field_id": 790526,
                                    "hidden": false,
                                    "order": 5
                                },
                                {
                                    "id": 50796,
                                    "field_id": 790497,
                                    "hidden": false,
                                    "order": 6
                                },
                                {
                                    "id": 50794,
                                    "field_id": 790438,
                                    "hidden": true,
                                    "order": 7
                                },
                                {
                                    "id": 50795,
                                    "field_id": 790439,
                                    "hidden": true,
                                    "order": 8
                                },
                                {
                                    "id": 50797,
                                    "field_id": 790502,
                                    "hidden": true,
                                    "order": 9
                                },
                                {
                                    "id": 50798,
                                    "field_id": 790518,
                                    "hidden": true,
                                    "order": 10
                                },
                                {
                                    "id": 50801,
                                    "field_id": 790524,
                                    "hidden": true,
                                    "order": 11
                                },
                                {
                                    "id": 50804,
                                    "field_id": 790532,
                                    "hidden": true,
                                    "order": 12
                                },
                                {
                                    "id": 50805,
                                    "field_id": 790538,
                                    "hidden": true,
                                    "order": 13
                                }
                            ]
                        }
                    ],
                    "rows": [
                        {
                            "id": 1,
                            "order": "1.00000000000000000000",
                            "created_on": "2022-12-13T17:37:05.181727+00:00",
                            "updated_on": "2022-12-16T23:35:21.681783+00:00",
                            "field_790437": "SMM Hypermarket",
                            "field_790438": [
                                {
                                    "name": "hyrKMesTEbfbSS3xojMqNzzOkqW5k018_c1da9ad08be9de87f41763fa65a97cf73f61c1c4233bdc13a4fdb9f6a870d9a7.jpg",
                                    "visible_name": "hypermarket.jpg",
                                    "original_name": "hypermarket.jpg"
                                }
                            ],
                            "field_790439": "true",
                            "field_790497": null,
                            "field_790502": 339727,
                            "field_790518": "As opposed to supermarkets, this shop is ahead of the game. You can find just about whatever you're looking for at this gigantic hypermarket. This establishment is as large as most strip malls.",
                            "field_790520": "2029 Flinderation Road, Chicago, Illinois(IL), 60654",
                            "field_790521": "(708) 228-8282",
                            "field_790524": "support@smmhypermarket.br.com",
                            "field_790525": "www.smmhypermarket.br.com",
                            "field_790526": "12.00",
                            "field_790532": null,
                            "field_790538": []
                        },
                        {
                            "id": 2,
                            "order": "2.00000000000000000000",
                            "created_on": "2022-12-13T17:37:05.181819+00:00",
                            "updated_on": "2022-12-16T23:35:35.397144+00:00",
                            "field_790437": "Market-Market-Market",
                            "field_790438": [
                                {
                                    "name": "GvncUSyhwx031gRAYGWDx3lCmZ86cudF_b6d4cac8d06eae00dcbc0655b2b9f17a7ab5f935bbab1dc8021624b1333761c4.jpg",
                                    "visible_name": "supermarket.jpg",
                                    "original_name": "supermarket.jpg"
                                }
                            ],
                            "field_790439": "true",
                            "field_790497": null,
                            "field_790502": 339732,
                            "field_790518": "This supermarket is a large, self-service building with different departments that specializes in food and some other things.  Unlike \"consumer durables,\" \"fast-moving consumer goods\" are the main focus in this supermarket. The variety of products in this supermarket is very important because they need to be set up so that customers are drawn to them and they sell more quickly.",
                            "field_790520": "1707 Cecil Street, Chicago, Illinois(IL), 60610",
                            "field_790521": "(773) 388-9038",
                            "field_790524": "contact@marketmarket.br.com",
                            "field_790525": "www.marketmarket.br.com",
                            "field_790526": "5.50",
                            "field_790532": null,
                            "field_790538": [
                                1,
                                2,
                                3,
                                4,
                                5,
                                6,
                                7,
                                8,
                                9,
                                10,
                                11,
                                12,
                                13,
                                14,
                                15,
                                16,
                                17,
                                18,
                                19,
                                20,
                                21,
                                22,
                                23,
                                24,
                                25,
                                26,
                                27,
                                28,
                                29,
                                30,
                                31,
                                32,
                                33,
                                34,
                                35,
                                36,
                                37,
                                38,
                                39,
                                40,
                                41,
                                42
                            ]
                        },
                        {
                            "id": 3,
                            "order": "3.00000000000000000000",
                            "created_on": "2022-12-13T18:55:35.217202+00:00",
                            "updated_on": "2022-12-16T23:33:14.840142+00:00",
                            "field_790437": "Mini-Run",
                            "field_790438": [
                                {
                                    "name": "OQyLEz661lhiF8buWNJ7B0Q8XeDXn3Pg_b1b18604d0cbf09c369d0bfe6ca9fbeb9cfc72c70338a8bb0176f771358e07f5.jpg",
                                    "visible_name": "convenience_store.jpg",
                                    "original_name": "convenience_store.jpg"
                                }
                            ],
                            "field_790439": "true",
                            "field_790497": null,
                            "field_790502": 339723,
                            "field_790518": "Most of the time, our stores are in residential areas. People know that these places have very fast service and a focused way of doing things. Convenience stores are small and offer \"quick trip\" experiences. They are also open for longer hours and are in convenient places. They usually have a variety of basic foods and drinks, alcohol, and things you need every day.",
                            "field_790520": "2391 Rose Street, Chicago, Illinois(IL), 60605",
                            "field_790521": "(857) 393-8512",
                            "field_790524": "contact@minirun.br.com",
                            "field_790525": "www.minirun.br.com",
                            "field_790526": "1.50",
                            "field_790532": null,
                            "field_790538": [
                                45,
                                44
                            ]
                        },
                        {
                            "id": 4,
                            "order": "3.00000000000000000000",
                            "created_on": "2022-12-13T18:55:35.790154+00:00",
                            "updated_on": "2022-12-16T23:33:42.098689+00:00",
                            "field_790437": "Mercury Meds",
                            "field_790438": [
                                {
                                    "name": "bVWnCIi0GUTCnDhBuPnqqOAZiqJw5FaX_14287da89e0b97fb72ae8bb3ba4d4450c17b8668d04d3e848d21e0caf97a9286.jpg",
                                    "visible_name": "pharmacy.jpg",
                                    "original_name": "pharmacy.jpg"
                                }
                            ],
                            "field_790439": "true",
                            "field_790497": null,
                            "field_790502": 339730,
                            "field_790518": "Our business always checks the doctor's prescription and gets the medicine ready for the patient. Checking for drug interactions means making sure that the patient's medications and doses are right for their health and the other drugs they are taking.",
                            "field_790520": "3308 Oakmound Drive, Chicago, Illinois(IL), 60657",
                            "field_790521": "(773) 289-5517",
                            "field_790524": "support@mercurymeds.br.com",
                            "field_790525": "www.mercurymeds.br.com",
                            "field_790526": "2.75",
                            "field_790532": null,
                            "field_790538": [
                                43
                            ]
                        },
                        {
                            "id": 5,
                            "order": "4.00000000000000000000",
                            "created_on": "2022-12-13T18:55:37.251803+00:00",
                            "updated_on": "2022-12-16T23:36:06.703686+00:00",
                            "field_790437": "Robinson Department Store",
                            "field_790438": [
                                {
                                    "name": "ZaqJdrdGIUO9hjQNhWikniP7NVPMc3LM_bd3914206c39bc8563681f47cf8a8633573e04b18a833a1e8cc2aaa6ffb2ac63.jpg",
                                    "visible_name": "department_store.jpg",
                                    "original_name": "department_store.jpg"
                                }
                            ],
                            "field_790439": "true",
                            "field_790497": null,
                            "field_790502": 339724,
                            "field_790518": "Our department store is a store that sells a wide variety of consumer goods in different areas. This type of store is one of the most complicated because it sells a wide range of goods. Our business is known for having a wide range of products at different price points.",
                            "field_790520": "103 Bingamon Branch Road, Chicago, Illinois(IL), 60601",
                            "field_790521": "(773) 381-0815",
                            "field_790524": "contact@robinsondepartmentstore.br.com",
                            "field_790525": "www.robinsondepartmentstore.br.com",
                            "field_790526": "8.00",
                            "field_790532": null,
                            "field_790538": []
                        }
                    ]
                }
            ]
        }
    ]
}