Something went wrong. Try again.
Monorepo for Tangled
Something went wrong. Try again.
12345678910111213141516171819202122232425262728// Code generated by cmd/lexgen (see Makefile's lexgen); DO NOT EDIT.
package tangled
// schema: sh.tangled.publicKey
import ( "github.com/bluesky-social/indigo/lex/util")
const ( PublicKeyNSID = "sh.tangled.publicKey")
func init() { util.RegisterType("sh.tangled.publicKey", &PublicKey{})} //// RECORDTYPE: PublicKeytype PublicKey struct { LexiconTypeID string `json:"$type,const=sh.tangled.publicKey" cborgen:"$type,const=sh.tangled.publicKey"` // createdAt: key upload timestamp CreatedAt string `json:"createdAt" cborgen:"createdAt"` // key: public key contents Key string `json:"key" cborgen:"key"` // name: human-readable name for this key Name string `json:"name" cborgen:"name"`}