# Using the DocumentationConfiguration Object

SitecoreDXG supports being passed a `DocumentationConfiguration` object as a property of the JSON object stored in the [`OPTIONS_FILE_PATH`](https://sitecoreuml.gitbook.io/sitecoredxg/getting-started/using-sitecoredxg/using-the-default-rabbitmq-middleman-and-trigger) passed to the middleman. This object allows users to add extra information to the documentation that they plan to generate.&#x20;

By default, this object supports the following properties:

1. `DocumentationTitle`
2. `CommitAuthor`
3. `CommitHash`
4. `CommitLink`
5. `DeployLink`
6. `ProjectName`
7. `EnvironmentName`

An example `DocumenationConfiguration` object is shown below:

```javascript
{
    "DocumentationConfiguration": {
        "DocumentationTitle": "Foo Corp Sitecore Solution Documentation",
        "ProjectName": "Foo Corp .COM",
        "EnvironmentName": "UAT",
        "CommitAuthor": "Zachary Kniebel",
        "CommitHash": "0FE1D344",
        "CommitLink": "http://mygit.com/repo/myrepo/commits/0FE1D344",
        "DeployLink": "http://mydocs.com/foo/bar"
    }
}
```


---

# 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://sitecoreuml.gitbook.io/sitecoredxg/getting-started/using-sitecoredxg/using-the-default-rabbitmq-middleman-and-trigger/using-the-documentationconfiguration-object.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.
