Open
Description
Prerequisites
- I have searched the existing issues
- I understand that providing a SSCCE example is tremendously useful to the maintainers.
- I have read the documentation
- Ideally, I'm providing a sample JSFiddle or a shared playground link demonstrating the issue.
What theme are you using?
core
Version
https://rjsf-team.github.io/react-jsonschema-form/
Current Behavior
I've carefully read the JSON forms documentation and I've seen that JSON schema 2020-12 (AJV 8) can have an item defined using the $ref property, then extended by adding its props
"item":{
"$ref": "#/$defs/mydefinition",
"properties":{
...more props
}
}
But when testing my schema (I pasted it here) in your playground, it does not work; default values are not loaded, for instance I get :
Unsupported field schema for field root_selectors_playlist_title_path: Unknown field type undefined.
{
"default": "head title"
}
Expected Behavior
Default values should be loaded correctly.
Steps To Reproduce
- Head to the playground
- Paste this JSON schema
- Check the rendered form
Environment
- OS:(web playground)
- Node:(web playground)
- npm:(web playground)
Anything else?
Thanks for your help !