Skip to content
Snippets Groups Projects

ENH: JsonSchemaExporter accepts do_not_create parameter.

Merged Daniel Hornung requested to merge f-more-jsonschema-export into dev
@@ -22,7 +22,7 @@
"""Module for converting a data model into a json schema compatible dictionary.
"""
from typing import Any, Optional
from typing import Any, List, Optional
import linkahead as db
from linkahead.common.datatype import get_list_datatype, is_list_datatype
class JsonSchemaExporter:
"""A class which collects everything needed for the conversion.
@@ -36,4+36,4 @@
name_and_description_in_properties: bool = False,
additional_options_for_text_props: dict = None,
units_in_description: bool = True,
do_not_create: list[str] = None,
do_not_create: List[str] = None,
):
"""Set up a JsonSchemaExporter, which can then be applied on RecordTypes.
@@ -210,7+210,7 @@
if val.name:
vals.append(f"{val.id}, {val.name}")
else:
vals.append(f"{val.id}")
return vals
@@ -272,7+272,7 @@
name_and_description_in_properties: bool = False,
additional_options_for_text_props: Optional[dict] = None,
units_in_description: bool = True,
do_not_create: list[str] = None):
do_not_create: List[str] = None):
"""Create a jsonschema from a given RecordType that can be used, e.g., to
validate a json specifying a record of the given type.
Loading