# Fill

Sometimes you may want to have a value in your schema that you do not parse but need to have.

{% code title="HTML" %}

```markup
<div class="parent">
  <div class="blue">Blue Text</div>
</div>

```

{% endcode %}

{% code title="Config" %}

```javascript
{
    "blueText": ".blue",
    "createdAt": {
        "fill": new Date().toUTCString()
    }
}
```

{% endcode %}

{% code title="Output" %}

```javascript
{
    "blueText": "Blue Text",
    "cretedAt": "Tue, 29 Jun 2021 20:41:49 GMT"
}
```

{% endcode %}
