// Code generated by cmd/lexgen (see Makefile's lexgen); DO NOT EDIT. package tangled // schema: sh.tangled.actor.profile import ( "github.com/bluesky-social/indigo/lex/util" ) const ( ActorProfileNSID = "sh.tangled.actor.profile" ) func init() { util.RegisterType("sh.tangled.actor.profile", &ActorProfile{}) } // // RECORDTYPE: ActorProfile type ActorProfile struct { LexiconTypeID string `json:"$type,const=sh.tangled.actor.profile" cborgen:"$type,const=sh.tangled.actor.profile"` // bluesky: Include link to this account on Bluesky. Bluesky *bool `json:"bluesky,omitempty" cborgen:"bluesky,omitempty"` // description: Free-form profile description text. Description *string `json:"description,omitempty" cborgen:"description,omitempty"` Links []string `json:"links,omitempty" cborgen:"links,omitempty"` // location: Free-form location text. Location *string `json:"location,omitempty" cborgen:"location,omitempty"` // pinnedRepositories: Any ATURI, it is up to appviews to validate these fields. PinnedRepositories []string `json:"pinnedRepositories,omitempty" cborgen:"pinnedRepositories,omitempty"` Stats []string `json:"stats,omitempty" cborgen:"stats,omitempty"` }