This repository was archived by the owner on Jun 1, 2020. It is now read-only.

Description
When an integer or number type property has a default value of 0 defined, the value ends up in form data but it is not reflected on the form itself, leaving the field empty. A non-zero default value works.
For example this does not work:
"age": {
"type": "integer",
"default": 0
}
On the other hand, this works fine:
"age": {
"type": "integer",
"default": 1
}
Playground example situation:
