Skip to content

Instantly share code, notes, and snippets.

@erunion
Created March 16, 2021 05:46
Show Gist options
  • Save erunion/afa2cab43ef2f99bff148b79a91b683f to your computer and use it in GitHub Desktop.
Save erunion/afa2cab43ef2f99bff148b79a91b683f to your computer and use it in GitHub Desktop.
{
"openapi" : "3.0.1",
"info" : {
"title" : "Find_Jobs",
"version" : "v2"
},
"servers" : [ {
"url" : "https://httpbin.org"
}],
"security" : [ {
"default" : [ ]
} ],
"paths" : {
"/positions.json" : {
"get" : {
"summary" : "Finding job in the Github",
"parameters" : [ {
"name" : "description",
"in" : "query",
"description" : "Python",
"required" : true,
"style" : "form",
"explode" : true,
"schema" : {
"type" : "string"
}
}, {
"name" : "full_time",
"in" : "query",
"description" : "true",
"required" : true,
"style" : "form",
"explode" : true,
"schema" : {
"type" : "string"
}
}, {
"name" : "location",
"in" : "query",
"description" : "sf",
"required" : true,
"style" : "form",
"explode" : true,
"schema" : {
"type" : "string"
}
} ],
"responses" : {
"200" : {
"description" : "ok"
}
},
"security" : [ {
"default" : [ ]
} ],
"x-auth-type" : "None",
"x-throttling-tier" : "Unlimited"
}
}
},
"components" : {
"securitySchemes" : {
"default" : {
"type" : "oauth2",
"flows" : {
"implicit" : {
"authorizationUrl" : "xxxxxxx",
"scopes" : { }
}
}
}
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment