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

# Board Object

> A Board object in the Supahub API represents a specific interactive board with attributes.

Below is the structure and type information for a Board and its nested Form Details.

<ParamField body="id" type="string">
  The unique identifier for the Board.
</ParamField>

<ParamField body="name" type="string">
  The name of the Board.
</ParamField>

<ParamField body="slug" type="string">
  A URL-friendly identifier, often based on the name.
</ParamField>

<ParamField body="desc" type="string | null">
  A description of the Board.
</ParamField>

<ParamField body="isDefault" type="boolean">
  Indicates if this is the default Board.
</ParamField>

<ParamField body="isPrivate" type="boolean">
  Specifies whether the Board is private.
</ParamField>

<ParamField body="isCommentsDisabled" type="boolean">
  Indicates if comments are disabled on the Board.
</ParamField>

<ParamField body="isReadOnly" type="boolean">
  Determines if the Board is read-only.
</ParamField>

<ResponseField name="formDetails" type="object">
  Contains details about the Board's form (see Form Details attributes below).

  <Expandable title="properties">
    <ResponseField name="titleLabel" type="string">
      Label for the title field in the form.
    </ResponseField>

    <ResponseField name="titlePlaceholder" type="string">
      Placeholder text for the title input field.
    </ResponseField>

    <ResponseField name="descLabel" type="string">
      Label for the description field in the form.
    </ResponseField>

    <ResponseField name="descPlaceholder" type="string">
      Placeholder text for the description input field.
    </ResponseField>

    <ResponseField name="submitButton" type="string">
      Text for the submit button in the form.
    </ResponseField>
  </Expandable>
</ResponseField>

<ParamField body="createdAt" type="Date">
  The date and time when the Board was created.
</ParamField>
