> For the complete documentation index, see [llms.txt](https://docs.atfinity.io/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://docs.atfinity.io/document-xml-adx/jinja-templating/case-meta-information.md).

# Case Meta Information

ADX allows you to access all the meta information available about a case. There are two ways to access these:

## `CASE` Instance

Using `CASE` you can access all the [meta information available in RuLa](/rule-language/global-constants/case-constant.md).

## META dictionary

A special dictionary META is supplied to the Jinja template engine that contains. information about the rendering process. You access those with for example

<pre class="language-xml"><code class="lang-xml">&#x3C;text>{{META.language}}&#x3C;/text>
&#x3C;text>{{META.editable}}&#x3C;/text>
<strong>&#x3C;text>{{META.rendered_at}}&#x3C;/text>
</strong></code></pre>

#### language

The language key of the requested rendering language, e.g. `de` or `en`

#### editable

A boolean wether the document is rendered as editable or not

#### rendered\_at

A django timezoned datetime object that represents the time of rendering. You can e.g. display the [ISO 8601](https://en.wikipedia.org/wiki/ISO_8601) time of rendering with `META.rendered_at.isoformat()`.


---

# 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.atfinity.io/document-xml-adx/jinja-templating/case-meta-information.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.
