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
The $ref (e.g. #/definitions/el2) is somewhat ugly. It would be nicer to show the reference Display Name (title). Example:
$ref
#/definitions/el2
Element 2
The Display Name might not be unique. So, you might still want/need to append part the reference Object Name after the Display Name. Example:
Element 2 - el2
Here is a brief video and the schema to go with it:
Example:
{ definitions: { el2: { title: 'Element 2', type: 'string', default: 'El 2 default' } }, properties: { el2: { '$ref': '#/definitions/el2', title: 'Element 2 Override', description: '' } }, dependencies: {}, required: [], type: 'object' }
Thanks for all your efforts in building and maintaining this.
The text was updated successfully, but these errors were encountered:
Successfully merging a pull request may close this issue.
The
$ref
(e.g.#/definitions/el2
) is somewhat ugly. It would be nicer to show the reference Display Name (title). Example:#/definitions/el2
Element 2
The Display Name might not be unique. So, you might still want/need to append part the reference Object Name after the Display Name. Example:
#/definitions/el2
Element 2 - el2
Here is a brief video and the schema to go with it:
ref.mp4
Example:
Thanks for all your efforts in building and maintaining this.
The text was updated successfully, but these errors were encountered: