> 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)
