Baserow Builder elements API

The Builder elements API from Baserow — 5 operation(s) for builder elements.

Operations 7

GET /api/builder/domains/published/page/{page_id}/elements/ #
PATCH /api/builder/element/{element_id}/ #
DELETE /api/builder/element/{element_id}/ #
POST /api/builder/element/{element_id}/duplicate/ #
PATCH /api/builder/element/{element_id}/move/ #
GET /api/builder/page/{page_id}/elements/ #
POST /api/builder/page/{page_id}/elements/ #

Work with this as data

Every API here is available over the APIs.io API and to AI agents over MCP.

MCP server

One button, every client — Claude, Cursor, VS Code and the rest.

https://apis.io/mcp

Tools for apis

7 MCP tools reach this
  • find_apisBrowse and filter every API in the catalog.
  • get_api_artifactsOne API's artifacts, grouped by type.
  • get_openapiThe primary OpenAPI for this API.
  • find_similar_apisAPIs that look like this one.
  • apis_io_searchSTART HERE — APIs, providers and tags for one query, each with its total.
  • resolveTurn a domain, URL or GitHub org into the provider it belongs to.
  • find_cohortsEvery scored population of providers in the catalog.
All 92 tools →

Call it yourself

curl for this page
This API
curl "https://apis.io/api/v1/apis/baserow-builder-elements-api"
All apis
curl "https://apis.io/api/v1/apis?limit=25"

Discovery needs no key. Ratings and market analysis are Pro.

Get an API key

Free tier, no form to fill in. Signing in shares your email address with us — we store it to create your key and to recognise you if you sign in with another provider. See our Privacy Policy and Terms.

A second provider on the same verified email joins the account you already have.

OpenAPI Specification

