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
Stackblitz demo - https://stackblitz.com/edit/stackblitz-starters-8zhuuy?file=schema.json I'm trying to compile schema for the following type:
type HexColor = `#${string}`; export type InputType = { background: HexColor; }
Result
{ "$schema": "http://json-schema.org/draft-07/schema#", "properties": { "background": { "items": { "type": "string" }, "type": "array" } }, "type": "object" }
Expected
{ "$schema": "http://json-schema.org/draft-07/schema#", "properties": { "background": { "type": "string" } }, "type": "object" }
Or I do something wrong? 🤔
The text was updated successfully, but these errors were encountered:
duplicate of #426. Has been fixed in 0.61.0
Sorry, something went wrong.
No branches or pull requests
Stackblitz demo - https://stackblitz.com/edit/stackblitz-starters-8zhuuy?file=schema.json
I'm trying to compile schema for the following type:
Result
Expected
Or I do something wrong? 🤔
The text was updated successfully, but these errors were encountered: