{
  "200": {
    "description": "Successful Operation.",
    "content": {
      "application/json": {
        "schema": {
          "type": "object",
          "properties": {
            "message": {
              "type": "string",
              "example": "Completed Successfully."
            }
          }
        }
      }
    }
  },
  "400": {
    "description": "Bad Request.",
    "content": {
      "application/json": {
        "schema": {
          "type": "object",
          "properties": {
            "message": {
              "type": "string",
              "example": "Bad Request."
            }
          }
        }
      }
    }
  },
  "404": {
    "description": "Not Found.",
    "content": {
      "application/json": {
        "schema": {
          "type": "object",
          "properties": {
            "message": {
              "type": "string",
              "example": "Not Found."
            }
          }
        }
      }
    }
  },
  "500": {
    "description": "Internal Server Error.",
    "content": {
      "application/json": {
        "schema": {
          "type": "object",
          "properties": {
            "message": {
              "type": "string",
              "example": "Internal Server Error."
            }
          }
        }
      }
    }
  }
}
