Default Object Editor
The standard editor that renders a fieldset containing property editors. The fieldset can be collapsed or expanded.
Activation Conditions
"type": "object"
Options
x-addPropertyContent: Custom content for add property buttonx-collapseToggleContent: Custom content for collapse togglex-deactivateNonRequired: Deactivate non-required propertiesx-enableCollapseToggle: Enable collapse/expand functionalityx-propertiesToggleContent: Custom content for properties togglex-startCollapsed: Start with the object collapsedx-titleTemplate: Custom template for the title
Example
{
"type": "object",
"title": "Login",
"properties": {
"email": {
"title": "E-Mail",
"type": "string",
"format": "email"
},
"password": {
"title": "Password",
"type": "string",
"minLength": 8
}
}
}