Swagger 的讲解 Explained

发布于 2023-08-17 11:11:41 字数 5327 浏览 22 评论 0

{
  "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": {
    "/pets": {
      "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": false, 
            "type": "integer", 
            "format": "int32"
          }
        ], 
        "responses": {
          "200": {
            "description": "pet response", 
            "schema": {
              "type": "array", 
              "items": {
                "$ref": "#/definitions/Pet"
              }
            }
          }, 
          "default": {
            "description": "unexpected error", 
            "schema": {
              "$ref": "#/definitions/ErrorModel"
            }
          }
        }
      }, 
      "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"
            }
          }
        }
      }
    }, 
    "/pets/{id}": {
      "get": {
        "description": "Returns a user based on a single ID, if the user does not have access to the pet", 
        "operationId": "findPetById", 
        "produces": [
          "application/json", 
          "application/xml", 
          "text/xml", 
          "text/html"
        ], 
        "parameters": [
          {
            "name": "id", 
            "in": "path", 
            "description": "ID of pet to fetch", 
            "required": true, 
            "type": "integer", 
            "format": "int64"
          }
        ], 
        "responses": {
          "200": {
            "description": "pet response", 
            "schema": {
              "$ref": "#/definitions/Pet"
            }
          }, 
          "default": {
            "description": "unexpected error", 
            "schema": {
              "$ref": "#/definitions/ErrorModel"
            }
          }
        }
      }, 
      "delete": {
        "description": "deletes a single pet based on the ID supplied", 
        "operationId": "deletePet", 
        "parameters": [
          {
            "name": "id", 
            "in": "path", 
            "description": "ID of pet to delete", 
            "required": true, 
            "type": "integer", 
            "format": "int64"
          }
        ], 
        "responses": {
          "204": {
            "description": "pet deleted"
          }, 
          "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"
        }
      }
    }
  }
}

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。
列表为空,暂无数据

关于作者

孤云独去闲

暂无简介

0 文章
0 评论
24 人气
更多

推荐作者

ni139999

文章 0 评论 0

Smile

文章 0 评论 0

木子李

文章 0 评论 0

仅此而已

文章 0 评论 0

qq_2gSKZM

文章 0 评论 0

内心激荡

文章 0 评论 0

    我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
    原文