{
  "openapi": "3.0.4",
  "info": {
    "title": "OfficeDocumentsService.Api",
    "version": "1.0"
  },
  "paths": {
    "/": {
      "get": {
        "tags": [
          "OfficeDocumentsService.Api"
        ],
        "responses": {
          "200": {
            "description": "OK"
          }
        }
      }
    },
    "/health": {
      "get": {
        "tags": [
          "OfficeDocumentsService.Api"
        ],
        "responses": {
          "200": {
            "description": "OK"
          }
        }
      }
    },
    "/convert": {
      "post": {
        "tags": [
          "OfficeDocumentsService.Api"
        ],
        "requestBody": {
          "content": {
            "multipart/form-data": {
              "schema": {
                "required": [
                  "file",
                  "output"
                ],
                "type": "object",
                "properties": {
                  "file": {
                    "type": "string",
                    "format": "binary"
                  },
                  "output": {
                    "$ref": "#/components/schemas/OutputFormat"
                  }
                }
              },
              "encoding": {
                "file": {
                  "style": "form"
                },
                "output": {
                  "style": "form"
                }
              }
            }
          }
        },
        "responses": {
          "200": {
            "description": "OK"
          }
        }
      }
    }
  },
  "components": {
    "schemas": {
      "OutputFormat": {
        "enum": [
          0,
          1
        ],
        "type": "integer",
        "format": "int32"
      }
    }
  },
  "tags": [
    {
      "name": "OfficeDocumentsService.Api"
    }
  ]
}