Closed mlange-42 closed 3 years ago
Managed to write out in large parts with schemars, but toml::Value (used for preprocessor-settings in Yarner.toml) does not implement JsonSchema.
toml::Value
JsonSchema
Is it then simply "type": "object"?
"type": "object"
Potentially, the pre-processor settings could be BTreeMap or HashMap, but that would impose some restrictions on pre-processors.
BTreeMap
HashMap
Done in #136
Managed to write out in large parts with schemars, but
toml::Value
(used for preprocessor-settings in Yarner.toml) does not implementJsonSchema
.Is it then simply
"type": "object"
?Potentially, the pre-processor settings could be
BTreeMap
orHashMap
, but that would impose some restrictions on pre-processors.