Created
August 17, 2018 15:06
-
-
Save leonardb/7647fb11158b1d53a95dbffc079909ba to your computer and use it in GitHub Desktop.
minimal_example_erlang_client
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
| { | |
| "swagger": "2.0", | |
| "info": { | |
| "version": "1.0.0", | |
| "title": "Swagger Petstore", | |
| "description": "A sample API that uses a petstore as an example to demonstrate features in the swagger-2.0 specification", | |
| "termsOfService": "http://swagger.io/terms/", | |
| "contact": { | |
| "name": "Swagger API Team" | |
| }, | |
| "license": { | |
| "name": "MIT" | |
| } | |
| }, | |
| "host": "petstore.swagger.io", | |
| "basePath": "/api", | |
| "schemes": [ | |
| "http" | |
| ], | |
| "consumes": [ | |
| "application/json" | |
| ], | |
| "produces": [ | |
| "application/json" | |
| ], | |
| "paths": { | |
| "/pets2": { | |
| "post": { | |
| "description": "Creates a new pet in the store. Duplicates are allowed", | |
| "operationId": "addPet2", | |
| "produces": [ | |
| "application/json" | |
| ], | |
| "parameters": [ | |
| { | |
| "name": "pet", | |
| "in": "body", | |
| "description": "Pet to add to the store", | |
| "required": true, | |
| "schema": { | |
| "type": "object", | |
| "required": [ | |
| "name" | |
| ], | |
| "properties": { | |
| "name": { | |
| "type": "string" | |
| }, | |
| "tag": { | |
| "type": "string" | |
| } | |
| } | |
| } | |
| } | |
| ], | |
| "responses": { | |
| "200": { | |
| "description": "pet response", | |
| "schema": { | |
| "$ref": "#/definitions/Pet" | |
| } | |
| }, | |
| "default": { | |
| "description": "unexpected error", | |
| "schema": { | |
| "$ref": "#/definitions/ErrorModel" | |
| } | |
| } | |
| } | |
| } | |
| }, | |
| "/pets": { | |
| "post": { | |
| "description": "Creates a new pet in the store. Duplicates are allowed", | |
| "operationId": "addPet", | |
| "produces": [ | |
| "application/json" | |
| ], | |
| "parameters": [ | |
| { | |
| "name": "pet", | |
| "in": "body", | |
| "description": "Pet to add to the store", | |
| "required": true, | |
| "schema": { | |
| "$ref": "#/definitions/NewPet" | |
| } | |
| } | |
| ], | |
| "responses": { | |
| "200": { | |
| "description": "pet response", | |
| "schema": { | |
| "$ref": "#/definitions/Pet" | |
| } | |
| }, | |
| "default": { | |
| "description": "unexpected error", | |
| "schema": { | |
| "$ref": "#/definitions/ErrorModel" | |
| } | |
| } | |
| } | |
| }, | |
| "get": { | |
| "description": "Returns all pets from the system that the user has access to", | |
| "operationId": "findPets", | |
| "produces": [ | |
| "application/json", | |
| "application/xml", | |
| "text/xml", | |
| "text/html" | |
| ], | |
| "parameters": [ | |
| { | |
| "name": "tags", | |
| "in": "query", | |
| "description": "tags to filter by", | |
| "required": false, | |
| "type": "array", | |
| "items": { | |
| "type": "string" | |
| }, | |
| "collectionFormat": "csv" | |
| }, | |
| { | |
| "name": "limit", | |
| "in": "query", | |
| "description": "maximum number of results to return", | |
| "required": true, | |
| "type": "integer", | |
| "format": "int32" | |
| }, | |
| { | |
| "name": "offset", | |
| "in": "query", | |
| "description": "offset", | |
| "required": true, | |
| "type": "integer", | |
| "format": "int32" | |
| }, | |
| { | |
| "name": "order", | |
| "in": "query", | |
| "description": "sort order", | |
| "required": false, | |
| "type": "string" | |
| } | |
| ], | |
| "responses": { | |
| "200": { | |
| "description": "pet response", | |
| "schema": { | |
| "type": "array", | |
| "items": { | |
| "$ref": "#/definitions/Pet" | |
| } | |
| } | |
| }, | |
| "default": { | |
| "description": "unexpected error", | |
| "schema": { | |
| "$ref": "#/definitions/ErrorModel" | |
| } | |
| } | |
| } | |
| } | |
| } | |
| }, | |
| "definitions": { | |
| "Pet": { | |
| "type": "object", | |
| "allOf": [ | |
| { | |
| "$ref": "#/definitions/NewPet" | |
| }, | |
| { | |
| "required": [ | |
| "id" | |
| ], | |
| "properties": { | |
| "id": { | |
| "type": "integer", | |
| "format": "int64" | |
| } | |
| } | |
| } | |
| ] | |
| }, | |
| "NewPet": { | |
| "type": "object", | |
| "required": [ | |
| "name" | |
| ], | |
| "properties": { | |
| "name": { | |
| "type": "string" | |
| }, | |
| "tag": { | |
| "type": "string" | |
| } | |
| } | |
| }, | |
| "ErrorModel": { | |
| "type": "object", | |
| "required": [ | |
| "code", | |
| "message" | |
| ], | |
| "properties": { | |
| "code": { | |
| "type": "integer", | |
| "format": "int32" | |
| }, | |
| "message": { | |
| "type": "string" | |
| } | |
| } | |
| } | |
| } | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment