I see there has been some discussion on JSONschema->Dhall and Dhall->JSONschema. I’m curious if there any recent developments or other places to look for hints for how to go about creating JSON schema from Dhall.
For example, I’d like to translate a Dhall object like:
{ foo : Text
, bar : Optional Text
}
into corresponding YAML (or JSON):
type: object
additionalProperties: false
properties:
foo:
type: string
bar:
type: string
required:
- foo