> For the complete documentation index, see [llms.txt](https://sevenval.gitbook.io/flat/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://sevenval.gitbook.io/flat/reference/templating/oxn.md).

# Object XML Notation (OXN)

Internally, decoded JSON is represented in *Object XML Notation* (OXN). This allows [templates](/flat/reference/templating.md) to uniformly address data in JSON, XML and HTML documents with XPath expressions.

The following JSON and OXN are equivalent.

```javascript
{
  "Object": {
    "String": "foo",
    "Number": -1234.56,
    "Boolean": true,
    "Null": null,
    "Array": ["bar", 42]
  },
  "Empty Object": {}
}
```

```markup
<json object="">
  <Object object="">
    <String string="">foo</String>
    <Number number="">-1234.56</Number>
    <Boolean boolean="">true</Boolean>
    <Null null=""/>
    <Array array="">
      <value string="">bar</value>
      <value number="">42</value>
    </Array>
  </Object>
  <json-element name="Empty Object" object=""/>
</json>
```

Under most circumstances, explicit conversions between both formats are not necessary.

## See also

* [`json-stringify()`](/flat/reference/functions/json-stringify.md)
* [`json-parse()`](/flat/reference/functions/json-parse.md)
* [JSON Templates](/flat/reference/templating.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:

```
GET https://sevenval.gitbook.io/flat/reference/templating/oxn.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.
