# Conventions

The following conventions are used throughout the installation material.

## Angle brackets ( < and > )

Phrases wrapped in angle brackets (i.e., `<`, `>`) are placeholders used to indicate values that must be substituted with user-provided values. Placeholders are typically written in either [kebab case](https://developer.mozilla.org/en-US/docs/Glossary/Kebab_case), or [snake case](https://developer.mozilla.org/en-US/docs/Glossary/Snake_case); the following placeholders are equivalent:

* `<the-quick-brown-fox>`
* `<the_quick_brown_fox>`

### Example

#### Input

```yaml
computerScientists:
- Alan Turing
- Grace Hopper
- Donald Knuth
- Tim Berners-Lee
- John McCarthy
- <first-name> <last-name>
```

#### Output

```yaml
computerScientists:
- Alan Turing
- Grace Hopper
- Donald Knuth
- Tim Berners-Lee
- John McCarthy
- Margaret Hamilton
```


---

# 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://documentation.immuta.com/latest/configuration/self-managed-deployment/conventions.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.
