> For the complete documentation index, see [llms.txt](https://docs.openg2p.org/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://docs.openg2p.org/products/registry/registry/developer-zone/building-a-registry/concepts/registry-and-register-metadata/g2pintakeformuitabsections.md).

# G2PIntakeFormUITabSections

g2p\_intake\_form\_ui\_tab\_sections - UI Tab Configuration (Sections) for Intake forms

Junction table associating [G2PRegisterSection](/products/registry/registry/developer-zone/building-a-registry/concepts/registry-and-register-metadata/g2pregistersection.md) definitions with [G2PIntakeFormUITab](/products/registry/registry/developer-zone/building-a-registry/concepts/registry-and-register-metadata/g2pintakeformuitab.md) definitions. Defines which sections appear on each intake form tab and in what order.

***

### Attributes

| Attribute            | Description                                                      |
| -------------------- | ---------------------------------------------------------------- |
| **tab\_section\_id** | Primary key.                                                     |
| **tab\_id**          | Intake form tab. References `g2p_intake_form_ui_tabs.tab_id`.    |
| **section\_id**      | Register section. References `g2p_register_sections.section_id`. |
| **section\_order**   | Order within the tab. Lower values appear first.                 |

***

### Relationship model

```mermaid
erDiagram
    G2PIntakeFormDefinition ||--o{ G2PIntakeFormUITab : "has"
    G2PIntakeFormUITab ||--o{ G2PIntakeFormUITabSection : "has"
    G2PRegisterSection ||--o{ G2PIntakeFormUITabSection : "reuses"

    G2PIntakeFormDefinition {
        uuid form_id PK
        uuid register_id FK
        string form_mnemonic
        int number_of_verifications
    }

    G2PIntakeFormUITab {
        uuid tab_id PK
        uuid form_id FK
        string tab_label
        int tab_order
    }

    G2PIntakeFormUITabSection {
        uuid tab_section_id PK
        uuid tab_id FK
        uuid section_id FK
        int section_order
    }

    G2PRegisterSection {
        uuid section_id PK
        uuid register_id
        uuid section_register_id
        string section_mnemonic
    }
```

Intake forms **reuse** section definitions from register metadata. Submitting the form creates change requests against the referenced sections.


---

# Agent Instructions
This documentation is published with GitBook. GitBook is the documentation platform designed so that both humans and AI agents can read, navigate, and reason over technical content effectively. Learn more at gitbook.com.

## Querying This Documentation
If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter, and the optional `goal` query parameter:

```
GET https://docs.openg2p.org/products/registry/registry/developer-zone/building-a-registry/concepts/registry-and-register-metadata/g2pintakeformuitabsections.md?ask=<question>&goal=<endgoal>
```

`ask` is the immediate question: it should be specific, self-contained, and written in natural language.
`goal` is optional and describes the broader end goal you are ultimately trying to accomplish on behalf of the user. GitBook uses it to tailor the answer towards what is most useful for that goal.

The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
