> For the complete documentation index, see [llms.txt](https://docs.hivesql.io/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://docs.hivesql.io/technical-informations/state-tables/communities.md).

# Communities

For more information about communities, read [this document](https://gitlab.syncad.com/hive/hivemind/-/blob/master/docs/communities.md).

All blockchain operations reference communities by their owner account name, i.e. something like `hive-NNNNNN` where NNNNNN represents the community identifier. That'snot really user-friendly.

Moreover, if you want to get communities related information, you have to browse all operations in chronological order to know what happened within each community. Add to this that the community management operations are non-consensual, and therefore not validated by the blockchain. This will put you in front of **a lot of ill-formatted operations** you have to deal with and filter.

That's why HiveSQL communities table stores a real-time updated list of all communities and their properties.

#### Columns

| Name        | Description                                                                                           |
| ----------- | ----------------------------------------------------------------------------------------------------- |
| name        | community account                                                                                     |
| type        | 1=topic 2=journal 3=council                                                                           |
| title       | display name of this community                                                                        |
| about       | short blurb about this community                                                                      |
| description | a blob of markdown to describe the purpose of the community, enumerate rules, etc. (up to 5000 chars) |
| flag\_text  | custom text for reporting content                                                                     |
| language    | primary language                                                                                      |
| nsfw        | true if this community is 18+. UI to automatically tag all posts/comments NSFW                        |


---

# 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.hivesql.io/technical-informations/state-tables/communities.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.
