We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d687f55 commit 9c4abe8Copy full SHA for 9c4abe8
openapi_schema_validator/_format.py
@@ -90,7 +90,7 @@ def is_uuid(instance):
90
if isinstance(instance, binary_type):
91
instance = instance.decode()
92
93
- return text_type(UUID(instance)) == instance
+ return text_type(UUID(instance)).lower() == instance.lower()
94
95
96
def is_password(instance):
0 commit comments