Skip to content

Instantly share code, notes, and snippets.

@jdevillard
Last active October 26, 2021 08:26
Show Gist options
  • Save jdevillard/586cd137767b9fe33f18458862e0e587 to your computer and use it in GitHub Desktop.
Save jdevillard/586cd137767b9fe33f18458862e0e587 to your computer and use it in GitHub Desktop.
httpbin.org service contract definition
{
"openapi": "3.0.1",
"info": {
"title": "HttpBinOrg",
"description": "",
"version": "1.0"
},
"servers": [
{
"url": "https://address-of/http-bin.org/"
}
],
"paths": {
"/get": {
"get": {
"summary": "Returns GET data.",
"operationId": "get",
"responses": {
"200": {
"description": ""
}
}
}
},
"/post": {
"post": {
"summary": "POST",
"operationId": "post",
"responses": {
"200": {
"description": ""
}
}
}
}
},
"components": {
"securitySchemes": {
"apiKeyHeader": {
"type": "apiKey",
"name": "Ocp-Apim-Subscription-Key",
"in": "header"
},
"apiKeyQuery": {
"type": "apiKey",
"name": "subscription-key",
"in": "query"
}
}
},
"security": [
{
"apiKeyHeader": []
},
{
"apiKeyQuery": []
}
]
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment