Closed cmcarthur closed 5 years ago
given a dataclass like:
@dataclass class A(JsonSchemaMixin): props: Dict[str, AnotherType]
hologram should generate the resulting json schema:
{ "type": "object", "properties": { "props": { "type": "object", "patternProperties": { ".*": <AnotherType> } } } }
given a dataclass like:
hologram should generate the resulting json schema: