[WIP] music platform user data scraper
teal-fm atproto
at main 1.3 kB view raw
1// Code generated by cmd/lexgen (see Makefile's lexgen); DO NOT EDIT. 2 3package bsky 4 5// schema: app.bsky.graph.verification 6 7import ( 8 "github.com/bluesky-social/indigo/lex/util" 9) 10 11func init() { 12 util.RegisterType("app.bsky.graph.verification", &GraphVerification{}) 13} // 14// RECORDTYPE: GraphVerification 15type GraphVerification struct { 16 LexiconTypeID string `json:"$type,const=app.bsky.graph.verification" cborgen:"$type,const=app.bsky.graph.verification"` 17 // createdAt: Date of when the verification was created. 18 CreatedAt string `json:"createdAt" cborgen:"createdAt"` 19 // displayName: 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. 20 DisplayName string `json:"displayName" cborgen:"displayName"` 21 // handle: 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. 22 Handle string `json:"handle" cborgen:"handle"` 23 // subject: DID of the subject the verification applies to. 24 Subject string `json:"subject" cborgen:"subject"` 25}