# Schema

Muninn lets you create nested schemas. In this way, you can group the data you want or convert your parsing output to the format you want.

{% code title="HTML" %}

```markup
<div class="parent">
  <a href="/about">About</div>
</div>

```

{% endcode %}

{% code title="Config" %}

```javascript
{
    "link": {
        "schema": {
            "title": "a",
            "url": "a @ href",
        }
    }
}
```

{% endcode %}

{% code title="Output" %}

```javascript
{
    "link": {
        "title": "About",
        "url": "/about"
    }
}
```

{% endcode %}
