> ## Documentation Index
> Fetch the complete documentation index at: https://docs.kiwify.com.br/llms.txt
> Use this file to discover all available pages before exploring further.

# block

> The content and settings of a section block.

<Tip>
  To learn more about blocks, and using them in your theme, see [Blocks](/members-area/theme/blocks).
</Tip>

## Properties

<ParamField path="id" type="string">
  The unique identifier of the block. This is automatically generated in JSON template when they're added by theme editor.
</ParamField>

<ParamField path="type" type="string">
  The type of the block, as defined in the block's schema. This determines what kind of content the block will contain and how it will be rendered.
</ParamField>

<ParamField path="settings" type="object">
  The settings of the block.
</ParamField>

## Scope

It's accessible through the section.

<Frame>
  ```mermaid theme={null}
  graph TD
      A[Global Context] --> B[section]
      B --> C[block]
      style A fill:#f9f9f9,stroke:#333,stroke-width:2px,color:#333,stroke-dasharray: 5 5
      style B fill:#4B96FF,stroke:#333,stroke-width:1px,color:white,font-weight:bold;
      style C fill:#FFFFFF,stroke:#333,stroke-width:1px,color:#666;
      linkStyle 0 stroke:#4B96FF,stroke-width:2px
  ```
</Frame>

<Panel>
  <Tabs>
    <Tab title="Example">
      <CodeGroup>
        ```json Block theme={null}
        {
          "id": "block_123456",
          "type": "text",
          "settings": {
            "color": "#333"
          }
        }
        ```
      </CodeGroup>
    </Tab>
  </Tabs>
</Panel>
