schema_tools
validation
Was this page helpful?
Documentation Index
Fetch the complete documentation index at: /llms.txt
Use this file to discover all available pages before exploring further.
prefect.utilities.schema_tools.validationis_valid_schema is_valid_schema(schema: ObjectSchema, preprocess: bool = True) -> None
validate validate(obj: dict[str, Any], schema: ObjectSchema, raise_on_error: bool = False, preprocess: bool = True, ignore_required: bool = False, allow_none_with_default: bool = False) -> list[JSONSchemaValidationError]
is_valid is_valid(obj: dict[str, Any], schema: ObjectSchema) -> bool
prioritize_placeholder_errors prioritize_placeholder_errors(errors: list[JSONSchemaValidationError]) -> list[JSONSchemaValidationError]
build_error_obj build_error_obj(errors: list[JSONSchemaValidationError]) -> dict[str, Any]
process_properties process_properties(properties: dict[str, dict[str, Any]], required_fields: list[str], allow_none_with_default: bool = False) -> None
preprocess_schema preprocess_schema(schema: ObjectSchema, allow_none_with_default: bool = False) -> ObjectSchema
CircularSchemaRefError ValidationError Was this page helpful?