We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
I'm trying to make a schema for the following JSON blob:
{ "extensionUniqueId": { "default": { "name": "The first extension", "src": "/path/to/extension1" } }, "extensionUniqueId2": { "default": { "name": "The second extension", "src": "/path/to/extension2" } } }
I've created the following schema:
{ "title": "Extensions", "type": "object", "patternProperties": { ".*": { "title": "Extension", "type": "object", "required": [ "default" ], "properties": { "default": { "title": "Default", "type": "object", "required": [ "src", "name" ], "properties": { "src": { "title": "Source/URL", "description": "The URL extension", "type": "string" }, "name": { "title": "Name", "description": "The extension Name", "type": "string" } } } } } } }
But I cannot figure out how to set the uiSchema since the property names are patterns.
The text was updated successfully, but these errors were encountered:
uiSchema is rather limited at the moment and doesn't support patternProperties -- it only supports named properties. Merging this with #701.
Sorry, something went wrong.
No branches or pull requests
I'm trying to make a schema for the following JSON blob:
I've created the following schema:
But I cannot figure out how to set the uiSchema since the property names are patterns.
The text was updated successfully, but these errors were encountered: