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.
2 parents b553d3a + 9c4abe8 commit 300f81eCopy full SHA for 300f81e
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