Created
September 12, 2021 17:19
-
-
Save darrelmiller/98b9b88fb9212e2556af2e6686183984 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
openapi "3.0.1" | |
info { | |
title "This is interesting" | |
version "1.0.0" | |
} | |
paths { | |
/foo/{id} { | |
get { | |
parameters { | |
parameter name="id" { | |
schema { | |
type "string" | |
} | |
} | |
} | |
responses { | |
200 description="Ok" { | |
} | |
} | |
} | |
delete { | |
responses { | |
204 description="No Content" { | |
} | |
} | |
} | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment