Fixing boolean type in json schema (#5695)

This commit is contained in:
Tamas Nemeth 2022-08-22 11:35:19 +02:00 committed by GitHub
parent 7a58381eb6
commit ae577ddff2
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -86,7 +86,7 @@ def get_base() -> Any:
"description": "Extra headers which will be added to the request.", "description": "Extra headers which will be added to the request.",
}, },
"disable_ssl_verification": { "disable_ssl_verification": {
"type": "bool", "type": "boolean",
"description": "Disable SSL verification for HTTPS communications.", "description": "Disable SSL verification for HTTPS communications.",
"default": False, "default": False,
}, },