- My goal: Render the description for a boolean field when using json-schema-form
- Issue: The description of a boolean property is not rendering property. The same json pasted into react-jsonschema-form playground will render the description. This problem seems to only exist for boolean types.
- Steps I've taken to troubleshoot:
- Check the react-jsonschema-form library.
- Attempt other keys like “ui:help” instead of “description”
- Additional info:
JSON snippet
"properties": {
"show_property_details": {
"type": "boolean",
"name": "show_property_details",
"description": "Whether or not to log property details for debugging purposes."
}
}
On Retool


