Cephalopod_models.App_Bsky_Graph_Verification
lexicon "app.bsky.graph.verification"
type main = {
subject : string;
DID of the subject the verification applies to. format: "Did"
*)handle : string;
Handle of the subject the verification applies to at the moment of verifying, which might not be the same at the time of viewing. The verification is only valid if the current handle matches the one at the time of verifying. format: "Handle"
*)displayName : string;
Display name of the subject the verification applies to at the moment of verifying, which might not be the same at the time of viewing. The verification is only valid if the current displayName matches the one at the time of verifying.
*)createdAt : string;
Date of when the verification was created. format: "Datetime"
*)}
Record declaring a verification relationship between two accounts. Verifications are only considered valid by an app if issued by an account the app considers trusted.
val pp_main :
Ppx_deriving_runtime.Format.formatter ->
main ->
Ppx_deriving_runtime.unit
val show_main : main -> Ppx_deriving_runtime.string
val make_main :
subject:string ->
handle:string ->
displayName:string ->
createdAt:string ->
main
val main_of_value : main Cephalopod_dasl.Value.Util.conv
val main_to_value : main -> Cephalopod_dasl.Value.t
val main : main Base.record_def