Hi everyone! How do i set a initial date in a string with date format? I have tried this in the demo, but no luck, even when setting a proper date for input type date (YYYY-MM-DD) in the initial data like this: `{ date: "2018-1-13" }` Also not working with: `{ date: "2018-01-13T00:00:00" }` With time, it works like this: ` { time: "14:00" } ` and schema (minimalist example): `{ "$schema": "http://json-schema.org/draft-03/schema#", "type": "object", "properties": { "time": { "type": "string", "format": "time" } } }` If there is no support, I can work on it. Thanks in advance!