﻿{
  "openapi": "3.0.4",
  "info": {
    "title": "Test API",
    "version": "V1"
  },
  "paths": {
    "/resource": {
      "post": {
        "tags": [
          "Fake"
        ],
        "responses": {
          "200": {
            "description": "OK",
            "content": {
              "application/json": {
                "schema": {
                  "type": "integer",
                  "format": "int32"
                }
              }
            }
          },
          "400": {
            "description": "Bad Request"
          },
          "422": {
            "description": "Unprocessable Content"
          },
          "default": {
            "description": "Error"
          }
        }
      }
    }
  },
  "components": { },
  "tags": [
    {
      "name": "Fake"
    }
  ]
}