jsonschema
Hacks to improve pydantic JSON Schema generation.
KEY_SCHEMA_DEFS
module-attribute
¶
KEY_SCHEMA_DEFS = '$defs'
JSON schema key to store subschema definitions.
KEY_SCHEMA_HASH
module-attribute
¶
KEY_SCHEMA_HASH = '$jsonschema_hash'
Custom key to store schema hashsum.
JSONSCHEMA_STRIP
module-attribute
¶
JSONSCHEMA_STRIP = {
"title",
"description",
"examples",
"$comment",
"readOnly",
"writeOnly",
"deprecated",
"$id",
"definitions",
KEY_SCHEMA_DEFS,
KEY_SCHEMA_HASH,
}
Fields to be removed for JSON Schema hashsum computation.
KEY_PYD_DEFS
module-attribute
¶
KEY_PYD_DEFS = 'definitions'
key name where pydantic stores subschema definitions.
jsonschema_id ¶
jsonschema_id(schema: JSONType)
Compute robust semantic schema identifier.
A schema identifier is based on the schema plugin name + version and its JSON Schema representation, which includes all parent and nested schemas.
Source code in src/metador_core/schema/jsonschema.py
78 79 80 81 82 83 84 |
|
lift_nested_defs ¶
lift_nested_defs(schema: JSONObject)
Flatten nested $defs ($defs -> key -> $defs) in-place.
Source code in src/metador_core/schema/jsonschema.py
90 91 92 93 94 95 96 97 98 99 |
|
merge_nested_defs ¶
merge_nested_defs(schema: JSONObject)
Merge definitions in-place.
Source code in src/metador_core/schema/jsonschema.py
109 110 111 112 113 114 115 116 117 118 |
|
collect_defmap ¶
collect_defmap(defs: JSONObject)
Compute dict mapping current name in $defs to new name based on metador_hash.
Source code in src/metador_core/schema/jsonschema.py
124 125 126 127 128 129 130 131 132 133 134 |
|
map_ref ¶
map_ref(defmap, refstr: str)
Update the $ref
string based on defmap.
Will replace #/definitions/orig
with #/$defs/mapped
.
Source code in src/metador_core/schema/jsonschema.py
137 138 139 140 141 142 143 144 145 146 147 148 |
|
update_refs ¶
update_refs(defmap, obj)
Recursively update $ref
in obj
based on defmap.
Source code in src/metador_core/schema/jsonschema.py
151 152 153 154 155 156 157 158 159 160 161 162 163 |
|
remap_refs ¶
remap_refs(schema)
Remap the $refs to use metador_hash-based keys.
Input must be a completed schema with a global $defs
section
that all nested entities use for local references.
Source code in src/metador_core/schema/jsonschema.py
166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 |
|
schema_of ¶
schema_of(
model: Type[BaseModel],
*args: Type[BaseModel],
**kwargs: Type[BaseModel]
)
Return JSON Schema for a model.
Improved version of pydantic.schema_of
, returns result
in $defs normal form, with $ref pointing to the model.
Source code in src/metador_core/schema/jsonschema.py
194 195 196 197 198 199 200 201 202 203 204 |
|
schemas ¶
schemas(
models: Iterable[Type[BaseModel]],
*args: Iterable[Type[BaseModel]],
**kwargs: Iterable[Type[BaseModel]]
)
Return JSON Schema for multiple models.
Improved version of pydantic.schema.schema
,
returns result in $defs normal form.
Source code in src/metador_core/schema/jsonschema.py
207 208 209 210 211 212 213 214 215 |
|
split_model_inheritance ¶
split_model_inheritance(
schema: JSONObject, model: Type[BaseModel]
)
Decompose a model into an allOf combination with a parent model.
This is ugly because pydantic does in-place wrangling and caching, and we need to hack around it.
Source code in src/metador_core/schema/jsonschema.py
221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 |
|
finalize_schema_extra ¶
finalize_schema_extra(
schema: JSONObject,
model: Type[BaseModel],
*,
base_model: Type[BaseModel] = None
) -> None
Perform custom JSON Schema postprocessing.
To be called as last action in custom schema_extra method in the used base model.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
schema |
JSONObject
|
The JSON object containing the schema |
required |
model |
Type[BaseModel]
|
The underlying pydantic model |
required |
base_model |
Type[BaseModel]
|
The custom base model that this function is called for. |
None
|
Source code in src/metador_core/schema/jsonschema.py
258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 |
|