baserow-builder-elements-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: Baserow API spec Admin Builder elements API
  version: 2.2.2
  description: 'For more information about our REST API, please visit [this page](https://baserow.io/docs/apis%2Frest-api).


    For more information about our deprecation policy, please visit [this page](https://baserow.io/docs/apis%2Fdeprecations).'
  contact:
    url: https://baserow.io/contact
  license:
    name: MIT
    url: https://github.com/baserow/baserow/blob/develop/LICENSE
servers:
- url: https://api.baserow.io
  description: Base URL declared by the provider in apis.yml (roadmap#122).
tags:
- name: Builder elements
paths:
  /api/builder/domains/published/page/{page_id}/elements/:
    get:
      operationId: list_public_builder_page_elements
      description: Lists all the elements of the page related to the provided parameter. If the user is Anonymous, the page must belong to a published builder instance to being accessible.
      parameters:
      - in: path
        name: page_id
        schema:
          type: integer
        description: Returns the elements of the page related to the provided Id.
        required: true
      tags:
      - Builder elements
      security:
      - UserSource JWT: []
      - JWT: []
      - {}
      responses:
        '200':
          content:
            application/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/Element_TypePublicElement'
          description: ''
        '404':
          content:
            application/json:
              schema:
                type: object
                properties:
                  error:
                    type: string
                    description: Machine readable error indicating what went wrong.
                    enum:
                    - ERROR_PAGE_DOES_NOT_EXIST
                  detail:
                    oneOf:
                    - type: string
                      format: string
                      description: Human readable details about what went wrong.
                    - type: object
                      format: object
                      description: Machine readable object about what went wrong.
          description: ''
  /api/builder/element/{element_id}/:
    patch:
      operationId: update_builder_page_element
      description: Updates an existing builder element.
      parameters:
      - in: header
        name: ClientSessionId
        schema:
          type: string
          format: uuid
        description: An optional header that marks the action performed by this request as having occurred in a particular client session. Then using the undo/redo endpoints with the same ClientSessionId header this action can be undone/redone.
      - in: path
        name: element_id
        schema:
          type: integer
        description: The id of the element
        required: true
      tags:
      - Builder elements
      requestBody:
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/PatchedElement_TypeUpdateElement'
          application/x-www-form-urlencoded:
            schema:
              $ref: '#/components/schemas/PatchedElement_TypeUpdateElement'
          multipart/form-data:
            schema:
              $ref: '#/components/schemas/PatchedElement_TypeUpdateElement'
      security:
      - UserSource JWT: []
      - JWT: []
      responses:
        '200':
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Element_TypeElement'
          description: ''
        '400':
          content:
            application/json:
              schema:
                type: object
                properties:
                  error:
                    type: string
                    description: Machine readable error indicating what went wrong.
                    enum:
                    - ERROR_ELEMENT_INVALID_FORMULA
                    - ERROR_REQUEST_BODY_VALIDATION
                  detail:
                    oneOf:
                    - type: string
                      format: string
                      description: Human readable details about what went wrong.
                    - type: object
                      format: object
                      description: Machine readable object about what went wrong.
          description: ''
        '404':
          content:
            application/json:
              schema:
                type: object
                properties:
                  error:
                    type: string
                    description: Machine readable error indicating what went wrong.
                    enum:
                    - ERROR_ELEMENT_DOES_NOT_EXIST
                  detail:
                    oneOf:
                    - type: string
                      format: string
                      description: Human readable details about what went wrong.
                    - type: object
                      format: object
                      description: Machine readable object about what went wrong.
          description: ''
    delete:
      operationId: delete_builder_page_element
      description: Deletes the element related by the given id.
      parameters:
      - in: header
        name: ClientSessionId
        schema:
          type: string
          format: uuid
        description: An optional header that marks the action performed by this request as having occurred in a particular client session. Then using the undo/redo endpoints with the same ClientSessionId header this action can be undone/redone.
      - in: path
        name: element_id
        schema:
          type: integer
        description: The id of the element
        required: true
      tags:
      - Builder elements
      security:
      - UserSource JWT: []
      - JWT: []
      responses:
        '204':
          description: No response body
        '400':
          content:
            application/json:
              schema:
                type: object
                properties:
                  error:
                    type: string
                    description: Machine readable error indicating what went wrong.
                    enum:
                    - ERROR_REQUEST_BODY_VALIDATION
                  detail:
                    oneOf:
                    - type: string
                      format: string
                      description: Human readable details about what went wrong.
                    - type: object
                      format: object
                      description: Machine readable object about what went wrong.
          description: ''
        '404':
          content:
            application/json:
              schema:
                type: object
                properties:
                  error:
                    type: string
                    description: Machine readable error indicating what went wrong.
                    enum:
                    - ERROR_ELEMENT_DOES_NOT_EXIST
                  detail:
                    oneOf:
                    - type: string
                      format: string
                      description: Human readable details about what went wrong.
                    - type: object
                      format: object
                      description: Machine readable object about what went wrong.
          description: ''
  /api/builder/element/{element_id}/duplicate/:
    post:
      operationId: duplicate_builder_page_element
      description: Duplicates an element and all of the elements children and the associated workflow actions as well.
      parameters:
      - in: header
        name: ClientSessionId
        schema:
          type: string
          format: uuid
        description: An optional header that marks the action performed by this request as having occurred in a particular client session. Then using the undo/redo endpoints with the same ClientSessionId header this action can be undone/redone.
      - in: path
        name: element_id
        schema:
          type: integer
        description: The id of the element to duplicate
        required: true
      tags:
      - Builder elements
      security:
      - UserSource JWT: []
      - JWT: []
      responses:
        '200':
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/DuplicateElement'
          description: ''
        '400':
          content:
            application/json:
              schema:
                type: object
                properties:
                  error:
                    type: string
                    description: Machine readable error indicating what went wrong.
                    enum:
                    - ERROR_REQUEST_BODY_VALIDATION
                  detail:
                    oneOf:
                    - type: string
                      format: string
                      description: Human readable details about what went wrong.
                    - type: object
                      format: object
                      description: Machine readable object about what went wrong.
          description: ''
        '404':
          content:
            application/json:
              schema:
                type: object
                properties:
                  error:
                    type: string
                    description: Machine readable error indicating what went wrong.
                    enum:
                    - ERROR_ELEMENT_DOES_NOT_EXIST
                  detail:
                    oneOf:
                    - type: string
                      format: string
                      description: Human readable details about what went wrong.
                    - type: object
                      format: object
                      description: Machine readable object about what went wrong.
          description: ''
  /api/builder/element/{element_id}/move/:
    patch:
      operationId: move_builder_page_element
      description: Moves the element in the page before another element or at the end of the page if no before element is given. The elements must belong to the same page.
      parameters:
      - in: header
        name: ClientSessionId
        schema:
          type: string
          format: uuid
        description: An optional header that marks the action performed by this request as having occurred in a particular client session. Then using the undo/redo endpoints with the same ClientSessionId header this action can be undone/redone.
      - in: path
        name: element_id
        schema:
          type: integer
        description: The id of the element to move
        required: true
      tags:
      - Builder elements
      requestBody:
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/PatchedMoveElement'
          application/x-www-form-urlencoded:
            schema:
              $ref: '#/components/schemas/PatchedMoveElement'
          multipart/form-data:
            schema:
              $ref: '#/components/schemas/PatchedMoveElement'
      security:
      - UserSource JWT: []
      - JWT: []
      responses:
        '200':
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Element_TypeElement'
          description: ''
        '400':
          content:
            application/json:
              schema:
                type: object
                properties:
                  error:
                    type: string
                    description: Machine readable error indicating what went wrong.
                    enum:
                    - ERROR_REQUEST_BODY_VALIDATION
                    - ERROR_ELEMENT_NOT_IN_SAME_PAGE
                  detail:
                    oneOf:
                    - type: string
                      format: string
                      description: Human readable details about what went wrong.
                    - type: object
                      format: object
                      description: Machine readable object about what went wrong.
          description: ''
        '404':
          content:
            application/json:
              schema:
                type: object
                properties:
                  error:
                    type: string
                    description: Machine readable error indicating what went wrong.
                    enum:
                    - ERROR_ELEMENT_DOES_NOT_EXIST
                  detail:
                    oneOf:
                    - type: string
                      format: string
                      description: Human readable details about what went wrong.
                    - type: object
                      format: object
                      description: Machine readable object about what went wrong.
          description: ''
  /api/builder/page/{page_id}/elements/:
    get:
      operationId: list_builder_page_elements
      description: Lists all the elements of the page related to the provided parameter if the user has access to the related builder's workspace. If the workspace is related to a template, then this endpoint will be publicly accessible.
      parameters:
      - in: path
        name: page_id
        schema:
          type: integer
        description: Returns only the elements of the page related to the provided Id.
        required: true
      tags:
      - Builder elements
      security:
      - UserSource JWT: []
      - JWT: []
      - {}
      responses:
        '200':
          content:
            application/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/Element_TypeElement'
          description: ''
        '404':
          content:
            application/json:
              schema:
                type: object
                properties:
                  error:
                    type: string
                    description: Machine readable error indicating what went wrong.
                    enum:
                    - ERROR_PAGE_DOES_NOT_EXIST
                  detail:
                    oneOf:
                    - type: string
                      format: string
                      description: Human readable details about what went wrong.
                    - type: object
                      format: object
                      description: Machine readable object about what went wrong.
          description: ''
    post:
      operationId: create_builder_page_element
      description: Creates a new builder element
      parameters:
      - in: header
        name: ClientSessionId
        schema:
          type: string
          format: uuid
        description: An optional header that marks the action performed by this request as having occurred in a particular client session. Then using the undo/redo endpoints with the same ClientSessionId header this action can be undone/redone.
      - in: path
        name: page_id
        schema:
          type: integer
        description: Creates an element for the builder page related to the provided value.
        required: true
      tags:
      - Builder elements
      requestBody:
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/Element_TypeCreateElement'
          application/x-www-form-urlencoded:
            schema:
              $ref: '#/components/schemas/Element_TypeCreateElement'
          multipart/form-data:
            schema:
              $ref: '#/components/schemas/Element_TypeCreateElement'
      security:
      - UserSource JWT: []
      - JWT: []
      responses:
        '200':
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Element_TypeElement'
          description: ''
        '400':
          content:
            application/json:
              schema:
                type: object
                properties:
                  error:
                    type: string
                    description: Machine readable error indicating what went wrong.
                    enum:
                    - ERROR_ELEMENT_INVALID_FORMULA
                    - ERROR_REQUEST_BODY_VALIDATION
                  detail:
                    oneOf:
                    - type: string
                      format: string
                      description: Human readable details about what went wrong.
                    - type: object
                      format: object
                      description: Machine readable object about what went wrong.
          description: ''
        '404':
          content:
            application/json:
              schema:
                type: object
                properties:
                  error:
                    type: string
                    description: Machine readable error indicating what went wrong.
                    enum:
                    - ERROR_PAGE_DOES_NOT_EXIST
                  detail:
                    oneOf:
                    - type: string
                      format: string
                      description: Human readable details about what went wrong.
                    - type: object
                      format: object
                      description: Machine readable object about what went wrong.
          description: ''
components:
  schemas:
    FileInputElementUpdateElement:
      type: object
      properties:
        css_classes:
          type: string
          description: The additional CSS classes for this element.
          maxLength: 255
        visibility:
          $ref: '#/components/schemas/Visibility789Enum'
        visibility_condition:
          type: object
          additionalProperties: {}
          default:
            formula: ''
            version: '0.1'
            mode: simple
          description: Change element visibility depending on a formula value
        styles:
          $ref: '#/components/schemas/InputAndTypographyConfigBlock'
        style_border_top_color:
          type: string
          description: Top border color.
          maxLength: 255
        style_border_top_size:
          type: integer
          maximum: 2147483647
          minimum: 0
          description: Pixel height of the top border.
        style_padding_top:
          type: integer
          maximum: 2147483647
          minimum: 0
          description: Padding size of the top border.
        style_margin_top:
          type: integer
          maximum: 2147483647
          minimum: 0
          description: Margin size of the top border.
        style_border_bottom_color:
          type: string
          description: Bottom border color
          maxLength: 255
        style_border_bottom_size:
          type: integer
          maximum: 2147483647
          minimum: 0
          description: Pixel height of the bottom border.
        style_padding_bottom:
          type: integer
          maximum: 2147483647
          minimum: 0
          description: Padding size of the bottom border.
        style_margin_bottom:
          type: integer
          maximum: 2147483647
          minimum: 0
          description: Margin size of the bottom border.
        style_border_left_color:
          type: string
          description: Left border color
          maxLength: 255
        style_border_left_size:
          type: integer
          maximum: 2147483647
          minimum: 0
          description: Pixel height of the left border.
        style_padding_left:
          type: integer
          maximum: 2147483647
          minimum: 0
          description: Padding size of the left border.
        style_margin_left:
          type: integer
          maximum: 2147483647
          minimum: 0
          description: Margin size of the left border.
        style_background_radius:
          type: integer
          maximum: 32767
          minimum: -32768
          description: Background radius.
        style_border_radius:
          type: integer
          maximum: 32767
          minimum: -32768
          description: Border radius.
        style_border_right_color:
          type: string
          description: Right border color
          maxLength: 255
        style_border_right_size:
          type: integer
          maximum: 2147483647
          minimum: 0
          description: Pixel height of the right border.
        style_padding_right:
          type: integer
          maximum: 2147483647
          minimum: 0
          description: Padding size of the right border.
        style_margin_right:
          type: integer
          maximum: 2147483647
          minimum: 0
          description: Margin size of the right border.
        style_background:
          allOf:
          - $ref: '#/components/schemas/StyleBackgroundEnum'
          description: 'What type of background the element should have.


            * `none` - None

            * `color` - Color

            * `image` - Image'
        style_background_color:
          type: string
          description: The background color if `style_background` is color.
          maxLength: 255
        style_background_file:
          allOf:
          - $ref: '#/components/schemas/UserFile'
          description: The background image file
        style_background_mode:
          allOf:
          - $ref: '#/components/schemas/StyleBackgroundModeEnum'
          description: 'The mode of the background image


            * `tile` - Tile

            * `fill` - Fill

            * `fit` - Fit'
        style_width:
          allOf:
          - $ref: '#/components/schemas/StyleWidthEnum'
          description: 'Indicates the width of the root element.


            * `full` - Full

            * `full-width` - Full Width

            * `normal` - Normal

            * `medium` - Medium

            * `small` - Small'
        style_width_child:
          allOf:
          - $ref: '#/components/schemas/StyleWidthChildEnum'
          description: 'Indicates the width of the child element.


            * `normal` - Normal

            * `medium` - Medium

            * `small` - Small'
        role_type:
          $ref: '#/components/schemas/RoleTypeEnum'
        roles:
          description: User roles associated with this element, used in conjunction with role_type.
        label:
          type: object
          additionalProperties: {}
          default:
            formula: ''
            version: '0.1'
            mode: simple
          description: The text label for this input
        multiple:
          type: boolean
          description: Whether this file input allows users to choose multiple files
        required:
          type: boolean
          description: Whether this form element is a required field.
        default_name:
          type: object
          additionalProperties: {}
          default:
            formula: ''
            version: '0.1'
            mode: simple
          description: This input's default file name.
        default_url:
          type: object
          additionalProperties: {}
          default:
            formula: ''
            version: '0.1'
            mode: simple
          description: This input's default file url.
        help_text:
          type: object
          additionalProperties: {}
          default:
            formula: ''
            version: '0.1'
            mode: simple
          description: The help text which should be visible on the element.
        max_filesize:
          type: integer
          maximum: 100
          minimum: 1
          default: 5
          description: Whether to show a preview of image files.
        allowed_filetypes:
          description: Allowed file types for this input.
        preview:
          type: boolean
          description: Whether to show a preview of image files.
    BodyFontWeightEnum:
      enum:
      - thin
      - extra-light
      - light
      - regular
      - medium
      - semi-bold
      - bold
      - extra-bold
      - heavy
      - black
      - extra-black
      type: string
      description: '* `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'
    MenuItemTypeEnum:
      enum:
      - button
      - link
      - separator
      - spacer
      type: string
      description: '* `button` - Button

        * `link` - Link

        * `separator` - Separator

        * `spacer` - Spacer'
    DateFormatEnum:
      enum:
      - EU
      - US
      - ISO
      type: string
      description: '* `EU` - European (D/M/Y)

        * `US` - US (M/D/Y)

        * `ISO` - ISO (Y-M-D)'
    Heading6FontWeightEnum:
      enum:
      - thin
      - extra-light
      - light
      - regular
      - medium
      - semi-bold
      - bold
      - extra-bold
      - heavy
      - black
      - extra-black
      type: string
      description: '* `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'
    Heading1TextAlignmentEnum:
      enum:
      - left
      - center
      - right
      type: string
      description: '* `left` - Left

        * `center` - Center

        * `right` - Right'
    TextElementUpdateElement:
      type: object
      properties:
        css_classes:
          type: string
          description: The additional CSS classes for this element.
          maxLength: 255
        visibility:
          $ref: '#/components/schemas/Visibility789Enum'
        visibility_condition:
          type: object
          additionalProperties: {}
          default:
            formula: ''
            version: '0.1'
            mode: simple
          description: Change element visibility depending on a formula value
        styles:
          $ref: '#/components/schemas/TypographyConfigBlock'
        style_border_top_color:
          type: string
          description: Top border color.
          maxLength: 255
        style_border_top_size:
          type: integer
          maximum: 2147483647
          minimum: 0
          description: Pixel height of the top border.
        style_padding_top:
          type: integer
          maximum: 2147483647
          minimum: 0
          description: Padding size of the top border.
        style_margin_top:
          type: integer
          maximum: 2147483647
          minimum: 0
          description: Margin size of the top border.
        style_border_bottom_color:
          type: string
          description: Bottom border color
          maxLength: 255
        style_border_bottom_size:
          type: integer
          maximum: 2147483647
          minimum: 0
          description: Pixel height of the bottom border.
        style_padding_bottom:
          type: integer
          maximum: 2147483647
          minimum: 0
          description: Padding size of the bottom border.
        style_margin_bottom:
          type: integer
          maximum: 2147483647
          minimum: 0
          description: Margin size of the bottom border.
        style_border_left_color:
          type: string
          description: Left border color
          maxLength: 255
        style_border_left_size:
          type: integer
          maximum: 2147483647
          minimum: 0
          description: Pixel height of the left border.
        style_padding_left:
          type: integer
          maximum: 2147483647
          minimum: 0
          description: Padding size of the left border.
        style_margin_left:
          type: integer
          maximum: 2147483647
          minimum: 0
          description: Margin size of the left border.
        style_background_radius:
          type: integer
          maximum: 32767
          minimum: -32768
          description: Background radius.
        style_border_radius:
          type: integer
          maximum: 32767
          minimum: -32768
          description: Border radius.
        style_border_right_color:
          type: string
          description: Right border color
          maxLength: 255
        style_border_right_size:
          type: integer
          maximum: 2147483647
          minimum: 0
          description: Pixel height of the right border.
        style_padding_right:
          type: integer
          maximum: 2147483647
          minimum: 0
          description: Padding size of the right border.
        style_margin_right:
          type: integer
          maximum: 2147483647
          minimum: 0
          description: Margin size of the right border.
        style_background:
          allOf:
          - $ref: '#/components/schemas/StyleBackgroundEnum'
          description: 'What type of background the element should have.


            * `none` - None

            * `color` - Color

            * `image` - Image'
        style_background_color:
          type: string
          description: The background color if `style_background` is color.
          maxLength: 255
        style_background_file:
          allOf:
          - $ref: '#/components/schemas/UserFile'
          description: The background image file
        style_background_mode:
          allOf:
          - $ref: '#/components/schemas/StyleBackgroundModeEnum'
          description: 'The mode of the background image


            * `tile` - Tile

            * `fill` - Fill

            * `fit` - Fit'
        style_width:
          allOf:
          - $ref: '#/components/schemas/StyleWidthEnum'
          description: 'Indicates the width of the root element.


            * `full` - Full

            * `full-width` - Full Width

            * `normal` - Normal

            * `medium` - Medium

            * `small` - Small'
        style_width_child:
          allOf:
          - $ref: '#/components/schemas/StyleWidthChildEnum'
          description: 'Indicates the width of the child element.


            * `normal` - Normal

            * `medium` - Medium

            * `small` - Small'
        role_type:
          $ref: '#/components/schemas/RoleTypeEnum'
        roles:
          description: User roles associated with this element, used in conjunction with role_type.
        value:
          type: object
          additionalProperties: {}
          default:
            formula: ''
            version: '0.1'
            mode: simple
          description: The value of the element. Must be a formula.
        format:
          allOf:
          - $ref: '#/components/schemas/FormatEnum'
          default: plain
          description: 'The format of the text


            * `plain` - Plain

            * `markdown` - Markdown'
    PatchedElement_TypeUpdateElement:
      anyOf:
      - $ref: '#/components/schemas/HeadingElementUpdateElement'
      - $ref: '#/components/schemas/TextElementUpdateElement'
      - $ref: '#/components/schemas/RatingElementUpdateElement'
      - $ref: '#/components/schemas/RatingInputElementUpdateElement'
      - $ref: '#/components/schemas/LinkElementUpdateElement'
      - $ref: '#/components/schemas/ImageElementUpdateElement'
      - $ref: '#/components/schemas/InputTextElementUpdateElement'
      - $ref: '#/components/schemas/ColumnElementUpdateElement'
      - $ref: '#/components/schemas/ButtonElementUpdateElement'
      - $ref: '#/components/schemas/TableElementUpdateElement'
      - $ref: '#/components/schemas/RepeatElementUpdateElement'
      - $ref: '#/components/schemas/RecordSelectorElementUpdateElement'
      - $ref: '#/components/schemas/FormContainerElementUpdateElement'
      - $ref: '#/components/schemas/ChoiceElementUpdateElement'
      - $ref: '#/components/schemas/CheckboxElementUpdateElement'
      - $ref: '#/components/schemas/IFrameElementUpdateElement'
      - $ref: '#/components/schemas/DateTimePickerElementUpdateElement'
      - $ref: '#/components/schemas/HeaderElementUpdateElement'
      - $ref: '#/components/schemas/FooterElementUpdateElement'
      - $ref: '#/components/schemas/MenuElementUpdateElement'
      - $ref: '#/components/schemas/SimpleContain

# --- truncated at 32 KB (680 KB total) ---
# Full source: https://raw.githubusercontent.com/api-evangelist/baserow/refs/heads/main/openapi/baserow-builder-elements-api-openapi.yml