summaryrefslogtreecommitdiff
path: root/lib/pleroma/web/api_spec/schemas/api_error.ex
blob: 5815df94c657c27c2e7e4a040f9faba53dc332ff (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
# Pleroma: A lightweight social networking server
# Copyright © 2017-2020 Pleroma Authors <https://pleroma.social/>
# SPDX-License-Identifier: AGPL-3.0-only

defmodule Pleroma.Web.ApiSpec.Schemas.ApiError do
  alias OpenApiSpex.Schema

  require OpenApiSpex

  OpenApiSpex.schema(%{
    title: "ApiError",
    description: "Response schema for API error",
    type: :object,
    properties: %{error: %Schema{type: :string}},
    example: %{
      "error" => "Something went wrong"
    }
  })
end