Skip to content

Instantly share code, notes, and snippets.

@darrelmiller
Created September 12, 2021 17:19
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save darrelmiller/98b9b88fb9212e2556af2e6686183984 to your computer and use it in GitHub Desktop.
Save darrelmiller/98b9b88fb9212e2556af2e6686183984 to your computer and use it in GitHub Desktop.
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