Created
March 16, 2021 05:46
-
-
Save erunion/afa2cab43ef2f99bff148b79a91b683f 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" : "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