akkoma/lib/pleroma/web/api_spec/schemas/api_error.ex

20 lines
497 B
Elixir
Raw Normal View History

2020-04-08 19:51:46 +00:00
# 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
2020-04-08 19:51:46 +00:00
alias OpenApiSpex.Schema
require OpenApiSpex
OpenApiSpex.schema(%{
title: "ApiError",
description: "Response schema for API error",
2020-04-08 19:51:46 +00:00
type: :object,
properties: %{error: %Schema{type: :string}},
2020-04-08 19:51:46 +00:00
example: %{
"error" => "Something went wrong"
2020-04-08 19:51:46 +00:00
}
})
end