# Object XML Notation (OXN)

Internally, decoded JSON is represented in *Object XML Notation* (OXN). This allows [templates](https://sevenval.gitbook.io/flat/reference/templating) 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()`](https://sevenval.gitbook.io/flat/reference/functions/json-stringify)
* [`json-parse()`](https://sevenval.gitbook.io/flat/reference/functions/json-parse)
* [JSON Templates](https://sevenval.gitbook.io/flat/reference/templating)
