Module Cephalopod_models.Com_Atproto_Server_DescribeServer

lexicon "com.atproto.server.describeServer"

def main

type main_output = {
  1. inviteCodeRequired : bool option;
    (*

    If true, an invite code must be supplied to create an account on this instance.

    *)
  2. phoneVerificationRequired : bool option;
    (*

    If true, a phone verification token must be supplied to create an account on this instance.

    *)
  3. availableUserDomains : string list;
    (*

    List of domain suffixes that can be used in account handles.

    *)
  4. contact : Types.com_atproto_server_describeserver_contact option;
    (*

    Contact information

    *)
  5. did : string;
    (*

    format: "Did"

    *)
}
val show_main_output : main_output -> Ppx_deriving_runtime.string
val main_output_of_value : main_output Cephalopod_dasl.Value.Util.conv
val main_output_to_value : main_output -> Cephalopod_dasl.Value.t
val main : (unit, main_output, unit) Base.query

Describes the server's account creation requirements and capabilities. Implemented by PDS.

def contact

type nonrec contact = Types.com_atproto_server_describeserver_contact = {
  1. email : string option;
}