Remove YAML designated formatters

This commit is contained in:
kchason 2024-03-25 16:15:28 -04:00
parent fb3c3d828d
commit 0feb94a717
No known key found for this signature in database
GPG Key ID: FF41582B46516257

View File

@ -32,11 +32,7 @@ func main() {
}
// Generate jsonschema
r := &jsonschema.Reflector{
PreferYAMLSchema: true,
YAMLEmbeddedStructs: true,
FullyQualifyTypeNames: true,
}
r := &jsonschema.Reflector{}
jsonschemaData := r.Reflect(&templates.Template{})
var buf bytes.Buffer