Skip to content

Instantly share code, notes, and snippets.

@dan-drl
Last active September 13, 2019 23:22
Show Gist options
  • Select an option

  • Save dan-drl/11e55dfc8602cb9a45b1f64a50f71ba7 to your computer and use it in GitHub Desktop.

Select an option

Save dan-drl/11e55dfc8602cb9a45b1f64a50f71ba7 to your computer and use it in GitHub Desktop.
{
"openapi" : "3.0.0",
"info" : {
"title" : "Test",
"description" : "",
"contact" : {
"email" : ""
},
"version" : "0.0.0"
},
"servers" : [ {
"url" : "/"
} ],
"paths" : {
"/operator/invoices/{invoice}" : {
"get" : {
"tags" : [ "accounting" ],
"summary" : "",
"description" : "",
"operationId" : "getFile",
"parameters" : [ {
"name" : "invoice",
"in" : "path",
"description" : "",
"required" : true,
"style" : "simple",
"explode" : false,
"schema" : {
"type" : "string"
}
} ],
"responses" : {
"200" : {
"description" : "Success",
"content" : {
"application/octet-stream" : {
"schema" : {
"type" : "file",
"description" : "The PDF"
}
}
}
},
"404" : {
"description" : "not found"
}
}
}
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment