1 # Pleroma: A lightweight social networking server
2 # Copyright © 2017-2022 Pleroma Authors <https://pleroma.social/>
3 # SPDX-License-Identifier: AGPL-3.0-only
5 defmodule Pleroma.Web.ApiSpec.Schemas.AccountRelationship do
6 alias OpenApiSpex.Schema
7 alias Pleroma.Web.ApiSpec.Schemas.FlakeID
12 title: "AccountRelationship",
13 description: "Relationship between current account and requested account",
16 blocked_by: %Schema{type: :boolean},
17 blocking: %Schema{type: :boolean},
18 domain_blocking: %Schema{type: :boolean},
19 endorsed: %Schema{type: :boolean},
20 followed_by: %Schema{type: :boolean},
21 following: %Schema{type: :boolean},
23 muting: %Schema{type: :boolean},
24 muting_notifications: %Schema{type: :boolean},
25 note: %Schema{type: :string},
26 requested: %Schema{type: :boolean},
27 showing_reblogs: %Schema{type: :boolean},
28 subscribing: %Schema{type: :boolean},
29 notifying: %Schema{type: :boolean}
32 "blocked_by" => false,
34 "domain_blocking" => false,
36 "followed_by" => false,
38 "id" => "9tKi3esbG7OQgZ2920",
40 "muting_notifications" => false,
43 "showing_reblogs" => true,
44 "subscribing" => false,