| { |
| "openapi": "3.0.1", |
| "info": { |
| "title": "Swagger Petstore", |
| "description": "This is a fork of Petstore server specification. You can find out more about Swagger at [http://swagger.io](http://swagger.io). For this sample, you can use the api key `special-key` to test the authorization filters.", |
| "termsOfService": "http://swagger.io/terms/", |
| "contact": { |
| "email": "davide.corradini@univr.it" |
| }, |
| "license": { |
| "name": "Apache 2.0", |
| "url": "http://www.apache.org/licenses/LICENSE-2.0.html" |
| }, |
| "version": "1.0.0" |
| }, |
| "externalDocs": { |
| "description": "Find out more about Swagger", |
| "url": "http://swagger.io" |
| }, |
| "servers": [ |
| { |
| "url": "http://127.0.0.1:8080/v2" |
| } |
| ], |
| "tags": [ |
| { |
| "name": "pet", |
| "description": "Everything about your Pets", |
| "externalDocs": { |
| "description": "Find out more", |
| "url": "http://swagger.io" |
| } |
| } |
| ], |
| "paths": { |
| "/pet/{petId}": { |
| "get": { |
| "tags": [ |
| "pet" |
| ], |
| "summary": "Find pet by ID", |
| "description": "Returns a single pet", |
| "operationId": "getPetById", |
| "parameters": [ |
| { |
| "name": "petId", |
| "in": "path", |
| "description": "ID of pet to return", |
| "required": true, |
| "schema": { |
| "type": "integer", |
| "format": "int64" |
| } |
| } |
| ], |
| "responses": { |
| "200": { |
| "description": "successful operation", |
| "content": { |
| "application/json": { |
| "schema": { |
| "$ref": "#/components/schemas/Pet" |
| } |
| } |
| } |
| }, |
| "400": { |
| "description": "Missing Accept field in header", |
| "content": {} |
| }, |
| "404": { |
| "description": "Pet not found", |
| "content": {} |
| }, |
| "405": { |
| "description": "Invalid Id", |
| "content": {} |
| } |
| }, |
| "security": [ |
| { |
| "api_key": [] |
| } |
| ] |
| } |
| } |
| }, |
| "components": { |
| "schemas": { |
| "Category": { |
| "type": "object", |
| "properties": { |
| "id": { |
| "type": "integer", |
| "format": "int64" |
| }, |
| "name": { |
| "type": "string" |
| } |
| }, |
| "xml": { |
| "name": "Category" |
| } |
| }, |
| "Tag": { |
| "type": "object", |
| "properties": { |
| "id": { |
| "type": "integer", |
| "format": "int64" |
| }, |
| "name": { |
| "type": "string" |
| } |
| }, |
| "xml": { |
| "name": "Tag" |
| } |
| }, |
| "Pet": { |
| "required": [ |
| "name", |
| "photoUrls" |
| ], |
| "type": "object", |
| "properties": { |
| "id": { |
| "type": "integer", |
| "format": "int64" |
| }, |
| "category": { |
| "$ref": "#/components/schemas/Category" |
| }, |
| "name": { |
| "type": "string", |
| "example": "doggie" |
| }, |
| "photoUrls": { |
| "type": "array", |
| "xml": { |
| "name": "photoUrl", |
| "wrapped": true |
| }, |
| "items": { |
| "type": "string" |
| } |
| }, |
| "tags": { |
| "type": "array", |
| "xml": { |
| "name": "tag", |
| "wrapped": true |
| }, |
| "items": { |
| "$ref": "#/components/schemas/Tag" |
| } |
| }, |
| "status": { |
| "type": "string", |
| "description": "pet status in the store", |
| "enum": [ |
| "available", |
| "pending", |
| "sold" |
| ] |
| } |
| }, |
| "xml": { |
| "name": "Pet" |
| } |
| } |
| }, |
| "securitySchemes": { |
| "petstore_auth": { |
| "type": "oauth2", |
| "flows": { |
| "implicit": { |
| "authorizationUrl": "https://petstore.swagger.io/oauth/authorize", |
| "scopes": { |
| "write:pets": "modify pets in your account", |
| "read:pets": "read your pets" |
| } |
| } |
| } |
| }, |
| "api_key": { |
| "type": "apiKey", |
| "name": "api_key", |
| "in": "header" |
| } |
| } |
| } |
| } |