# Objects

Technically, there are no objects in DSS. Objects such as a Button are more like structures in which data is formatted. In a sense, each "object" uses the table "constructor." If you're familiar with TypeScript, it's like using an interface.

This is fairly confusing to explain, so we just call the different table structures objects. It's close enough to the truth and conveys the message adequately.

Below are the different "objects."

* [Directory](https://maya-bee.gitbook.io/dead-sea-scrolls/documentation/objects/directory) - the table defining the pages of your menu
* [DirectoryKey](https://maya-bee.gitbook.io/dead-sea-scrolls/documentation/objects/directorykey) - metadata about your menu
* Page - a page of your menu
* Button - a button in a page
  * SettingsButton - a type of Button made for settings (does nothing on its own)
    * SettingsButtonKeybind - a SettingsButton for binding keys
    * SettingsButtonChoice - a multiple choice SettingsButton
    * SettingsButtonNumber - choose between a range of numbers
    * SettingsButtonSlider - like a SettingsButtonNumber except that it uses a slider
* Palette - a palette that changes how DSS looks

[See here](https://maya-bee.gitbook.io/dead-sea-scrolls/meta/missing-definitions) for a list of objects that still need documentation.


---

# Agent Instructions: 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:

```
GET https://maya-bee.gitbook.io/dead-sea-scrolls/documentation/objects.md?ask=<question>
```

The question should be specific, self-contained, and written in natural language.
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.
