mirror of
https://github.com/plausible/analytics.git
synced 2024-12-26 11:02:52 +03:00
38b1834b3f
* Tidy up OpenAPI schema * Remove `items` from object schema
17 lines
392 B
Elixir
17 lines
392 B
Elixir
defmodule PlausibleWeb.Plugins.API.Schemas.Error do
|
|
@moduledoc """
|
|
OpenAPI schema for an error included in a response
|
|
"""
|
|
|
|
use PlausibleWeb, :open_api_schema
|
|
|
|
OpenApiSpex.schema(%{
|
|
description: """
|
|
An explanation of an error that occurred within the Plugins API
|
|
""",
|
|
type: :object,
|
|
required: [:detail],
|
|
properties: %{detail: %Schema{type: :string}}
|
|
})
|
|
end
|