{
	"openapi": "3.0.0",
	"info": {
		"version": "1.0.0",
		"title": "Swagger Petstore",
		"license": {
			"name": "MIT"
		}
	},
	"servers": [
		{
			"url": "http://petstore.swagger.io/v1"
		}
	],
	"paths": {
		"/pets": {
			"post": {
        "requestBody": {
          "content": {
            "application/x-www-form-urlencoded": {
              "schema": {
                "$ref": "#/components/schemas/Pet"
              }
            }
          }
        },
				"responses": {
					"201": {
            "description": "Null response"
					}
				}
      }
    }
	},
	"components": {
		"schemas": {
			"Pet": {
        "type": "object",
				"properties": {
					"id": {
						"type": "integer",
            "format": "int64",
            "description": "Description of Pet ID"
          },
          "name": {
            "type": "string",
            "description": "Description of Pet name"
          }
				}
      }
		}
	}
}
