27 lines
696 B
1
// Code generated by cmd/lexgen (see Makefile's lexgen); DO NOT EDIT.
2
3
package tangled
4
5
// schema: sh.tangled.repo
6
7
import (
8
"github.com/bluesky-social/indigo/lex/util"
9
)
10
11
const (
12
RepoNSID = "sh.tangled.repo"
13
)
14
15
func init() {
16
util.RegisterType("sh.tangled.repo", &Repo{})
17
} //
18
// RECORDTYPE: Repo
19
type Repo struct {
20
LexiconTypeID string `json:"$type,const=sh.tangled.repo" cborgen:"$type,const=sh.tangled.repo"`
21
AddedAt *string `json:"addedAt,omitempty" cborgen:"addedAt,omitempty"`
22
// knot: knot where the repo was created
23
Knot string `json:"knot" cborgen:"knot"`
24
// name: name of the repo
25
Name string `json:"name" cborgen:"name"`
26
Owner string `json:"owner" cborgen:"owner"`
27
}
28