From 025dbfcbf00bb4d35dfbd71c16ea70d8c8447b72 Mon Sep 17 00:00:00 2001 From: Michael Black Date: Wed, 27 May 2026 10:44:50 -0500 Subject: [PATCH] update app.bsky.actor lexicons --- api/bsky/actordefs.go | 4 ++++ lexicons/app/bsky/actor/defs.json | 9 +++++++++ 2 files changed, 13 insertions(+) diff --git a/api/bsky/actordefs.go b/api/bsky/actordefs.go index 934bfd2a..1077b67a 100644 --- a/api/bsky/actordefs.go +++ b/api/bsky/actordefs.go @@ -589,6 +589,10 @@ type ActorDefs_VerificationState struct { type ActorDefs_VerificationView struct { // createdAt: Timestamp when the verification was created. CreatedAt string `json:"createdAt" cborgen:"createdAt"` + // displayName: The display name of the issuer. + DisplayName *string `json:"displayName,omitempty" cborgen:"displayName,omitempty"` + // handle: The handle of the issuer. + Handle *string `json:"handle,omitempty" cborgen:"handle,omitempty"` // isValid: True if the verification passes validation, otherwise false. IsValid bool `json:"isValid" cborgen:"isValid"` // issuer: The user who issued this verification. diff --git a/lexicons/app/bsky/actor/defs.json b/lexicons/app/bsky/actor/defs.json index 2b316928..c7c04bf0 100644 --- a/lexicons/app/bsky/actor/defs.json +++ b/lexicons/app/bsky/actor/defs.json @@ -269,6 +269,15 @@ "description": "The user who issued this verification.", "format": "did" }, + "displayName": { + "type": "string", + "description": "The display name of the issuer." + }, + "handle": { + "type": "string", + "description": "The handle of the issuer.", + "format": "handle" + }, "uri": { "type": "string", "description": "The AT-URI of the verification record.", -- 2.51.2