IDstring`validate:"required,ulid" bun:"type:CHAR(26),pk,nullzero,notnull,unique"`// id of this item in the database
CreatedAttime.Time`validate:"-" bun:"type:timestamp,nullzero,notnull,default:current_timestamp"`// when was item created
UpdatedAttime.Time`validate:"-" bun:"type:timestamp,nullzero,notnull,default:current_timestamp"`// when was item last updated
Usernamestring`validate:"required" bun:",nullzero,notnull,unique:userdomain"`// Username of the account, should just be a string of [a-zA-Z0-9_]. Can be added to domain to create the full username in the form ``[username]@[domain]`` eg., ``user_96@example.org``. Username and domain should be unique *with* each other
Domainstring`validate:"omitempty,fqdn" bun:",nullzero,unique:userdomain"`// Domain of the account, will be null if this is a local account, otherwise something like ``example.org`` or ``mastodon.social``. Should be unique with username.
AvatarMediaAttachmentIDstring`validate:"omitempty,ulid" bun:"type:CHAR(26),nullzero"`// Database ID of the media attachment, if present
AvatarMediaAttachment*MediaAttachment`validate:"-" bun:"rel:belongs-to"`// MediaAttachment corresponding to avatarMediaAttachmentID
AvatarRemoteURLstring`validate:"omitempty,url" bun:",nullzero"`// For a non-local account, where can the header be fetched?
HeaderMediaAttachmentIDstring`validate:"omitempty,ulid" bun:"type:CHAR(26),nullzero"`// Database ID of the media attachment, if present
HeaderMediaAttachment*MediaAttachment`validate:"-" bun:"rel:belongs-to"`// MediaAttachment corresponding to headerMediaAttachmentID
HeaderRemoteURLstring`validate:"omitempty,url" bun:",nullzero"`// For a non-local account, where can the header be fetched?
DisplayNamestring`validate:"-" bun:",nullzero"`// DisplayName for this account. Can be empty, then just the Username will be used for display purposes.
Fields[]Field`validate:"-"`// a key/value map of fields that this account has added to their profile
Notestring`validate:"-" bun:",nullzero"`// A note that this account has on their profile (ie., the account's bio/description of themselves)
Memorialbool`validate:"-" bun:",nullzero,default:false"`// Is this a memorial account, ie., has the user passed away?
AlsoKnownAsstring`validate:"omitempty,ulid" bun:"type:CHAR(26),nullzero"`// This account is associated with x account id
MovedToAccountIDstring`validate:"omitempty,ulid" bun:"type:CHAR(26),nullzero"`// This account has moved this account id in the database
Botbool`validate:"-" bun:",nullzero,default:false"`// Does this account identify itself as a bot?
Reasonstring`validate:"-" bun:",nullzero"`// What reason was given for signing up when this account was created?
Lockedbool`validate:"-" bun:",nullzero,default:true"`// Does this account need an approval for new followers?
Discoverablebool`validate:"-" bun:",nullzero,default:false"`// Should this account be shown in the instance's profile directory?
PrivacyVisibility`validate:"required_without=Domain,omitempty,oneof=public unlocked followers_only mutuals_only direct" bun:",nullzero"`// Default post privacy for this account
Sensitivebool`validate:"-" bun:",nullzero,default:false"`// Set posts from this account to sensitive by default?
Languagestring`validate:"omitempty,bcp47_language_tag" bun:",nullzero,notnull,default:'en'"`// What language does this account post in?
URIstring`validate:"required,url" bun:",nullzero,notnull,unique"`// ActivityPub URI for this account.
URLstring`validate:"required_without=Domain,omitempty,url" bun:",nullzero,unique"`// Web URL for this account's profile
LastWebfingeredAttime.Time`validate:"required_with=Domain" bun:"type:timestamp,nullzero"`// Last time this account was refreshed/located with webfinger.
InboxURIstring`validate:"required_without=Domain,omitempty,url" bun:",nullzero,unique"`// Address of this account's ActivityPub inbox, for sending activity to
OutboxURIstring`validate:"required_without=Domain,omitempty,url" bun:",nullzero,unique"`// Address of this account's activitypub outbox
FollowingURIstring`validate:"required_without=Domain,omitempty,url" bun:",nullzero,unique"`// URI for getting the following list of this account
FollowersURIstring`validate:"required_without=Domain,omitempty,url" bun:",nullzero,unique"`// URI for getting the followers list of this account
FeaturedCollectionURIstring`validate:"required_without=Domain,omitempty,url" bun:",nullzero,unique"`// URL for getting the featured collection list of this account
ActorTypestring`validate:"oneof=Application Group Organization Person Service" bun:",nullzero,notnull"`// What type of activitypub actor is this account?
PrivateKey*rsa.PrivateKey`validate:"required_without=Domain"`// Privatekey for validating activitypub requests, will only be defined for local accounts
PublicKey*rsa.PublicKey`validate:"required"`// Publickey for encoding activitypub requests, will be defined for both local and remote accounts
PublicKeyURIstring`validate:"required,url" bun:",nullzero,notnull,unique"`// Web-reachable location of this account's public key
SensitizedAttime.Time`validate:"-" bun:"type:timestamp,nullzero"`// When was this account set to have all its media shown as sensitive?
SilencedAttime.Time`validate:"-" bun:"type:timestamp,nullzero"`// When was this account silenced (eg., statuses only visible to followers, not public)?
SuspendedAttime.Time`validate:"-" bun:"type:timestamp,nullzero"`// When was this account suspended (eg., don't allow it to log in/post, don't accept media/posts from this account)
HideCollectionsbool`validate:"-" bun:",nullzero,default:false"`// Hide this account's collections
SuspensionOriginstring`validate:"omitempty,ulid" bun:"type:CHAR(26),nullzero"`// id of the database entry that caused this account to become suspended -- can be an account ID or a domain block ID