Module Cephalopod_models.Com_Atproto_Repo_DescribeRepo

lexicon "com.atproto.repo.describeRepo"

def main

type main_params = {
  1. repo : string;
    (*

    The handle or DID of the repo. format: "AtIdentifier"

    *)
}
val show_main_params : main_params -> Ppx_deriving_runtime.string
val make_main_params : repo:string -> main_params
val main_params_of_value : main_params Cephalopod_dasl.Value.Util.conv
val main_params_to_value : main_params -> Cephalopod_dasl.Value.t
type main_output = {
  1. handle : string;
    (*

    format: "Handle"

    *)
  2. did : string;
    (*

    format: "Did"

    *)
  3. didDoc : Cephalopod_dasl.Value.t;
    (*

    The complete DID document for this account.

    *)
  4. collections : string list;
    (*

    List of all the collections (NSIDs) for which this repo contains at least one record.

    *)
  5. handleIsCorrect : bool;
    (*

    Indicates if handle is currently valid (resolves bi-directionally)

    *)
}
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 : (main_params, main_output, unit) Base.query

Get information about an account and repository, including the list of collections. Does not require auth.