You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Nov 8, 2024. It is now read-only.
It would be great to be able to specify a title property with the schema for instance with:
# Test
- something (string) - # Why not a Title! - As well as a description
Would generate
{
"$schema": "http://json-schema.org/draft-04/schema#",
"type": "object",
"properties": {
"something": {
"type": "string",
"title": "Why not a Title!",
"description": "As well as a description"
}
}
}
Allowing to implement root level title (which is connected to #70) and descriptions would also fit idiomatic JSON Schema.
It seems that this is connected to a number of issues which are about using MSON to generate expressive JSON Schema (#43, #69, #70). It might be good to document the subset of JSON Schema that MSON covers (to help both inform those who might be interested in this approach, and maybe feed a roadmap?).