Skip to content

Commit ef4bbc8

Browse files
authored
fix-spec (#112)
1 parent 7e01495 commit ef4bbc8

File tree

1 file changed

+6
-2
lines changed

1 file changed

+6
-2
lines changed

mintlify-overlay.yaml

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,11 @@ actions:
2020
remove: true
2121
# Removing any instances in the request body that have "private": true as this break the mintlify linting when generating the docs
2222
- target: $.paths..requestBody..[?(@.private == true)].private
23-
remove: true
23+
remove: true
24+
# Type "null" is not valid and breaks speakeasy generation
2425
- target: '$..[?(@.type == "null")]'
2526
update:
26-
type: "string"
27+
type: "string"
28+
# Property describe is not valid in openapi spec and breaks mintlify generation
29+
- target: '$..[?(@.describe)]'
30+
remove: true

0 commit comments

Comments
 (0)