Skip to content

Commit

Permalink
🐛 [#5012] Fix json schema of AuthType
Browse files Browse the repository at this point in the history
If there is no authentication, the value can be an empty string
  • Loading branch information
viktorvanwijk committed Jan 30, 2025
1 parent ac8e828 commit 08b8d31
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -92,7 +92,7 @@ def as_json_schema(self):
return {
"title": "Authentication type",
"type": "string",
"enum": AuthAttribute.values,
"enum": [*AuthAttribute.values, ""],
}


Expand Down

0 comments on commit 08b8d31

Please sign in to comment.