forked from
tangled.org/core
fork
Configure Feed
Select the types of activity you want to include in your feed.
Monorepo for Tangled
fork
Configure Feed
Select the types of activity you want to include in your feed.
1// Code generated by cmd/lexgen (see Makefile's lexgen); DO NOT EDIT.
2
3package tangled
4
5// schema: sh.tangled.actor.profile
6
7import (
8 "github.com/bluesky-social/indigo/lex/util"
9)
10
11const (
12 ActorProfileNSID = "sh.tangled.actor.profile"
13)
14
15func init() {
16 util.RegisterType("sh.tangled.actor.profile", &ActorProfile{})
17} //
18// RECORDTYPE: ActorProfile
19type ActorProfile struct {
20 LexiconTypeID string `json:"$type,const=sh.tangled.actor.profile" cborgen:"$type,const=sh.tangled.actor.profile"`
21 // bluesky: Include link to this account on Bluesky.
22 Bluesky bool `json:"bluesky" cborgen:"bluesky"`
23 // description: Free-form profile description text.
24 Description *string `json:"description,omitempty" cborgen:"description,omitempty"`
25 Links []string `json:"links,omitempty" cborgen:"links,omitempty"`
26 // location: Free-form location text.
27 Location *string `json:"location,omitempty" cborgen:"location,omitempty"`
28 // pinnedRepositories: Any ATURI, it is up to appviews to validate these fields.
29 PinnedRepositories []string `json:"pinnedRepositories,omitempty" cborgen:"pinnedRepositories,omitempty"`
30 Stats []string `json:"stats,omitempty" cborgen:"stats,omitempty"`
31}