> ## 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.

# Post Object

> Feedback post in your workspace.

Below are the details of the Post object's structure:

<ParamField body="id" type="string">
  Unique identifier for the post.
</ParamField>

<ParamField body="title" type="string">
  Title of the post.
</ParamField>

<ParamField body="slug" type="string">
  SEO-friendly URL slug for the post.
</ParamField>

<ResponseField name="description" type="object">
  Contains text (string) and html (string) formats.

  <Expandable title="properties">
    <ResponseField name="text" type="string | null">
      Plain text representation of the content.
    </ResponseField>

    <ResponseField name="html" type="string | null">
      HTML formatted version of the content.
    </ResponseField>
  </Expandable>
</ResponseField>

<ParamField body="board" type="Board">
  Reference to the board associated with the post.
</ParamField>

<ParamField body="postedBy" type="User">
  User who posted the content.
</ParamField>

<ParamField body="postedOnBehalfBy" type="User">
  User on whose behalf the post was made (if applicable).
</ParamField>

<ParamField body="upvoteCount" type="number">
  Number of upvotes the post has received.
</ParamField>

<ParamField body="commentsDisabled" type="boolean">
  Indicates whether comments are disabled.
</ParamField>

<ParamField body="tags" type="Tag">
  Tags associated with the post.
</ParamField>

<ParamField body="status" type="Status">
  Current status of the post.
</ParamField>

<ParamField body="etc" type="Date | null">
  ETC date-related information.
</ParamField>

<ParamField body="pinned" type="boolean">
  Indicates if the post is pinned at the top of the board.
</ParamField>

<ParamField body="hidden" type="boolean">
  States if the post is hidden from public view.
</ParamField>

<ParamField body="url" type="string">
  Post URL to the post inside Supahub dashboard.
</ParamField>

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