> For the complete documentation index, see [llms.txt](https://lern.sunbird.org/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://lern.sunbird.org/use/developer-guide/discussion-forum/context-schema.md).

# Context Schema

We can attach the discussion forum for any context, with that we can start context based discussions. We are storing the context in separate redis db.

For example, While doing nodebb setup in local, we have provide redis database number (db:0).

and successive db number (db:1) should be a context database.

```
Nodebb database : db:0
context database: db:1
```

### **Context schema**

```
{
    sbType: String,
    sbIdentifier: String,
    cid: string // nodebb category id,
    data: JSON Object
}
```

Example:

| sbType | sbIdentifier                         | cid | data   |
| ------ | ------------------------------------ | --- | ------ |
| Course | do\_11317805943810457614592          | 4   | {JSON} |
| Batch  | 01316730820300800028                 | 5   | {JSON} |
| Group  | 123475d2-c299-45f6-992e-a22d081431bd | 6   | {JSON} |

Refer this link to attach a discussion forum for a context [link](/use/developer-guide/discussion-forum/developer-installation/installation-guide/discussion-forum-integration-with-any-application.md)


---

# 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://lern.sunbird.org/use/developer-guide/discussion-forum/context-schema.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.
