Add vendor folder to git

This commit is contained in:
Lucas Käldström 2017-06-26 19:23:05 +03:00
parent 66cf5eaafb
commit 183585f56f
No known key found for this signature in database
GPG key ID: 600FEFBBD0D40D21
6916 changed files with 2629581 additions and 1 deletions

View file

@ -0,0 +1,30 @@
{
"description": "Returns a pet based on ID",
"summary": "Find pet by ID",
"operationId": "getPetsById",
"tags": [ "foo", "bar"],
"produces": [
"application/json",
"text/html"
],
"parameters": [
{
"name": "petId",
"in": "path",
"description": "ID of pet that needs to be fetched",
"required": true,
"type": "integer",
"format": "int64"
}
],
"responses": {
"200": {
"description": "a pet to be returned",
"schema": {"$ref": "Pet"}
},
"default": {
"description": "Unexpected error",
"schema": {"$ref": "ErrorModel"}
}
}
}

View file

@ -0,0 +1,36 @@
{
"description": "Returns a pet based on ID",
"summary": "Find pet by ID",
"operationId": "getPetsById",
"produces": [
"application/json",
"text/html"
],
"parameters": [
{
"name": "petId",
"in": "path",
"description": "ID of pet that needs to be fetched",
"required": true,
"type": "integer",
"format": "int64"
},
{
"name": "includeDetails",
"in": "query",
"description": "include details in response",
"required": true,
"type": "boolean"
}
],
"responses": {
"200": {
"description": "a pet to be returned",
"schema": {"$ref": "Pet"}
},
"default": {
"description": "Unexpected error",
"schema": {"$ref": "ErrorModel"}
}
}
}

View file

@ -0,0 +1,33 @@
{
"description": "Returns a pet based on ID",
"summary": "Find pet by ID",
"operationId": "getPetsById",
"produces": [
"application/json",
"text/html"
],
"parameters": [
{
"name": "petId",
"in": "path",
"description": "ID of pet that needs to be fetched",
"required": true,
"type": "integer",
"format": "int64"
}
],
"responses": {
"200": {
"description": "fun",
"schema": {"$ref": "Pet"}
},
"400": {
"description": "Invalid ID supplied <= this is purely for documentation",
"schema": {"$ref": "ErrorModel"}
},
"default": {
"description": "Unexpected error",
"schema": {"$ref": "ErrorModel"}
}
}
}