We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 1ba98e8 commit fc3c98bCopy full SHA for fc3c98b
schematic/schemas/create_json_schema.py
@@ -293,8 +293,8 @@ def _get_validation_rule_based_fields(
293
f"that conflicts with the implicit type: '{implicit_js_type}' "
294
f"derived from its validation rules: {validation_rules}"
295
)
296
- raise ValueError(msg)
297
- if implicit_js_type:
+ warnings.warn(msg)
+ if not explicit_js_type and implicit_js_type:
298
js_type = implicit_js_type
299
msg = (
300
f"No explicit type set for property: '{name}', "
0 commit comments