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 7e01495 commit ef4bbc8Copy full SHA for ef4bbc8
mintlify-overlay.yaml
@@ -20,7 +20,11 @@ actions:
20
remove: true
21
# Removing any instances in the request body that have "private": true as this break the mintlify linting when generating the docs
22
- target: $.paths..requestBody..[?(@.private == true)].private
23
- remove: true
+ remove: true
24
+ # Type "null" is not valid and breaks speakeasy generation
25
- target: '$..[?(@.type == "null")]'
26
update:
- type: "string"
27
+ type: "string"
28
+ # Property describe is not valid in openapi spec and breaks mintlify generation
29
+ - target: '$..[?(@.describe)]'
30
0 commit comments