Skip to content
Snippets Groups Projects

ENH: JsonSchemaExporter accepts do_not_create parameter.

Merged Florian Spreckelsen requested to merge release-v0.9.0 into main
1 file
+ 2
1
Compare changes
  • Side-by-side
  • Inline
@@ -259,7 +259,8 @@ class JsonSchemaExporter:
A dict containing the json schema created from the given RecordType's properties.
"""
if rt is None:
raise ValueError("`rt` must not be None.")
raise ValueError(
"recordtype_to_json_schema(...) cannot be called with a `None` RecordType.")
schema = self._make_segment_from_recordtype(rt)
schema["$schema"] = "https://json-schema.org/draft/2019-09/schema"
if rt.name:
Loading