---
title: "POST /api/jobs/{job_id}/cancel/"
method: POST
path: "/api/jobs/{job_id}/cancel/"
tags: ["Jobs"]
---

# POST /api/jobs/{job_id}/cancel/

`POST /api/jobs/{job_id}/cancel/`

Cancels a job. Note: you can cancel only a scheduled or a job that is already running. The user requesting must be the owner of the job to cancel.

## Path parameters

- `job_id` integer, required

## Response `200`

- union
  - DuplicateApplicationJobJob
    - `id` integer, required
    - `type` string, required — The type of the job.
    - `progress_percentage` integer, required — A percentage indicating how far along the job is. 100 means that it's finished.
    - `state` string, required — Indicates the state of the import job.
    - `human_readable_error` string — A human readable error message indicating what went wrong.
    - `created_on` string, date-time, required
    - `updated_on` string, date-time, required
    - `original_application` union, required
      - DatabaseApplication
        - `id` integer, required
        - `name` string, required
        - `order` integer, required
        - `type` string, required
        - `workspace` Workspace, required
          - `id` integer, required
          - `name` string, required
          - `generative_ai_models_enabled` string, required
        - `created_on` string, date-time, required
        - `tables` Table[], required — This field is specific to the `database` application and contains an array of tables that are in the database.
          - `id` integer, required
          - `name` string, required
          - `order` integer, required — Lowest first.
          - `database_id` integer, required
          - `data_sync` DataSync, required
            - `id` integer, required
            - `type` string, required
            - `table_id` integer, required — The table where the data is synced into.
            - `database_id` string, required
            - `synced_properties` DataSyncSyncedProperty[], required
              - …
            - `last_sync` string, date-time, nullable — Timestamp when the table was last synced.
            - `last_error` string, nullable
            - `auto_add_new_properties` boolean — If enabled and new properties are detected on sync, then they're automatically added. Note that this means all properties will always be added.
            - `delete_unmatched_rows` boolean — If enabled, rows that are no longer present in the source are deleted from the synced table on every sync. If disabled, those rows are kept and reused if the matching source row reappears.
            - `two_way_sync` boolean — If enabled, then it's possible to make changes to the synced table. They will automatically be synced with the source data. Note that this is only possible if the data sync type has a two-way sync strategy.
      - DashboardApplication
        - `id` integer, required
        - `name` string, required
        - `order` integer, required
        - `type` string, required
        - `workspace` Workspace, required
          - `id` integer, required
          - `name` string, required
          - `generative_ai_models_enabled` string, required
        - `created_on` string, date-time, required
        - `description` string
      - AutomationApplication — The Automation serializer.
        - `id` integer, required
        - `name` string, required
        - `order` integer, required
        - `type` string, required
        - `workspace` Workspace, required
          - `id` integer, required
          - `name` string, required
          - `generative_ai_models_enabled` string, required
        - `created_on` string, date-time, required
        - `workflows` AutomationWorkflow[], required — This field is specific to the `automation` application and contains an array of workflows that are in the automation.
          - `id` integer, required
          - `name` string, required
          - `order` integer, required — Lowest first.
          - `automation_id` integer, required
          - `allow_test_run_until` string, date-time, nullable
          - `simulate_until_node_id` integer, nullable, required — When set, upon the next workflow run, simulates the dispatch of the workflow until this node and updates the sample_data of the node's service.
          - `published_on` string, required
          - `state` string, required
          - `graph` unknown
          - `notification_recipient_ids` integer[], required
          - `immediate_dispatch` boolean, required
      - BuilderApplication — The builder serializer. 👉 Mind to update the baserow.contrib.builder.api.domains.serializer.PublicBuilderSerializer file when you update this one if needed.
        - `id` integer, required
        - `name` string, required
        - `order` integer, required
        - `type` string, required
        - `workspace` Workspace, required
          - `id` integer, required
          - `name` string, required
          - `generative_ai_models_enabled` string, required
        - `created_on` string, date-time, required
        - `favicon_file` UserFile
          - `size` integer, required
          - `mime_type` string
          - `is_image` boolean
          - `image_width` integer, nullable
          - `image_height` integer, nullable
          - `uploaded_at` string, date-time, required
          - `url` string, uri, required
          - `thumbnails` object, required
          - `name` string, required
          - `original_name` string, required
        - `login_page_id` integer, nullable — The login page for this application. This is related to the visibility settings of builder pages.
        - `pages` Page[], required — This field is specific to the `builder` application and contains an array of pages that are in the builder.
          - `id` integer, required
          - `name` string, required
          - `path` string, required
          - `path_params` PathParam[]
            - `name` string, required — The name of the parameter.
            - `type` 'text' | 'numeric', required — * `text` - text * `numeric` - numeric
          - `order` integer, required — Lowest first.
          - `builder_id` integer, required
          - `shared` boolean, required
          - `visibility` 'all' | 'logged-in', required — * `all` - All * `logged-in` - Logged In
          - `role_type` 'allow_all' | 'allow_all_except' | 'disallow_all_except', required — * `allow_all` - Allow All * `allow_all_except` - Allow All Except * `disallow_all_except` - Disallow All Except
          - `roles` unknown, required
          - `query_params` QueryParam[]
            - `name` string, required — The name of the parameter.
            - `type` 'text' | 'numeric', required — * `text` - text * `numeric` - numeric
          - `graph` unknown, required
        - `theme` ColorTypographyButtonImagePageInputTableLinklinkActiveTextDecoration, required
          - `primary_color` string
          - `secondary_color` string
          - `border_color` string
          - `main_success_color` string
          - `main_warning_color` string
          - `main_error_color` string
          - `custom_colors` unknown
          - `heading_1_text_decoration` boolean[] — Text decoration: [underline, stroke, uppercase, italic]
          - `heading_2_text_decoration` boolean[] — Text decoration: [underline, stroke, uppercase, italic]
          - `heading_3_text_decoration` boolean[] — Text decoration: [underline, stroke, uppercase, italic]
          - `heading_4_text_decoration` boolean[] — Text decoration: [underline, stroke, uppercase, italic]
          - `heading_5_text_decoration` boolean[] — Text decoration: [underline, stroke, uppercase, italic]
          - `heading_6_text_decoration` boolean[] — Text decoration: [underline, stroke, uppercase, italic]
          - `body_font_family` string
          - `body_font_size` integer
          - `body_font_weight` 'thin' | 'extra-light' | 'light' | 'regular' | 'medium' | 'semi-bold' | 'bold' | 'extra-bold' | 'heavy' | 'black' | 'extra-black' — * `thin` - Thin * `extra-light` - Extra Light * `light` - Light * `regular` - Regular * `medium` - Medium * `semi-bold` - Semi Bold * `bold` - Bold * `extra-bold` - Extra Bold * `heavy` - Heavy * `black` - Black * `extra-black` - Extra Black
          - `body_text_color` string
          - `body_text_alignment` 'left' | 'center' | 'right' — * `left` - Left * `center` - Center * `right` - Right
          - `heading_1_font_family` string
          - `heading_1_font_size` integer
          - `heading_1_font_weight` 'thin' | 'extra-light' | 'light' | 'regular' | 'medium' | 'semi-bold' | 'bold' | 'extra-bold' | 'heavy' | 'black' | 'extra-black' — * `thin` - Thin * `extra-light` - Extra Light * `light` - Light * `regular` - Regular * `medium` - Medium * `semi-bold` - Semi Bold * `bold` - Bold * `extra-bold` - Extra Bold * `heavy` - Heavy * `black` - Black * `extra-black` - Extra Black
          - `heading_1_text_color` string
          - `heading_1_text_alignment` 'left' | 'center' | 'right' — * `left` - Left * `center` - Center * `right` - Right
          - `heading_2_font_family` string
          - `heading_2_font_size` integer
          - `heading_2_font_weight` 'thin' | 'extra-light' | 'light' | 'regular' | 'medium' | 'semi-bold' | 'bold' | 'extra-bold' | 'heavy' | 'black' | 'extra-black' — * `thin` - Thin * `extra-light` - Extra Light * `light` - Light * `regular` - Regular * `medium` - Medium * `semi-bold` - Semi Bold * `bold` - Bold * `extra-bold` - Extra Bold * `heavy` - Heavy * `black` - Black * `extra-black` - Extra Black
          - `heading_2_text_color` string
          - `heading_2_text_alignment` 'left' | 'center' | 'right' — * `left` - Left * `center` - Center * `right` - Right
          - `heading_3_font_family` string
          - `heading_3_font_size` integer
          - `heading_3_font_weight` 'thin' | 'extra-light' | 'light' | 'regular' | 'medium' | 'semi-bold' | 'bold' | 'extra-bold' | 'heavy' | 'black' | 'extra-black' — * `thin` - Thin * `extra-light` - Extra Light * `light` - Light * `regular` - Regular * `medium` - Medium * `semi-bold` - Semi Bold * `bold` - Bold * `extra-bold` - Extra Bold * `heavy` - Heavy * `black` - Black * `extra-black` - Extra Black
          - `heading_3_text_color` string
          - `heading_3_text_alignment` 'left' | 'center' | 'right' — * `left` - Left * `center` - Center * `right` - Right
          - `heading_4_font_family` string
          - `heading_4_font_size` integer
          - `heading_4_font_weight` 'thin' | 'extra-light' | 'light' | 'regular' | 'medium' | 'semi-bold' | 'bold' | 'extra-bold' | 'heavy' | 'black' | 'extra-black' — * `thin` - Thin * `extra-light` - Extra Light * `light` - Light * `regular` - Regular * `medium` - Medium * `semi-bold` - Semi Bold * `bold` - Bold * `extra-bold` - Extra Bold * `heavy` - Heavy * `black` - Black * `extra-black` - Extra Black
          - `heading_4_text_color` string
          - `heading_4_text_alignment` 'left' | 'center' | 'right' — * `left` - Left * `center` - Center * `right` - Right
          - `heading_5_font_family` string
          - `heading_5_font_size` integer
          - `heading_5_font_weight` 'thin' | 'extra-light' | 'light' | 'regular' | 'medium' | 'semi-bold' | 'bold' | 'extra-bold' | 'heavy' | 'black' | 'extra-black' — * `thin` - Thin * `extra-light` - Extra Light * `light` - Light * `regular` - Regular * `medium` - Medium * `semi-bold` - Semi Bold * `bold` - Bold * `extra-bold` - Extra Bold * `heavy` - Heavy * `black` - Black * `extra-black` - Extra Black
          - `heading_5_text_color` string
          - `heading_5_text_alignment` 'left' | 'center' | 'right' — * `left` - Left * `center` - Center * `right` - Right
          - `heading_6_font_family` string
          - `heading_6_font_size` integer
          - `heading_6_font_weight` 'thin' | 'extra-light' | 'light' | 'regular' | 'medium' | 'semi-bold' | 'bold' | 'extra-bold' | 'heavy' | 'black' | 'extra-black' — * `thin` - Thin * `extra-light` - Extra Light * `light` - Light * `regular` - Regular * `medium` - Medium * `semi-bold` - Semi Bold * `bold` - Bold * `extra-bold` - Extra Bold * `heavy` - Heavy * `black` - Black * `extra-black` - Extra Black
          - `heading_6_text_color` string
          - `heading_6_text_alignment` 'left' | 'center' | 'right' — * `left` - Left * `center` - Center * `right` - Right
          - `button_font_family` string
          - `button_font_size` integer
          - `button_font_weight` 'thin' | 'extra-light' | 'light' | 'regular' | 'medium' | 'semi-bold' | 'bold' | 'extra-bold' | 'heavy' | 'black' | 'extra-black' — * `thin` - Thin * `extra-light` - Extra Light * `light` - Light * `regular` - Regular * `medium` - Medium * `semi-bold` - Semi Bold * `bold` - Bold * `extra-bold` - Extra Bold * `heavy` - Heavy * `black` - Black * `extra-black` - Extra Black
          - `button_alignment` 'left' | 'center' | 'right' — * `left` - Left * `center` - Center * `right` - Right
          - `button_text_alignment` 'left' | 'center' | 'right' — * `left` - Left * `center` - Center * `right` - Right
          - `button_width` 'auto' | 'full' — * `auto` - Auto * `full` - Full
          - `button_background_color` string — The background color of buttons
          - `button_text_color` string — The text color of buttons
          - `button_border_color` string — The border color of buttons
          - `button_border_size` integer — Button border size
          - `button_border_radius` integer — Button border radius
          - `button_vertical_padding` integer — Button vertical padding
          - `button_horizontal_padding` integer — Button horizontal padding
          - `button_hover_background_color` string — The background color of buttons when hovered
          - `button_hover_text_color` string — The text color of buttons when hovered
          - `button_hover_border_color` string — The border color of buttons when hovered
          - `button_active_background_color` string — The background color of buttons when active
          - `button_active_text_color` string — The text color of buttons when active
          - `button_active_border_color` string — The border color of buttons when active
          - `image_max_height` integer — The image max height
          - `image_alignment` 'left' | 'center' | 'right' — * `left` - Left * `center` - Center * `right` - Right
          - `image_max_width` integer — The max-width for this image element.
          - `image_border_radius` integer — The border radius for this image element.
          - `image_constraint` 'cover' | 'contain' | 'full-width' — * `cover` - Cover * `contain` - Contain * `full-width` - Full Width
          - `page_background_file` UserFile
            - `size` integer, required
            - `mime_type` string
            - `is_image` boolean
            - `image_width` integer, nullable
            - `image_height` integer, nullable
            - `uploaded_at` string, date-time, required
            - `url` string, uri, required
            - `thumbnails` object, required
            - `name` string, required
            - `original_name` string, required
          - `page_background_color` string — The background color of the page
          - `page_background_mode` 'tile' | 'fill' | 'fit' — * `tile` - Tile * `fill` - Fill * `fit` - Fit
          - `label_font_family` string — The font family of the label
          - `label_text_color` string — The text color of the label
          - `label_font_size` integer — The font size of the label
          - `label_font_weight` 'thin' | 'extra-light' | 'light' | 'regular' | 'medium' | 'semi-bold' | 'bold' | 'extra-bold' | 'heavy' | 'black' | 'extra-black' — * `thin` - Thin * `extra-light` - Extra Light * `light` - Light * `regular` - Regular * `medium` - Medium * `semi-bold` - Semi Bold * `bold` - Bold * `extra-bold` - Extra Bold * `heavy` - Heavy * `black` - Black * `extra-black` - Extra Black
          - `input_font_family` string — The font family of the input
          - `input_font_size` integer
          - `input_font_weight` 'thin' | 'extra-light' | 'light' | 'regular' | 'medium' | 'semi-bold' | 'bold' | 'extra-bold' | 'heavy' | 'black' | 'extra-black' — * `thin` - Thin * `extra-light` - Extra Light * `light` - Light * `regular` - Regular * `medium` - Medium * `semi-bold` - Semi Bold * `bold` - Bold * `extra-bold` - Extra Bold * `heavy` - Heavy * `black` - Black * `extra-black` - Extra Black
          - `input_text_color` string — The text color of the input
          - `input_background_color` string — The background color of the input
          - `input_border_color` string — The color of the input border
          - `input_border_size` integer — Input border size
          - `input_border_radius` integer — Input border radius
          - `input_vertical_padding` integer — Input vertical padding
          - `input_horizontal_padding` integer — Input horizontal padding
          - `table_border_color` string — The color of the table border
          - `table_border_size` integer — Table border size
          - `table_border_radius` integer — Table border radius
          - `table_header_background_color` string — The background color of the table header cells
          - `table_header_text_color` string — The text color of the table header cells
          - `table_header_font_size` integer — The font size of the header cells
          - `table_header_font_weight` 'thin' | 'extra-light' | 'light' | 'regular' | 'medium' | 'semi-bold' | 'bold' | 'extra-bold' | 'heavy' | 'black' | 'extra-black' — * `thin` - Thin * `extra-light` - Extra Light * `light` - Light * `regular` - Regular * `medium` - Medium * `semi-bold` - Semi Bold * `bold` - Bold * `extra-bold` - Extra Bold * `heavy` - Heavy * `black` - Black * `extra-black` - Extra Black
          - `table_header_font_family` string — The font family of the table header cells
          - `table_header_text_alignment` 'left' | 'center' | 'right' — * `left` - Left * `center` - Center * `right` - Right
          - `table_cell_background_color` string — The background color of the table cells
          - `table_cell_alternate_background_color` string — The alternate background color of the table cells
          - `table_cell_alignment` 'left' | 'center' | 'right' — * `left` - Left * `center` - Center * `right` - Right
          - `table_cell_vertical_padding` integer — Table cell vertical padding
          - `table_cell_horizontal_padding` integer — Table cell horizontal padding
          - `table_vertical_separator_color` string — The color of the table vertical separator
          - `table_vertical_separator_size` integer — Table vertical separator size
          - `table_horizontal_separator_color` string — The color of the table horizontal separator
          - `table_horizontal_separator_size` integer — Table horizontal separator size
          - `link_default_text_decoration` boolean[] — Default text decoration: [underline, stroke, uppercase, italic]
          - `link_hover_text_decoration` boolean[] — Hover text decoration: [underline, stroke, uppercase, italic]
          - `link_active_text_decoration` boolean[] — Active text decoration: [underline, stroke, uppercase, italic]
          - `link_font_family` string
          - `link_font_size` integer
          - `link_font_weight` 'thin' | 'extra-light' | 'light' | 'regular' | 'medium' | 'semi-bold' | 'bold' | 'extra-bold' | 'heavy' | 'black' | 'extra-black' — * `thin` - Thin * `extra-light` - Extra Light * `light` - Light * `regular` - Regular * `medium` - Medium * `semi-bold` - Semi Bold * `bold` - Bold * `extra-bold` - Extra Bold * `heavy` - Heavy * `black` - Black * `extra-black` - Extra Black
          - `link_text_alignment` 'left' | 'center' | 'right' — * `left` - Left * `center` - Center * `right` - Right
          - `link_text_color` string — The text color of links
          - `link_hover_text_color` string — The hover color of links when hovered
          - `link_active_text_color` string — The hover color of links when active
        - `scripts` CustomScript[], required — Scripts to embed for this application
          - `id` integer, required
          - `type` 'stylesheet' | 'javascript' — * `stylesheet` - Stylesheet * `javascript` - JavaScript
          - `url` string, uri — The URL of the script.
          - `load_type` union — The load type of the script. * `` - None * `defer` - Defer * `async` - Async
            - 'defer' | 'async' — * `` - None * `defer` - Defer * `async` - Async
            - ''
          - `crossorigin` union — The Crossorigin type of the script. * `` - None * `anonymous` - Anonymous * `credentials` - Use credentials
            - 'anonymous' | 'credentials' — * `` - None * `anonymous` - Anonymous * `credentials` - Use credentials
            - ''
        - `custom_code` CustomCode, required
          - `css` string — Custom CSS code.
          - `js` string — Custom JavaScript code.
    - `duplicated_application` union, required
      - DatabaseApplication
        - `id` integer, required
        - `name` string, required
        - `order` integer, required
        - `type` string, required
        - `workspace` Workspace, required
          - `id` integer, required
          - `name` string, required
          - `generative_ai_models_enabled` string, required
        - `created_on` string, date-time, required
        - `tables` Table[], required — This field is specific to the `database` application and contains an array of tables that are in the database.
          - `id` integer, required
          - `name` string, required
          - `order` integer, required — Lowest first.
          - `database_id` integer, required
          - `data_sync` DataSync, required
            - `id` integer, required
            - `type` string, required
            - `table_id` integer, required — The table where the data is synced into.
            - `database_id` string, required
            - `synced_properties` DataSyncSyncedProperty[], required
              - …
            - `last_sync` string, date-time, nullable — Timestamp when the table was last synced.
            - `last_error` string, nullable
            - `auto_add_new_properties` boolean — If enabled and new properties are detected on sync, then they're automatically added. Note that this means all properties will always be added.
            - `delete_unmatched_rows` boolean — If enabled, rows that are no longer present in the source are deleted from the synced table on every sync. If disabled, those rows are kept and reused if the matching source row reappears.
            - `two_way_sync` boolean — If enabled, then it's possible to make changes to the synced table. They will automatically be synced with the source data. Note that this is only possible if the data sync type has a two-way sync strategy.
      - DashboardApplication
        - `id` integer, required
        - `name` string, required
        - `order` integer, required
        - `type` string, required
        - `workspace` Workspace, required
          - `id` integer, required
          - `name` string, required
          - `generative_ai_models_enabled` string, required
        - `created_on` string, date-time, required
        - `description` string
      - AutomationApplication — The Automation serializer.
        - `id` integer, required
        - `name` string, required
        - `order` integer, required
        - `type` string, required
        - `workspace` Workspace, required
          - `id` integer, required
          - `name` string, required
          - `generative_ai_models_enabled` string, required
        - `created_on` string, date-time, required
        - `workflows` AutomationWorkflow[], required — This field is specific to the `automation` application and contains an array of workflows that are in the automation.
          - `id` integer, required
          - `name` string, required
          - `order` integer, required — Lowest first.
          - `automation_id` integer, required
          - `allow_test_run_until` string, date-time, nullable
          - `simulate_until_node_id` integer, nullable, required — When set, upon the next workflow run, simulates the dispatch of the workflow until this node and updates the sample_data of the node's service.
          - `published_on` string, required
          - `state` string, required
          - `graph` unknown
          - `notification_recipient_ids` integer[], required
          - `immediate_dispatch` boolean, required
      - BuilderApplication — The builder serializer. 👉 Mind to update the baserow.contrib.builder.api.domains.serializer.PublicBuilderSerializer file when you update this one if needed.
        - `id` integer, required
        - `name` string, required
        - `order` integer, required
        - `type` string, required
        - `workspace` Workspace, required
          - `id` integer, required
          - `name` string, required
          - `generative_ai_models_enabled` string, required
        - `created_on` string, date-time, required
        - `favicon_file` UserFile
          - `size` integer, required
          - `mime_type` string
          - `is_image` boolean
          - `image_width` integer, nullable
          - `image_height` integer, nullable
          - `uploaded_at` string, date-time, required
          - `url` string, uri, required
          - `thumbnails` object, required
          - `name` string, required
          - `original_name` string, required
        - `login_page_id` integer, nullable — The login page for this application. This is related to the visibility settings of builder pages.
        - `pages` Page[], required — This field is specific to the `builder` application and contains an array of pages that are in the builder.
          - `id` integer, required
          - `name` string, required
          - `path` string, required
          - `path_params` PathParam[]
            - `name` string, required — The name of the parameter.
            - `type` 'text' | 'numeric', required — * `text` - text * `numeric` - numeric
          - `order` integer, required — Lowest first.
          - `builder_id` integer, required
          - `shared` boolean, required
          - `visibility` 'all' | 'logged-in', required — * `all` - All * `logged-in` - Logged In
          - `role_type` 'allow_all' | 'allow_all_except' | 'disallow_all_except', required — * `allow_all` - Allow All * `allow_all_except` - Allow All Except * `disallow_all_except` - Disallow All Except
          - `roles` unknown, required
          - `query_params` QueryParam[]
            - `name` string, required — The name of the parameter.
            - `type` 'text' | 'numeric', required — * `text` - text * `numeric` - numeric
          - `graph` unknown, required
        - `theme` ColorTypographyButtonImagePageInputTableLinklinkActiveTextDecoration, required
          - `primary_color` string
          - `secondary_color` string
          - `border_color` string
          - `main_success_color` string
          - `main_warning_color` string
          - `main_error_color` string
          - `custom_colors` unknown
          - `heading_1_text_decoration` boolean[] — Text decoration: [underline, stroke, uppercase, italic]
          - `heading_2_text_decoration` boolean[] — Text decoration: [underline, stroke, uppercase, italic]
          - `heading_3_text_decoration` boolean[] — Text decoration: [underline, stroke, uppercase, italic]
          - `heading_4_text_decoration` boolean[] — Text decoration: [underline, stroke, uppercase, italic]
          - `heading_5_text_decoration` boolean[] — Text decoration: [underline, stroke, uppercase, italic]
          - `heading_6_text_decoration` boolean[] — Text decoration: [underline, stroke, uppercase, italic]
          - `body_font_family` string
          - `body_font_size` integer
          - `body_font_weight` 'thin' | 'extra-light' | 'light' | 'regular' | 'medium' | 'semi-bold' | 'bold' | 'extra-bold' | 'heavy' | 'black' | 'extra-black' — * `thin` - Thin * `extra-light` - Extra Light * `light` - Light * `regular` - Regular * `medium` - Medium * `semi-bold` - Semi Bold * `bold` - Bold * `extra-bold` - Extra Bold * `heavy` - Heavy * `black` - Black * `extra-black` - Extra Black
          - `body_text_color` string
          - `body_text_alignment` 'left' | 'center' | 'right' — * `left` - Left * `center` - Center * `right` - Right
          - `heading_1_font_family` string
          - `heading_1_font_size` integer
          - `heading_1_font_weight` 'thin' | 'extra-light' | 'light' | 'regular' | 'medium' | 'semi-bold' | 'bold' | 'extra-bold' | 'heavy' | 'black' | 'extra-black' — * `thin` - Thin * `extra-light` - Extra Light * `light` - Light * `regular` - Regular * `medium` - Medium * `semi-bold` - Semi Bold * `bold` - Bold * `extra-bold` - Extra Bold * `heavy` - Heavy * `black` - Black * `extra-black` - Extra Black
          - `heading_1_text_color` string
          - `heading_1_text_alignment` 'left' | 'center' | 'right' — * `left` - Left * `center` - Center * `right` - Right
          - `heading_2_font_family` string
          - `heading_2_font_size` integer
          - `heading_2_font_weight` 'thin' | 'extra-light' | 'light' | 'regular' | 'medium' | 'semi-bold' | 'bold' | 'extra-bold' | 'heavy' | 'black' | 'extra-black' — * `thin` - Thin * `extra-light` - Extra Light * `light` - Light * `regular` - Regular * `medium` - Medium * `semi-bold` - Semi Bold * `bold` - Bold * `extra-bold` - Extra Bold * `heavy` - Heavy * `black` - Black * `extra-black` - Extra Black
          - `heading_2_text_color` string
          - `heading_2_text_alignment` 'left' | 'center' | 'right' — * `left` - Left * `center` - Center * `right` - Right
          - `heading_3_font_family` string
          - `heading_3_font_size` integer
          - `heading_3_font_weight` 'thin' | 'extra-light' | 'light' | 'regular' | 'medium' | 'semi-bold' | 'bold' | 'extra-bold' | 'heavy' | 'black' | 'extra-black' — * `thin` - Thin * `extra-light` - Extra Light * `light` - Light * `regular` - Regular * `medium` - Medium * `semi-bold` - Semi Bold * `bold` - Bold * `extra-bold` - Extra Bold * `heavy` - Heavy * `black` - Black * `extra-black` - Extra Black
          - `heading_3_text_color` string
          - `heading_3_text_alignment` 'left' | 'center' | 'right' — * `left` - Left * `center` - Center * `right` - Right
          - `heading_4_font_family` string
          - `heading_4_font_size` integer
          - `heading_4_font_weight` 'thin' | 'extra-light' | 'light' | 'regular' | 'medium' | 'semi-bold' | 'bold' | 'extra-bold' | 'heavy' | 'black' | 'extra-black' — * `thin` - Thin * `extra-light` - Extra Light * `light` - Light * `regular` - Regular * `medium` - Medium * `semi-bold` - Semi Bold * `bold` - Bold * `extra-bold` - Extra Bold * `heavy` - Heavy * `black` - Black * `extra-black` - Extra Black
          - `heading_4_text_color` string
          - `heading_4_text_alignment` 'left' | 'center' | 'right' — * `left` - Left * `center` - Center * `right` - Right
          - `heading_5_font_family` string
          - `heading_5_font_size` integer
          - `heading_5_font_weight` 'thin' | 'extra-light' | 'light' | 'regular' | 'medium' | 'semi-bold' | 'bold' | 'extra-bold' | 'heavy' | 'black' | 'extra-black' — * `thin` - Thin * `extra-light` - Extra Light * `light` - Light * `regular` - Regular * `medium` - Medium * `semi-bold` - Semi Bold * `bold` - Bold * `extra-bold` - Extra Bold * `heavy` - Heavy * `black` - Black * `extra-black` - Extra Black
          - `heading_5_text_color` string
          - `heading_5_text_alignment` 'left' | 'center' | 'right' — * `left` - Left * `center` - Center * `right` - Right
          - `heading_6_font_family` string
          - `heading_6_font_size` integer
          - `heading_6_font_weight` 'thin' | 'extra-light' | 'light' | 'regular' | 'medium' | 'semi-bold' | 'bold' | 'extra-bold' | 'heavy' | 'black' | 'extra-black' — * `thin` - Thin * `extra-light` - Extra Light * `light` - Light * `regular` - Regular * `medium` - Medium * `semi-bold` - Semi Bold * `bold` - Bold * `extra-bold` - Extra Bold * `heavy` - Heavy * `black` - Black * `extra-black` - Extra Black
          - `heading_6_text_color` string
          - `heading_6_text_alignment` 'left' | 'center' | 'right' — * `left` - Left * `center` - Center * `right` - Right
          - `button_font_family` string
          - `button_font_size` integer
          - `button_font_weight` 'thin' | 'extra-light' | 'light' | 'regular' | 'medium' | 'semi-bold' | 'bold' | 'extra-bold' | 'heavy' | 'black' | 'extra-black' — * `thin` - Thin * `extra-light` - Extra Light * `light` - Light * `regular` - Regular * `medium` - Medium * `semi-bold` - Semi Bold * `bold` - Bold * `extra-bold` - Extra Bold * `heavy` - Heavy * `black` - Black * `extra-black` - Extra Black
          - `button_alignment` 'left' | 'center' | 'right' — * `left` - Left * `center` - Center * `right` - Right
          - `button_text_alignment` 'left' | 'center' | 'right' — * `left` - Left * `center` - Center * `right` - Right
          - `button_width` 'auto' | 'full' — * `auto` - Auto * `full` - Full
          - `button_background_color` string — The background color of buttons
          - `button_text_color` string — The text color of buttons
          - `button_border_color` string — The border color of buttons
          - `button_border_size` integer — Button border size
          - `button_border_radius` integer — Button border radius
          - `button_vertical_padding` integer — Button vertical padding
          - `button_horizontal_padding` integer — Button horizontal padding
          - `button_hover_background_color` string — The background color of buttons when hovered
          - `button_hover_text_color` string — The text color of buttons when hovered
          - `button_hover_border_color` string — The border color of buttons when hovered
          - `button_active_background_color` string — The background color of buttons when active
          - `button_active_text_color` string — The text color of buttons when active
          - `button_active_border_color` string — The border color of buttons when active
          - `image_max_height` integer — The image max height
          - `image_alignment` 'left' | 'center' | 'right' — * `left` - Left * `center` - Center * `right` - Right
          - `image_max_width` integer — The max-width for this image element.
          - `image_border_radius` integer — The border radius for this image element.
          - `image_constraint` 'cover' | 'contain' | 'full-width' — * `cover` - Cover * `contain` - Contain * `full-width` - Full Width
          - `page_background_file` UserFile
            - `size` integer, required
            - `mime_type` string
            - `is_image` boolean
            - `image_width` integer, nullable
            - `image_height` integer, nullable
            - `uploaded_at` string, date-time, required
            - `url` string, uri, required
            - `thumbnails` object, required
            - `name` string, required
            - `original_name` string, required
          - `page_background_color` string — The background color of the page
          - `page_background_mode` 'tile' | 'fill' | 'fit' — * `tile` - Tile * `fill` - Fill * `fit` - Fit
          - `label_font_family` string — The font family of the label
          - `label_text_color` string — The text color of the label
          - `label_font_size` integer — The font size of the label
          - `label_font_weight` 'thin' | 'extra-light' | 'light' | 'regular' | 'medium' | 'semi-bold' | 'bold' | 'extra-bold' | 'heavy' | 'black' | 'extra-black' — * `thin` - Thin * `extra-light` - Extra Light * `light` - Light * `regular` - Regular * `medium` - Medium * `semi-bold` - Semi Bold * `bold` - Bold * `extra-bold` - Extra Bold * `heavy` - Heavy * `black` - Black * `extra-black` - Extra Black
          - `input_font_family` string — The font family of the input
          - `input_font_size` integer
          - `input_font_weight` 'thin' | 'extra-light' | 'light' | 'regular' | 'medium' | 'semi-bold' | 'bold' | 'extra-bold' | 'heavy' | 'black' | 'extra-black' — * `thin` - Thin * `extra-light` - Extra Light * `light` - Light * `regular` - Regular * `medium` - Medium * `semi-bold` - Semi Bold * `bold` - Bold * `extra-bold` - Extra Bold * `heavy` - Heavy * `black` - Black * `extra-black` - Extra Black
          - `input_text_color` string — The text color of the input
          - `input_background_color` string — The background color of the input
          - `input_border_color` string — The color of the input border
          - `input_border_size` integer — Input border size
          - `input_border_radius` integer — Input border radius
          - `input_vertical_padding` integer — Input vertical padding
          - `input_horizontal_padding` integer — Input horizontal padding
          - `table_border_color` string — The color of the table border
          - `table_border_size` integer — Table border size
          - `table_border_radius` integer — Table border radius
          - `table_header_background_color` string — The background color of the table header cells
          - `table_header_text_color` string — The text color of the table header cells
          - `table_header_font_size` integer — The font size of the header cells
          - `table_header_font_weight` 'thin' | 'extra-light' | 'light' | 'regular' | 'medium' | 'semi-bold' | 'bold' | 'extra-bold' | 'heavy' | 'black' | 'extra-black' — * `thin` - Thin * `extra-light` - Extra Light * `light` - Light * `regular` - Regular * `medium` - Medium * `semi-bold` - Semi Bold * `bold` - Bold * `extra-bold` - Extra Bold * `heavy` - Heavy * `black` - Black * `extra-black` - Extra Black
          - `table_header_font_family` string — The font family of the table header cells
          - `table_header_text_alignment` 'left' | 'center' | 'right' — * `left` - Left * `center` - Center * `right` - Right
          - `table_cell_background_color` string — The background color of the table cells
          - `table_cell_alternate_background_color` string — The alternate background color of the table cells
          - `table_cell_alignment` 'left' | 'center' | 'right' — * `left` - Left * `center` - Center * `right` - Right
          - `table_cell_vertical_padding` integer — Table cell vertical padding
          - `table_cell_horizontal_padding` integer — Table cell horizontal padding
          - `table_vertical_separator_color` string — The color of the table vertical separator
          - `table_vertical_separator_size` integer — Table vertical separator size
          - `table_horizontal_separator_color` string — The color of the table horizontal separator
          - `table_horizontal_separator_size` integer — Table horizontal separator size
          - `link_default_text_decoration` boolean[] — Default text decoration: [underline, stroke, uppercase, italic]
          - `link_hover_text_decoration` boolean[] — Hover text decoration: [underline, stroke, uppercase, italic]
          - `link_active_text_decoration` boolean[] — Active text decoration: [underline, stroke, uppercase, italic]
          - `link_font_family` string
          - `link_font_size` integer
          - `link_font_weight` 'thin' | 'extra-light' | 'light' | 'regular' | 'medium' | 'semi-bold' | 'bold' | 'extra-bold' | 'heavy' | 'black' | 'extra-black' — * `thin` - Thin * `extra-light` - Extra Light * `light` - Light * `regular` - Regular * `medium` - Medium * `semi-bold` - Semi Bold * `bold` - Bold * `extra-bold` - Extra Bold * `heavy` - Heavy * `black` - Black * `extra-black` - Extra Black
          - `link_text_alignment` 'left' | 'center' | 'right' — * `left` - Left * `center` - Center * `right` - Right
          - `link_text_color` string — The text color of links
          - `link_hover_text_color` string — The hover color of links when hovered
          - `link_active_text_color` string — The hover color of links when active
        - `scripts` CustomScript[], required — Scripts to embed for this application
          - `id` integer, required
          - `type` 'stylesheet' | 'javascript' — * `stylesheet` - Stylesheet * `javascript` - JavaScript
          - `url` string, uri — The URL of the script.
          - `load_type` union — The load type of the script. * `` - None * `defer` - Defer * `async` - Async
            - 'defer' | 'async' — * `` - None * `defer` - Defer * `async` - Async
            - ''
          - `crossorigin` union — The Crossorigin type of the script. * `` - None * `anonymous` - Anonymous * `credentials` - Use credentials
            - 'anonymous' | 'credentials' — * `` - None * `anonymous` - Anonymous * `credentials` - Use credentials
            - ''
        - `custom_code` CustomCode, required
          - `css` string — Custom CSS code.
          - `js` string — Custom JavaScript code.
  - InstallTemplateJobJob
    - `id` integer, required
    - `type` string, required — The type of the job.
    - `progress_percentage` integer, required — A percentage indicating how far along the job is. 100 means that it's finished.
    - `state` string, required — Indicates the state of the import job.
    - `human_readable_error` string — A human readable error message indicating what went wrong.
    - `created_on` string, date-time, required
    - `updated_on` string, date-time, required
    - `workspace` Workspace, required
      - `id` integer, required
      - `name` string, required
      - `generative_ai_models_enabled` string, required
    - `template` Template, required
      - `id` integer, required
      - `name` string, required
      - `slug` string, required — The template slug that is used to match the template with the JSON file name.
      - `icon` string, required — The icon class name that can be used for displaying purposes.
      - `keywords` string — Keywords related to the template that can be used for search.
      - `workspace_id` integer, nullable, required — The group containing the applications related to the template. The read endpoints related to that group are publicly accessible for preview purposes.
      - `is_default` string, required — Indicates if the template must be selected by default. The web-frontend automatically selects the first `is_default` template that it can find.
      - `open_application` integer, nullable — The application ID that must be opened when the template is previewed. If null, then the first will automatically be chosen.
    - `installed_applications` unknown, required
  - CreateSnapshotJobJob
    - `id` integer, required
    - `type` string, required — The type of the job.
    - `progress_percentage` integer, required — A percentage indicating how far along the job is. 100 means that it's finished.
    - `state` string, required — Indicates the state of the import job.
    - `human_readable_error` string — A human readable error message indicating what went wrong.
    - `created_on` string, date-time, required
    - `updated_on` string, date-time, required
    - `snapshot` Snapshot, required
      - `id` integer, required
      - `name` string, required
      - `snapshot_from_application` integer, required
      - `created_at` string, date-time, required
      - `created_by` User, required
        - `username` string, required — Required. 150 characters or fewer. Letters, digits and @/./+/-/_ only.
  - RestoreSnapshotJobJob
    - `id` integer, required
    - `type` string, required — The type of the job.
    - `progress_percentage` integer, required — A percentage indicating how far along the job is. 100 means that it's finished.
    - `state` string, required — Indicates the state of the import job.
    - `human_readable_error` string — A human readable error message indicating what went wrong.
    - `created_on` string, date-time, required
    - `updated_on` string, date-time, required
    - `snapshot` Snapshot, required
      - `id` integer, required
      - `name` string, required
      - `snapshot_from_application` integer, required
      - `created_at` string, date-time, required
      - `created_by` User, required
        - `username` string, required — Required. 150 characters or fewer. Letters, digits and @/./+/-/_ only.
  - ExportApplicationsJobJob
    - `id` integer, required
    - `type` string, required — The type of the job.
    - `progress_percentage` integer, required — A percentage indicating how far along the job is. 100 means that it's finished.
    - `state` string, required — Indicates the state of the import job.
    - `human_readable_error` string — A human readable error message indicating what went wrong.
    - `created_on` string, date-time, required
    - `updated_on` string, date-time, required
    - `exported_file_name` string, required
    - `url` string, uri, required
    - `workspace_id` integer, nullable, required — The workspace that the applications are going to be exported from.
  - ImportApplicationsJobJob
    - `id` integer, required
    - `type` string, required — The type of the job.
    - `progress_percentage` integer, required — A percentage indicating how far along the job is. 100 means that it's finished.
    - `state` string, required — Indicates the state of the import job.
    - `human_readable_error` string — A human readable error message indicating what went wrong.
    - `created_on` string, date-time, required
    - `updated_on` string, date-time, required
    - `installed_applications` unknown, required
    - `workspace_id` integer, required
    - `resource` ImportResource, required
      - `id` integer, required
      - `name` string, required
      - `size` integer — The size of the resource in bytes.
  - AirtableImportJobJob
    - `id` integer, required
    - `type` string, required — The type of the job.
    - `progress_percentage` integer, required — A percentage indicating how far along the job is. 100 means that it's finished.
    - `state` string, required — Indicates the state of the import job.
    - `human_readable_error` string — A human readable error message indicating what went wrong.
    - `created_on` string, date-time, required
    - `updated_on` string, date-time, required
    - `workspace_id` integer, required — The workspace ID where the Airtable base must be imported into.
    - `database` union, required
      - DatabaseApplication
        - `id` integer, required
        - `name` string, required
        - `order` integer, required
        - `type` string, required
        - `workspace` Workspace, required
          - `id` integer, required
          - `name` string, required
          - `generative_ai_models_enabled` string, required
        - `created_on` string, date-time, required
        - `tables` Table[], required — This field is specific to the `database` application and contains an array of tables that are in the database.
          - `id` integer, required
          - `name` string, required
          - `order` integer, required — Lowest first.
          - `database_id` integer, required
          - `data_sync` DataSync, required
            - `id` integer, required
            - `type` string, required
            - `table_id` integer, required — The table where the data is synced into.
            - `database_id` string, required
            - `synced_properties` DataSyncSyncedProperty[], required
              - …
            - `last_sync` string, date-time, nullable — Timestamp when the table was last synced.
            - `last_error` string, nullable
            - `auto_add_new_properties` boolean — If enabled and new properties are detected on sync, then they're automatically added. Note that this means all properties will always be added.
            - `delete_unmatched_rows` boolean — If enabled, rows that are no longer present in the source are deleted from the synced table on every sync. If disabled, those rows are kept and reused if the matching source row reappears.
            - `two_way_sync` boolean — If enabled, then it's possible to make changes to the synced table. They will automatically be synced with the source data. Note that this is only possible if the data sync type has a two-way sync strategy.
      - DashboardApplication
        - `id` integer, required
        - `name` string, required
        - `order` integer, required
        - `type` string, required
        - `workspace` Workspace, required
          - `id` integer, required
          - `name` string, required
          - `generative_ai_models_enabled` string, required
        - `created_on` string, date-time, required
        - `description` string
      - AutomationApplication — The Automation serializer.
        - `id` integer, required
        - `name` string, required
        - `order` integer, required
        - `type` string, required
        - `workspace` Workspace, required
          - `id` integer, required
          - `name` string, required
          - `generative_ai_models_enabled` string, required
        - `created_on` string, date-time, required
        - `workflows` AutomationWorkflow[], required — This field is specific to the `automation` application and contains an array of workflows that are in the automation.
          - `id` integer, required
          - `name` string, required
          - `order` integer, required — Lowest first.
          - `automation_id` integer, required
          - `allow_test_run_until` string, date-time, nullable
          - `simulate_until_node_id` integer, nullable, required — When set, upon the next workflow run, simulates the dispatch of the workflow until this node and updates the sample_data of the node's service.
          - `published_on` string, required
          - `state` string, required
          - `graph` unknown
          - `notification_recipient_ids` integer[], required
          - `immediate_dispatch` boolean, required
      - BuilderApplication — The builder serializer. 👉 Mind to update the baserow.contrib.builder.api.domains.serializer.PublicBuilderSerializer file when you update this one if needed.
        - `id` integer, required
        - `name` string, required
        - `order` integer, required
        - `type` string, required
        - `workspace` Workspace, required
          - `id` integer, required
          - `name` string, required
          - `generative_ai_models_enabled` string, required
        - `created_on` string, date-time, required
        - `favicon_file` UserFile
          - `size` integer, required
          - `mime_type` string
          - `is_image` boolean
          - `image_width` integer, nullable
          - `image_height` integer, nullable
          - `uploaded_at` string, date-time, required
          - `url` string, uri, required
          - `thumbnails` object, required
          - `name` string, required
          - `original_name` string, required
        - `login_page_id` integer, nullable — The login page for this application. This is related to the visibility settings of builder pages.
        - `pages` Page[], required — This field is specific to the `builder` application and contains an array of pages that are in the builder.
          - `id` integer, required
          - `name` string, required
          - `path` string, required
          - `path_params` PathParam[]
            - `name` string, required — The name of the parameter.
            - `type` 'text' | 'numeric', required — * `text` - text * `numeric` - numeric
          - `order` integer, required — Lowest first.
          - `builder_id` integer, required
          - `shared` boolean, required
          - `visibility` 'all' | 'logged-in', required — * `all` - All * `logged-in` - Logged In
          - `role_type` 'allow_all' | 'allow_all_except' | 'disallow_all_except', required — * `allow_all` - Allow All * `allow_all_except` - Allow All Except * `disallow_all_except` - Disallow All Except
          - `roles` unknown, required
          - `query_params` QueryParam[]
            - `name` string, required — The name of the parameter.
            - `type` 'text' | 'numeric', required — * `text` - text * `numeric` - numeric
          - `graph` unknown, required
        - `theme` ColorTypographyButtonImagePageInputTableLinklinkActiveTextDecoration, required
          - `primary_color` string
          - `secondary_color` string
          - `border_color` string
          - `main_success_color` string
          - `main_warning_color` string
          - `main_error_color` string
          - `custom_colors` unknown
          - `heading_1_text_decoration` boolean[] — Text decoration: [underline, stroke, uppercase, italic]
          - `heading_2_text_decoration` boolean[] — Text decoration: [underline, stroke, uppercase, italic]
          - `heading_3_text_decoration` boolean[] — Text decoration: [underline, stroke, uppercase, italic]
          - `heading_4_text_decoration` boolean[] — Text decoration: [underline, stroke, uppercase, italic]
          - `heading_5_text_decoration` boolean[] — Text decoration: [underline, stroke, uppercase, italic]
          - `heading_6_text_decoration` boolean[] — Text decoration: [underline, stroke, uppercase, italic]
          - `body_font_family` string
          - `body_font_size` integer
          - `body_font_weight` 'thin' | 'extra-light' | 'light' | 'regular' | 'medium' | 'semi-bold' | 'bold' | 'extra-bold' | 'heavy' | 'black' | 'extra-black' — * `thin` - Thin * `extra-light` - Extra Light * `light` - Light * `regular` - Regular * `medium` - Medium * `semi-bold` - Semi Bold * `bold` - Bold * `extra-bold` - Extra Bold * `heavy` - Heavy * `black` - Black * `extra-black` - Extra Black
          - `body_text_color` string
          - `body_text_alignment` 'left' | 'center' | 'right' — * `left` - Left * `center` - Center * `right` - Right
          - `heading_1_font_family` string
          - `heading_1_font_size` integer
          - `heading_1_font_weight` 'thin' | 'extra-light' | 'light' | 'regular' | 'medium' | 'semi-bold' | 'bold' | 'extra-bold' | 'heavy' | 'black' | 'extra-black' — * `thin` - Thin * `extra-light` - Extra Light * `light` - Light * `regular` - Regular * `medium` - Medium * `semi-bold` - Semi Bold * `bold` - Bold * `extra-bold` - Extra Bold * `heavy` - Heavy * `black` - Black * `extra-black` - Extra Black
          - `heading_1_text_color` string
          - `heading_1_text_alignment` 'left' | 'center' | 'right' — * `left` - Left * `center` - Center * `right` - Right
          - `heading_2_font_family` string
          - `heading_2_font_size` integer
          - `heading_2_font_weight` 'thin' | 'extra-light' | 'light' | 'regular' | 'medium' | 'semi-bold' | 'bold' | 'extra-bold' | 'heavy' | 'black' | 'extra-black' — * `thin` - Thin * `extra-light` - Extra Light * `light` - Light * `regular` - Regular * `medium` - Medium * `semi-bold` - Semi Bold * `bold` - Bold * `extra-bold` - Extra Bold * `heavy` - Heavy * `black` - Black * `extra-black` - Extra Black
          - `heading_2_text_color` string
          - `heading_2_text_alignment` 'left' | 'center' | 'right' — * `left` - Left * `center` - Center * `right` - Right
          - `heading_3_font_family` string
          - `heading_3_font_size` integer
          - `heading_3_font_weight` 'thin' | 'extra-light' | 'light' | 'regular' | 'medium' | 'semi-bold' | 'bold' | 'extra-bold' | 'heavy' | 'black' | 'extra-black' — * `thin` - Thin * `extra-light` - Extra Light * `light` - Light * `regular` - Regular * `medium` - Medium * `semi-bold` - Semi Bold * `bold` - Bold * `extra-bold` - Extra Bold * `heavy` - Heavy * `black` - Black * `extra-black` - Extra Black
          - `heading_3_text_color` string
          - `heading_3_text_alignment` 'left' | 'center' | 'right' — * `left` - Left * `center` - Center * `right` - Right
          - `heading_4_font_family` string
          - `heading_4_font_size` integer
          - `heading_4_font_weight` 'thin' | 'extra-light' | 'light' | 'regular' | 'medium' | 'semi-bold' | 'bold' | 'extra-bold' | 'heavy' | 'black' | 'extra-black' — * `thin` - Thin * `extra-light` - Extra Light * `light` - Light * `regular` - Regular * `medium` - Medium * `semi-bold` - Semi Bold * `bold` - Bold * `extra-bold` - Extra Bold * `heavy` - Heavy * `black` - Black * `extra-black` - Extra Black
          - `heading_4_text_color` string
          - `heading_4_text_alignment` 'left' | 'center' | 'right' — * `left` - Left * `center` - Center * `right` - Right
          - `heading_5_font_family` string
          - `heading_5_font_size` integer
          - `heading_5_font_weight` 'thin' | 'extra-light' | 'light' | 'regular' | 'medium' | 'semi-bold' | 'bold' | 'extra-bold' | 'heavy' | 'black' | 'extra-black' — * `thin` - Thin * `extra-light` - Extra Light * `light` - Light * `regular` - Regular * `medium` - Medium * `semi-bold` - Semi Bold * `bold` - Bold * `extra-bold` - Extra Bold * `heavy` - Heavy * `black` - Black * `extra-black` - Extra Black
          - `heading_5_text_color` string
          - `heading_5_text_alignment` 'left' | 'center' | 'right' — * `left` - Left * `center` - Center * `right` - Right
          - `heading_6_font_family` string
          - `heading_6_font_size` integer
          - `heading_6_font_weight` 'thin' | 'extra-light' | 'light' | 'regular' | 'medium' | 'semi-bold' | 'bold' | 'extra-bold' | 'heavy' | 'black' | 'extra-black' — * `thin` - Thin * `extra-light` - Extra Light * `light` - Light * `regular` - Regular * `medium` - Medium * `semi-bold` - Semi Bold * `bold` - Bold * `extra-bold` - Extra Bold * `heavy` - Heavy * `black` - Black * `extra-black` - Extra Black
          - `heading_6_text_color` string
          - `heading_6_text_alignment` 'left' | 'center' | 'right' — * `left` - Left * `center` - Center * `right` - Right
          - `button_font_family` string
          - `button_font_size` integer
          - `button_font_weight` 'thin' | 'extra-light' | 'light' | 'regular' | 'medium' | 'semi-bold' | 'bold' | 'extra-bold' | 'heavy' | 'black' | 'extra-black' — * `thin` - Thin * `extra-light` - Extra Light * `light` - Light * `regular` - Regular * `medium` - Medium * `semi-bold` - Semi Bold * `bold` - Bold * `extra-bold` - Extra Bold * `heavy` - Heavy * `black` - Black * `extra-black` - Extra Black
          - `button_alignment` 'left' | 'center' | 'right' — * `left` - Left * `center` - Center * `right` - Right
          - `button_text_alignment` 'left' | 'center' | 'right' — * `left` - Left * `center` - Center * `right` - Right
          - `button_width` 'auto' | 'full' — * `auto` - Auto * `full` - Full
          - `button_background_color` string — The background color of buttons
          - `button_text_color` string — The text color of buttons
          - `button_border_color` string — The border color of buttons
          - `button_border_size` integer — Button border size
          - `button_border_radius` integer — Button border radius
          - `button_vertical_padding` integer — Button vertical padding
          - `button_horizontal_padding` integer — Button horizontal padding
          - `button_hover_background_color` string — The background color of buttons when hovered
          - `button_hover_text_color` string — The text color of buttons when hovered
          - `button_hover_border_color` string — The border color of buttons when hovered
          - `button_active_background_color` string — The background color of buttons when active
          - `button_active_text_color` string — The text color of buttons when active
          - `button_active_border_color` string — The border color of buttons when active
          - `image_max_height` integer — The image max height
          - `image_alignment` 'left' | 'center' | 'right' — * `left` - Left * `center` - Center * `right` - Right
          - `image_max_width` integer — The max-width for this image element.
          - `image_border_radius` integer — The border radius for this image element.
          - `image_constraint` 'cover' | 'contain' | 'full-width' — * `cover` - Cover * `contain` - Contain * `full-width` - Full Width
          - `page_background_file` UserFile
            - `size` integer, required
            - `mime_type` string
            - `is_image` boolean
            - `image_width` integer, nullable
            - `image_height` integer, nullable
            - `uploaded_at` string, date-time, required
            - `url` string, uri, required
            - `thumbnails` object, required
            - `name` string, required
            - `original_name` string, required
          - `page_background_color` string — The background color of the page
          - `page_background_mode` 'tile' | 'fill' | 'fit' — * `tile` - Tile * `fill` - Fill * `fit` - Fit
          - `label_font_family` string — The font family of the label
          - `label_text_color` string — The text color of the label
          - `label_font_size` integer — The font size of the label
          - `label_font_weight` 'thin' | 'extra-light' | 'light' | 'regular' | 'medium' | 'semi-bold' | 'bold' | 'extra-bold' | 'heavy' | 'black' | 'extra-black' — * `thin` - Thin * `extra-light` - Extra Light * `light` - Light * `regular` - Regular * `medium` - Medium * `semi-bold` - Semi Bold * `bold` - Bold * `extra-bold` - Extra Bold * `heavy` - Heavy * `black` - Black * `extra-black` - Extra Black
          - `input_font_family` string — The font family of the input
          - `input_font_size` integer
          - `input_font_weight` 'thin' | 'extra-light' | 'light' | 'regular' | 'medium' | 'semi-bold' | 'bold' | 'extra-bold' | 'heavy' | 'black' | 'extra-black' — * `thin` - Thin * `extra-light` - Extra Light * `light` - Light * `regular` - Regular * `medium` - Medium * `semi-bold` - Semi Bold * `bold` - Bold * `extra-bold` - Extra Bold * `heavy` - Heavy * `black` - Black * `extra-black` - Extra Black
          - `input_text_color` string — The text color of the input
          - `input_background_color` string — The background color of the input
          - `input_border_color` string — The color of the input border
          - `input_border_size` integer — Input border size
          - `input_border_radius` integer — Input border radius
          - `input_vertical_padding` integer — Input vertical padding
          - `input_horizontal_padding` integer — Input horizontal padding
          - `table_border_color` string — The color of the table border
          - `table_border_size` integer — Table border size
          - `table_border_radius` integer — Table border radius
          - `table_header_background_color` string — The background color of the table header cells
          - `table_header_text_color` string — The text color of the table header cells
          - `table_header_font_size` integer — The font size of the header cells
          - `table_header_font_weight` 'thin' | 'extra-light' | 'light' | 'regular' | 'medium' | 'semi-bold' | 'bold' | 'extra-bold' | 'heavy' | 'black' | 'extra-black' — * `thin` - Thin * `extra-light` - Extra Light * `light` - Light * `regular` - Regular * `medium` - Medium * `semi-bold` - Semi Bold * `bold` - Bold * `extra-bold` - Extra Bold * `heavy` - Heavy * `black` - Black * `extra-black` - Extra Black
          - `table_header_font_family` string — The font family of the table header cells
          - `table_header_text_alignment` 'left' | 'center' | 'right' — * `left` - Left * `center` - Center * `right` - Right
          - `table_cell_background_color` string — The background color of the table cells
          - `table_cell_alternate_background_color` string — The alternate background color of the table cells
          - `table_cell_alignment` 'left' | 'center' | 'right' — * `left` - Left * `center` - Center * `right` - Right
          - `table_cell_vertical_padding` integer — Table cell vertical padding
          - `table_cell_horizontal_padding` integer — Table cell horizontal padding
          - `table_vertical_separator_color` string — The color of the table vertical separator
          - `table_vertical_separator_size` integer — Table vertical separator size
          - `table_horizontal_separator_color` string — The color of the table horizontal separator
          - `table_horizontal_separator_size` integer — Table horizontal separator size
          - `link_default_text_decoration` boolean[] — Default text decoration: [underline, stroke, uppercase, italic]
          - `link_hover_text_decoration` boolean[] — Hover text decoration: [underline, stroke, uppercase, italic]
          - `link_active_text_decoration` boolean[] — Active text decoration: [underline, stroke, uppercase, italic]
          - `link_font_family` string
          - `link_font_size` integer
          - `link_font_weight` 'thin' | 'extra-light' | 'light' | 'regular' | 'medium' | 'semi-bold' | 'bold' | 'extra-bold' | 'heavy' | 'black' | 'extra-black' — * `thin` - Thin * `extra-light` - Extra Light * `light` - Light * `regular` - Regular * `medium` - Medium * `semi-bold` - Semi Bold * `bold` - Bold * `extra-bold` - Extra Bold * `heavy` - Heavy * `black` - Black * `extra-black` - Extra Black
          - `link_text_alignment` 'left' | 'center' | 'right' — * `left` - Left * `center` - Center * `right` - Right
          - `link_text_color` string — The text color of links
          - `link_hover_text_color` string — The hover color of links when hovered
          - `link_active_text_color` string — The hover color of links when active
        - `scripts` CustomScript[], required — Scripts to embed for this application
          - `id` integer, required
          - `type` 'stylesheet' | 'javascript' — * `stylesheet` - Stylesheet * `javascript` - JavaScript
          - `url` string, uri — The URL of the script.
          - `load_type` union — The load type of the script. * `` - None * `defer` - Defer * `async` - Async
            - 'defer' | 'async' — * `` - None * `defer` - Defer * `async` - Async
            - ''
          - `crossorigin` union — The Crossorigin type of the script. * `` - None * `anonymous` - Anonymous * `credentials` - Use credentials
            - 'anonymous' | 'credentials' — * `` - None * `anonymous` - Anonymous * `credentials` - Use credentials
            - ''
        - `custom_code` CustomCode, required
          - `css` string — Custom CSS code.
          - `js` string — Custom JavaScript code.
    - `airtable_share_id` string, uri, required — Public ID of the shared Airtable base that must be imported.
    - `skip_files` boolean — If true, then the files are not downloaded and imported.
  - DuplicateTableJobJob
    - `id` integer, required
    - `type` string, required — The type of the job.
    - `progress_percentage` integer, required — A percentage indicating how far along the job is. 100 means that it's finished.
    - `state` string, required — Indicates the state of the import job.
    - `human_readable_error` string — A human readable error message indicating what went wrong.
    - `created_on` string, date-time, required
    - `updated_on` string, date-time, required
    - `original_table` Table, required
      - `id` integer, required
      - `name` string, required
      - `order` integer, required — Lowest first.
      - `database_id` integer, required
      - `data_sync` DataSync, required
        - `id` integer, required
        - `type` string, required
        - `table_id` integer, required — The table where the data is synced into.
        - `database_id` string, required
        - `synced_properties` DataSyncSyncedProperty[], required
          - `field_id` integer, required
          - `key` string, required — The matching `key` of the `DataSyncProperty`.
          - `unique_primary` boolean — Indicates whether the data sync property is used for unique identification when syncing.
        - `last_sync` string, date-time, nullable — Timestamp when the table was last synced.
        - `last_error` string, nullable
        - `auto_add_new_properties` boolean — If enabled and new properties are detected on sync, then they're automatically added. Note that this means all properties will always be added.
        - `delete_unmatched_rows` boolean — If enabled, rows that are no longer present in the source are deleted from the synced table on every sync. If disabled, those rows are kept and reused if the matching source row reappears.
        - `two_way_sync` boolean — If enabled, then it's possible to make changes to the synced table. They will automatically be synced with the source data. Note that this is only possible if the data sync type has a two-way sync strategy.
    - `duplicated_table` Table, required
      - `id` integer, required
      - `name` string, required
      - `order` integer, required — Lowest first.
      - `database_id` integer, required
      - `data_sync` DataSync, required
        - `id` integer, required
        - `type` string, required
        - `table_id` integer, required — The table where the data is synced into.
        - `database_id` string, required
        - `synced_properties` DataSyncSyncedProperty[], required
          - `field_id` integer, required
          - `key` string, required — The matching `key` of the `DataSyncProperty`.
          - `unique_primary` boolean — Indicates whether the data sync property is used for unique identification when syncing.
        - `last_sync` string, date-time, nullable — Timestamp when the table was last synced.
        - `last_error` string, nullable
        - `auto_add_new_properties` boolean — If enabled and new properties are detected on sync, then they're automatically added. Note that this means all properties will always be added.
        - `delete_unmatched_rows` boolean — If enabled, rows that are no longer present in the source are deleted from the synced table on every sync. If disabled, those rows are kept and reused if the matching source row reappears.
        - `two_way_sync` boolean — If enabled, then it's possible to make changes to the synced table. They will automatically be synced with the source data. Note that this is only possible if the data sync type has a two-way sync strategy.
  - DuplicateFieldJobJob
    - `id` integer, required
    - `type` string, required — The type of the job.
    - `progress_percentage` integer, required — A percentage indicating how far along the job is. 100 means that it's finished.
    - `state` string, required — Indicates the state of the import job.
    - `human_readable_error` string — A human readable error message indicating what went wrong.
    - `created_on` string, date-time, required
    - `updated_on` string, date-time, required
    - `original_field` Field, required
      - `id` integer, required
      - `table_id` integer, required
      - `name` string, required
      - `order` integer, required — Lowest first.
      - `type` string, required — The type of the related field.
      - `primary` boolean — Indicates if the field is a primary field. If `true` the field cannot be deleted and the value should represent the whole row.
      - `read_only` boolean, required — Indicates whether the field is a read only field. If true, it's not possible to update the cell value.
      - `immutable_type` boolean, required — Indicates whether the field type is immutable. If true, then it won't be possible to change the field type via the API.
      - `immutable_properties` boolean, required — Indicates whether the field properties are immutable. If true, then it won't be possible to change the properties and the type via the API.
      - `description` string, nullable — Field description
      - `database_id` integer, required — The ID of the database this field belongs to.
      - `workspace_id` integer, required — The ID of the workspace this field belongs to.
      - `db_index` boolean — If true, then an index will be added to the Baserow field to increase lookup and filter speed. Note that this comes at a performance cost when creating the row and updating the cell.
      - `field_constraints` string, required — The constraints applied to this field.
    - `duplicated_field` FieldSerializerWithRelatedFields, required
      - `id` integer, required
      - `table_id` integer, required
      - `name` string, required
      - `order` integer, required — Lowest first.
      - `type` string, required — The type of the related field.
      - `primary` boolean — Indicates if the field is a primary field. If `true` the field cannot be deleted and the value should represent the whole row.
      - `read_only` boolean, required — Indicates whether the field is a read only field. If true, it's not possible to update the cell value.
      - `immutable_type` boolean, required — Indicates whether the field type is immutable. If true, then it won't be possible to change the field type via the API.
      - `immutable_properties` boolean, required — Indicates whether the field properties are immutable. If true, then it won't be possible to change the properties and the type via the API.
      - `description` string, nullable — Field description
      - `database_id` integer, required — The ID of the database this field belongs to.
      - `workspace_id` integer, required — The ID of the workspace this field belongs to.
      - `db_index` boolean — If true, then an index will be added to the Baserow field to increase lookup and filter speed. Note that this comes at a performance cost when creating the row and updating the cell.
      - `field_constraints` string, required — The constraints applied to this field.
      - `related_fields` Field[], required — A list of related fields which also changed.
        - `id` integer, required
        - `table_id` integer, required
        - `name` string, required
        - `order` integer, required — Lowest first.
        - `type` string, required — The type of the related field.
        - `primary` boolean — Indicates if the field is a primary field. If `true` the field cannot be deleted and the value should represent the whole row.
        - `read_only` boolean, required — Indicates whether the field is a read only field. If true, it's not possible to update the cell value.
        - `immutable_type` boolean, required — Indicates whether the field type is immutable. If true, then it won't be possible to change the field type via the API.
        - `immutable_properties` boolean, required — Indicates whether the field properties are immutable. If true, then it won't be possible to change the properties and the type via the API.
        - `description` string, nullable — Field description
        - `database_id` integer, required — The ID of the database this field belongs to.
        - `workspace_id` integer, required — The ID of the workspace this field belongs to.
        - `db_index` boolean — If true, then an index will be added to the Baserow field to increase lookup and filter speed. Note that this comes at a performance cost when creating the row and updating the cell.
        - `field_constraints` string, required — The constraints applied to this field.
  - SyncDataSyncTableJobJob
    - `id` integer, required
    - `type` string, required — The type of the job.
    - `progress_percentage` integer, required — A percentage indicating how far along the job is. 100 means that it's finished.
    - `state` string, required — Indicates the state of the import job.
    - `human_readable_error` string — A human readable error message indicating what went wrong.
    - `created_on` string, date-time, required
    - `updated_on` string, date-time, required
    - `data_sync` DataSync, required
      - `id` integer, required
      - `type` string, required
      - `table_id` integer, required — The table where the data is synced into.
      - `database_id` string, required
      - `synced_properties` DataSyncSyncedProperty[], required
        - `field_id` integer, required
        - `key` string, required — The matching `key` of the `DataSyncProperty`.
        - `unique_primary` boolean — Indicates whether the data sync property is used for unique identification when syncing.
      - `last_sync` string, date-time, nullable — Timestamp when the table was last synced.
      - `last_error` string, nullable
      - `auto_add_new_properties` boolean — If enabled and new properties are detected on sync, then they're automatically added. Note that this means all properties will always be added.
      - `delete_unmatched_rows` boolean — If enabled, rows that are no longer present in the source are deleted from the synced table on every sync. If disabled, those rows are kept and reused if the matching source row reappears.
      - `two_way_sync` boolean — If enabled, then it's possible to make changes to the synced table. They will automatically be synced with the source data. Note that this is only possible if the data sync type has a two-way sync strategy.
    - `triggered_by` string, required — Whether this sync run was started manually or periodically.
    - `user_name` string, required — The name of the user that started this sync run.
  - DuplicatePageJobJob
    - `id` integer, required
    - `type` string, required — The type of the job.
    - `progress_percentage` integer, required — A percentage indicating how far along the job is. 100 means that it's finished.
    - `state` string, required — Indicates the state of the import job.
    - `human_readable_error` string — A human readable error message indicating what went wrong.
    - `created_on` string, date-time, required
    - `updated_on` string, date-time, required
    - `original_page` Page, required — 👉 Mind to update the baserow.contrib.builder.api.domains.serializer.PublicPageSerializer when you update this one.
      - `id` integer, required
      - `name` string, required
      - `path` string, required
      - `path_params` PathParam[]
        - `name` string, required — The name of the parameter.
        - `type` 'text' | 'numeric', required — * `text` - text * `numeric` - numeric
      - `order` integer, required — Lowest first.
      - `builder_id` integer, required
      - `shared` boolean, required
      - `visibility` 'all' | 'logged-in', required — * `all` - All * `logged-in` - Logged In
      - `role_type` 'allow_all' | 'allow_all_except' | 'disallow_all_except', required — * `allow_all` - Allow All * `allow_all_except` - Allow All Except * `disallow_all_except` - Disallow All Except
      - `roles` unknown, required
      - `query_params` QueryParam[]
        - `name` string, required — The name of the parameter.
        - `type` 'text' | 'numeric', required — * `text` - text * `numeric` - numeric
      - `graph` unknown, required
    - `duplicated_page` Page, required — 👉 Mind to update the baserow.contrib.builder.api.domains.serializer.PublicPageSerializer when you update this one.
      - `id` integer, required
      - `name` string, required
      - `path` string, required
      - `path_params` PathParam[]
        - `name` string, required — The name of the parameter.
        - `type` 'text' | 'numeric', required — * `text` - text * `numeric` - numeric
      - `order` integer, required — Lowest first.
      - `builder_id` integer, required
      - `shared` boolean, required
      - `visibility` 'all' | 'logged-in', required — * `all` - All * `logged-in` - Logged In
      - `role_type` 'allow_all' | 'allow_all_except' | 'disallow_all_except', required — * `allow_all` - Allow All * `allow_all_except` - Allow All Except * `disallow_all_except` - Disallow All Except
      - `roles` unknown, required
      - `query_params` QueryParam[]
        - `name` string, required — The name of the parameter.
        - `type` 'text' | 'numeric', required — * `text` - text * `numeric` - numeric
      - `graph` unknown, required
  - PublishDomainJobJob
    - `id` integer, required
    - `type` string, required — The type of the job.
    - `progress_percentage` integer, required — A percentage indicating how far along the job is. 100 means that it's finished.
    - `state` string, required — Indicates the state of the import job.
    - `human_readable_error` string — A human readable error message indicating what went wrong.
    - `created_on` string, date-time, required
    - `updated_on` string, date-time, required
  - DuplicateAutomationWorkflowJobJob
    - `id` integer, required
    - `type` string, required — The type of the job.
    - `progress_percentage` integer, required — A percentage indicating how far along the job is. 100 means that it's finished.
    - `state` string, required — Indicates the state of the import job.
    - `human_readable_error` string — A human readable error message indicating what went wrong.
    - `created_on` string, date-time, required
    - `updated_on` string, date-time, required
    - `original_automation_workflow` AutomationWorkflow, required
      - `id` integer, required
      - `name` string, required
      - `order` integer, required — Lowest first.
      - `automation_id` integer, required
      - `allow_test_run_until` string, date-time, nullable
      - `simulate_until_node_id` integer, nullable, required — When set, upon the next workflow run, simulates the dispatch of the workflow until this node and updates the sample_data of the node's service.
      - `published_on` string, required
      - `state` string, required
      - `graph` unknown
      - `notification_recipient_ids` integer[], required
      - `immediate_dispatch` boolean, required
    - `duplicated_automation_workflow` AutomationWorkflow, required
      - `id` integer, required
      - `name` string, required
      - `order` integer, required — Lowest first.
      - `automation_id` integer, required
      - `allow_test_run_until` string, date-time, nullable
      - `simulate_until_node_id` integer, nullable, required — When set, upon the next workflow run, simulates the dispatch of the workflow until this node and updates the sample_data of the node's service.
      - `published_on` string, required
      - `state` string, required
      - `graph` unknown
      - `notification_recipient_ids` integer[], required
      - `immediate_dispatch` boolean, required
  - PublishAutomationWorkflowJobJob
    - `id` integer, required
    - `type` string, required — The type of the job.
    - `progress_percentage` integer, required — A percentage indicating how far along the job is. 100 means that it's finished.
    - `state` string, required — Indicates the state of the import job.
    - `human_readable_error` string — A human readable error message indicating what went wrong.
    - `created_on` string, date-time, required
    - `updated_on` string, date-time, required
  - GenerateAIValuesJobJob
    - `id` integer, required
    - `type` string, required — The type of the job.
    - `progress_percentage` integer, required — A percentage indicating how far along the job is. 100 means that it's finished.
    - `state` string, required — Indicates the state of the import job.
    - `human_readable_error` string — A human readable error message indicating what went wrong.
    - `created_on` string, date-time, required
    - `updated_on` string, date-time, required
    - `field_id` integer, required — The ID of the AI field to generate values for.
    - `row_ids` integer[] — The IDs of the rows to generate AI values for. If not provided, all rows in the view or table will be processed.
    - `view_id` integer — The ID of the view to generate AI values for. If not provided, the entire table will be processed.
    - `only_empty` boolean — Whether to only generate AI values for rows where the field is empty.
    - `is_auto_update` boolean, required — Indicates if the job has been created because values in a dependent field changed.
  - AuditLogExportJobJob — When mixed in to a model serializer for an ExportJob this will add an url field with the actual usable url of the export job's file (if it has one).
    - `id` integer, required
    - `type` string, required — The type of the job.
    - `progress_percentage` integer, required — A percentage indicating how far along the job is. 100 means that it's finished.
    - `state` string, required — Indicates the state of the import job.
    - `human_readable_error` string — A human readable error message indicating what went wrong.
    - `created_on` string, date-time, required — The date and time when the export job was created.
    - `updated_on` string, date-time, required
    - `csv_column_separator` ',' | ';' | '|' | 'tab' | 'record_separator' | 'unit_separator' — * `,` - , * `;` - ; * `|` - | * `tab` - * `record_separator` -  * `unit_separator` - 
    - `csv_first_row_header` boolean — Whether or not to generate a header row at the top of the csv file.
    - `export_charset` 'utf-8' | 'iso-8859-6' | 'windows-1256' | 'iso-8859-4' | 'windows-1257' | 'iso-8859-14' | 'iso-8859-2' | 'windows-1250' | 'gbk' | 'gb18030' | 'big5' | 'koi8-r' | 'koi8-u' | 'iso-8859-5' | 'windows-1251' | 'x-mac-cyrillic' | 'iso-8859-7' | 'windows-1253' | 'iso-8859-8' | 'windows-1255' | 'euc-jp' | 'iso-2022-jp' | 'shift-jis' | 'euc-kr' | 'macintosh' | 'iso-8859-10' | 'iso-8859-16' | 'windows-874' | 'windows-1254' | 'windows-1258' | 'iso-8859-1' | 'windows-1252' | 'iso-8859-3' — * `utf-8` - utf-8 * `iso-8859-6` - iso-8859-6 * `windows-1256` - windows-1256 * `iso-8859-4` - iso-8859-4 * `windows-1257` - windows-1257 * `iso-8859-14` - iso-8859-14 * `iso-8859-2` - iso-8859-2 * `windows-1250` - windows-1250 * `gbk` - gbk * `gb18030` - gb18030 * `big5` - big5 * `koi8-r` - koi8-r * `koi8-u` - koi8-u * `iso-8859-5` - iso-8859-5 * `windows-1251` - windows-1251 * `x-mac-cyrillic` - mac-cyrillic * `iso-8859-7` - iso-8859-7 * `windows-1253` - windows-1253 * `iso-8859-8` - iso-8859-8 * `windows-1255` - windows-1255 * `euc-jp` - euc-jp * `iso-2022-jp` - iso-2022-jp * `shift-jis` - shift-jis * `euc-kr` - euc-kr * `macintosh` - macintosh * `iso-8859-10` - iso-8859-10 * `iso-8859-16` - iso-8859-16 * `windows-874` - cp874 * `windows-1254` - windows-1254 * `windows-1258` - windows-1258 * `iso-8859-1` - iso-8859-1 * `windows-1252` - windows-1252 * `iso-8859-3` - iso-8859-3
    - `filter_user_id` integer — Optional: The user to filter the audit log by.
    - `filter_workspace_id` integer — Optional: The workspace to filter the audit log by.
    - `filter_action_type` 'create_group' | 'delete_group' | 'update_group' | 'order_groups' | 'create_application' | 'update_application' | 'delete_application' | 'order_applications' | 'duplicate_application' | 'install_template' | 'create_group_invitation' | 'delete_group_invitation' | 'accept_group_invitation' | 'reject_group_invitation' | 'update_group_invitation_permissions' | 'leave_group' | 'create_initial_workspace' | 'export_applications' | 'import_applications' | 'create_snapshot' | 'delete_snapshot' | 'restore_snapshot' | 'empty_trash' | 'restore_from_trash' | 'create_mcp_endpoint' | 'update_mcp_endpoint' | 'delete_mcp_endpoint' | 'create_user' | 'update_user' | 'schedule_user_deletion' | 'cancel_user_deletion' | 'sign_in_user' | 'change_user_password' | 'send_reset_user_password' | 'reset_user_password' | 'send_verify_email' | 'verify_email' | 'send_change_email_confirmation' | 'change_email' | 'configure_two_factor_auth' | 'disable_two_factor_auth' | 'admin_disable_two_factor_auth' | 'submit_abuse_report' | 'create_db_token' | 'update_db_token_name' | 'update_db_token_permissions' | 'rotate_db_token_key' | 'delete_db_token_key' | 'create_webhook' | 'delete_webhook' | 'update_webhook' | 'export_table' | 'import_database_from_airtable' | 'create_table' | 'delete_table' | 'order_tables' | 'update_table' | 'duplicate_table' | 'create_row' | 'create_rows' | 'import_rows' | 'delete_row' | 'delete_rows' | 'move_row' | 'update_row' | 'update_rows' | 'create_view' | 'duplicate_view' | 'delete_view' | 'order_views' | 'update_view' | 'create_view_filter' | 'update_view_filter' | 'delete_view_filter' | 'create_view_sort' | 'update_view_sort' | 'delete_view_sort' | 'prioritize_view_sortings' | 'create_view_group' | 'update_view_group' | 'delete_view_group' | 'prioritize_view_group_bys' | 'submit_form' | 'edit_form_row' | 'rotate_view_slug' | 'update_view_field_options' | 'update_view_default_values' | 'create_decoration' | 'update_decoration' | 'delete_decoration' | 'create_view_filter_group' | 'update_view_filter_group' | 'delete_view_filter_group' | 'admin_update_view_public' | 'admin_rotate_view_slug' | 'create_data_sync_table' | 'update_data_sync_table' | 'sync_data_sync_table' | 'create_field' | 'delete_field' | 'update_field' | 'duplicate_field' | 'change_primary_field' | 'create_field_rule' | 'update_field_rule' | 'delete_field_rule' | 'create_element' | 'update_element' | 'delete_element' | 'duplicate_element' | 'move_element' | 'create_widget' | 'update_widget' | 'delete_widget' | 'update_dashboard_data_source' | 'create_automation_workflow' | 'update_automation_workflow' | 'delete_automation_workflow' | 'duplicate_automation_workflow' | 'order_automation_workflows' | 'create_automation_node' | 'update_automation_node' | 'delete_automation_node' | 'duplicate_automation_node' | 'replace_automation_node' | 'move_automation_node' | 'generate_formula_with_ai' | 'create_row_comment' | 'delete_row_comment' | 'update_row_comment' | 'rotate_calendar_ical_view_slug' | 'create_team' | 'update_team' | 'delete_team' | 'create_team_subject' | 'delete_team_subject' | 'batch_assign_role' | 'update_field_permissions' | 'update_periodic_data_sync_interval' | 'create_data_scan' | 'update_data_scan' | 'delete_data_scan' — * `create_group` - create_group * `delete_group` - delete_group * `update_group` - update_group * `order_groups` - order_groups * `create_application` - create_application * `update_application` - update_application * `delete_application` - delete_application * `order_applications` - order_applications * `duplicate_application` - duplicate_application * `install_template` - install_template * `create_group_invitation` - create_group_invitation * `delete_group_invitation` - delete_group_invitation * `accept_group_invitation` - accept_group_invitation * `reject_group_invitation` - reject_group_invitation * `update_group_invitation_permissions` - update_group_invitation_permissions * `leave_group` - leave_group * `create_initial_workspace` - create_initial_workspace * `export_applications` - export_applications * `import_applications` - import_applications * `create_snapshot` - create_snapshot * `delete_snapshot` - delete_snapshot * `restore_snapshot` - restore_snapshot * `empty_trash` - empty_trash * `restore_from_trash` - restore_from_trash * `create_mcp_endpoint` - create_mcp_endpoint * `update_mcp_endpoint` - update_mcp_endpoint * `delete_mcp_endpoint` - delete_mcp_endpoint * `create_user` - create_user * `update_user` - update_user * `schedule_user_deletion` - schedule_user_deletion * `cancel_user_deletion` - cancel_user_deletion * `sign_in_user` - sign_in_user * `change_user_password` - change_user_password * `send_reset_user_password` - send_reset_user_password * `reset_user_password` - reset_user_password * `send_verify_email` - send_verify_email * `verify_email` - verify_email * `send_change_email_confirmation` - send_change_email_confirmation * `change_email` - change_email * `configure_two_factor_auth` - configure_two_factor_auth * `disable_two_factor_auth` - disable_two_factor_auth * `admin_disable_two_factor_auth` - admin_disable_two_factor_auth * `submit_abuse_report` - submit_abuse_report * `create_db_token` - create_db_token * `update_db_token_name` - update_db_token_name * `update_db_token_permissions` - update_db_token_permissions * `rotate_db_token_key` - rotate_db_token_key * `delete_db_token_key` - delete_db_token_key * `create_webhook` - create_webhook * `delete_webhook` - delete_webhook * `update_webhook` - update_webhook * `export_table` - export_table * `import_database_from_airtable` - import_database_from_airtable * `create_table` - create_table * `delete_table` - delete_table * `order_tables` - order_tables * `update_table` - update_table * `duplicate_table` - duplicate_table * `create_row` - create_row * `create_rows` - create_rows * `import_rows` - import_rows * `delete_row` - delete_row * `delete_rows` - delete_rows * `move_row` - move_row * `update_row` - update_row * `update_rows` - update_rows * `create_view` - create_view * `duplicate_view` - duplicate_view * `delete_view` - delete_view * `order_views` - order_views * `update_view` - update_view * `create_view_filter` - create_view_filter * `update_view_filter` - update_view_filter * `delete_view_filter` - delete_view_filter * `create_view_sort` - create_view_sort * `update_view_sort` - update_view_sort * `delete_view_sort` - delete_view_sort * `prioritize_view_sortings` - prioritize_view_sortings * `create_view_group` - create_view_group * `update_view_group` - update_view_group * `delete_view_group` - delete_view_group * `prioritize_view_group_bys` - prioritize_view_group_bys * `submit_form` - submit_form * `edit_form_row` - edit_form_row * `rotate_view_slug` - rotate_view_slug * `update_view_field_options` - update_view_field_options * `update_view_default_values` - update_view_default_values * `create_decoration` - create_decoration * `update_decoration` - update_decoration * `delete_decoration` - delete_decoration * `create_view_filter_group` - create_view_filter_group * `update_view_filter_group` - update_view_filter_group * `delete_view_filter_group` - delete_view_filter_group * `admin_update_view_public` - admin_update_view_public * `admin_rotate_view_slug` - admin_rotate_view_slug * `create_data_sync_table` - create_data_sync_table * `update_data_sync_table` - update_data_sync_table * `sync_data_sync_table` - sync_data_sync_table * `create_field` - create_field * `delete_field` - delete_field * `update_field` - update_field * `duplicate_field` - duplicate_field * `change_primary_field` - change_primary_field * `create_field_rule` - create_field_rule * `update_field_rule` - update_field_rule * `delete_field_rule` - delete_field_rule * `create_element` - create_element * `update_element` - update_element * `delete_element` - delete_element * `duplicate_element` - duplicate_element * `move_element` - move_element * `create_widget` - create_widget * `update_widget` - update_widget * `delete_widget` - delete_widget * `update_dashboard_data_source` - update_dashboard_data_source * `create_automation_workflow` - create_automation_workflow * `update_automation_workflow` - update_automation_workflow * `delete_automation_workflow` - delete_automation_workflow * `duplicate_automation_workflow` - duplicate_automation_workflow * `order_automation_workflows` - order_automation_workflows * `create_automation_node` - create_automation_node * `update_automation_node` - update_automation_node * `delete_automation_node` - delete_automation_node * `duplicate_automation_node` - duplicate_automation_node * `replace_automation_node` - replace_automation_node * `move_automation_node` - move_automation_node * `generate_formula_with_ai` - generate_formula_with_ai * `create_row_comment` - create_row_comment * `delete_row_comment` - delete_row_comment * `update_row_comment` - update_row_comment * `rotate_calendar_ical_view_slug` - rotate_calendar_ical_view_slug * `create_team` - create_team * `update_team` - update_team * `delete_team` - delete_team * `create_team_subject` - create_team_subject * `delete_team_subject` - delete_team_subject * `batch_assign_role` - batch_assign_role * `update_field_permissions` - update_field_permissions * `update_periodic_data_sync_interval` - update_periodic_data_sync_interval * `create_data_scan` - create_data_scan * `update_data_scan` - update_data_scan * `delete_data_scan` - delete_data_scan
    - `filter_from_timestamp` string, date-time — Optional: The start date to filter the audit log by.
    - `filter_to_timestamp` string, date-time — Optional: The end date to filter the audit log by.
    - `exclude_columns` string — Optional: A comma separated list of column names to exclude from the export. Available options are `user_email, user_id, workspace_name, workspace_id, type, description, timestamp, ip_address`.
    - `exported_file_name` string, required — The name of the file that was created by the export job.
    - `url` string, uri, required — The URL to download the exported file.
  - DataScanResultExportJobJob — When mixed in to a model serializer for an ExportJob this will add an url field with the actual usable url of the export job's file (if it has one).
    - `id` integer, required
    - `type` string, required — The type of the job.
    - `progress_percentage` integer, required — A percentage indicating how far along the job is. 100 means that it's finished.
    - `state` string, required — Indicates the state of the import job.
    - `human_readable_error` string — A human readable error message indicating what went wrong.
    - `created_on` string, date-time, required — The date and time when the export job was created.
    - `updated_on` string, date-time, required
    - `csv_column_separator` ',' | ';' | '|' | 'tab' | 'record_separator' | 'unit_separator' — * `,` - , * `;` - ; * `|` - | * `tab` - * `record_separator` -  * `unit_separator` - 
    - `csv_first_row_header` boolean — Whether or not to generate a header row at the top of the csv file.
    - `export_charset` 'utf-8' | 'iso-8859-6' | 'windows-1256' | 'iso-8859-4' | 'windows-1257' | 'iso-8859-14' | 'iso-8859-2' | 'windows-1250' | 'gbk' | 'gb18030' | 'big5' | 'koi8-r' | 'koi8-u' | 'iso-8859-5' | 'windows-1251' | 'x-mac-cyrillic' | 'iso-8859-7' | 'windows-1253' | 'iso-8859-8' | 'windows-1255' | 'euc-jp' | 'iso-2022-jp' | 'shift-jis' | 'euc-kr' | 'macintosh' | 'iso-8859-10' | 'iso-8859-16' | 'windows-874' | 'windows-1254' | 'windows-1258' | 'iso-8859-1' | 'windows-1252' | 'iso-8859-3' — * `utf-8` - utf-8 * `iso-8859-6` - iso-8859-6 * `windows-1256` - windows-1256 * `iso-8859-4` - iso-8859-4 * `windows-1257` - windows-1257 * `iso-8859-14` - iso-8859-14 * `iso-8859-2` - iso-8859-2 * `windows-1250` - windows-1250 * `gbk` - gbk * `gb18030` - gb18030 * `big5` - big5 * `koi8-r` - koi8-r * `koi8-u` - koi8-u * `iso-8859-5` - iso-8859-5 * `windows-1251` - windows-1251 * `x-mac-cyrillic` - mac-cyrillic * `iso-8859-7` - iso-8859-7 * `windows-1253` - windows-1253 * `iso-8859-8` - iso-8859-8 * `windows-1255` - windows-1255 * `euc-jp` - euc-jp * `iso-2022-jp` - iso-2022-jp * `shift-jis` - shift-jis * `euc-kr` - euc-kr * `macintosh` - macintosh * `iso-8859-10` - iso-8859-10 * `iso-8859-16` - iso-8859-16 * `windows-874` - cp874 * `windows-1254` - windows-1254 * `windows-1258` - windows-1258 * `iso-8859-1` - iso-8859-1 * `windows-1252` - windows-1252 * `iso-8859-3` - iso-8859-3
    - `filter_scan_id` integer — Optional: Filter results by scan ID.
    - `exported_file_name` string, required — The name of the file that was created by the export job.
    - `url` string, uri, required — The URL to download the exported file.
  - FileImportJobJob
    - `id` integer, required
    - `type` string, required — The type of the job.
    - `progress_percentage` integer, required — A percentage indicating how far along the job is. 100 means that it's finished.
    - `state` string, required — Indicates the state of the import job.
    - `human_readable_error` string — A human readable error message indicating what went wrong.
    - `created_on` string, date-time, required
    - `updated_on` string, date-time, required
    - `database_id` integer, required — Database id where the table will be created.
    - `name` string — The name of the new table.
    - `table_id` integer — Table id where the data will be imported.
    - `first_row_header` boolean
    - `importer_type` string — The frontend importer identifier used to parse the file.
    - `original_file_name` string — The original name of the uploaded file.
    - `report` Report, required
      - `failing_rows` object, required — An object containing field in error by rows. The keys are the row indexes from original file and values are objects of errors by fields.

## Other responses

- `400`
- `404`

---

[API](https://skmtc.net/baserow/apis/baserow-api-spec.md) · [All operations](https://skmtc.net/baserow/apis/baserow-api-spec/llms.txt) · [OpenAPI document](https://skmtc-service-staging.skmtc.workers.dev/v1/apis/baserow/baserow-api-spec/versions/0c490e5b0c7f/schema)
