forked from
tangled.org/core
Monorepo for Tangled
1// Code generated by cmd/lexgen (see Makefile's lexgen); DO NOT EDIT.
2
3package tangled
4
5// schema: sh.tangled.repo
6
7const (
8 RepoNSID = "sh.tangled.repo"
9)
10
11func init() {
12 // util.RegisterType("sh.tangled.repo", &Repo{})
13} //
14// RECORDTYPE: Repo
15type Repo struct {
16 LexiconTypeID string `json:"$type,const=sh.tangled.repo" cborgen:"$type,const=sh.tangled.repo"`
17 CreatedAt string `json:"createdAt" cborgen:"createdAt"`
18 Description *string `json:"description,omitempty" cborgen:"description,omitempty"`
19 // knot: knot where the repo was created
20 Knot string `json:"knot" cborgen:"knot"`
21 // labels: List of labels that this repo subscribes to
22 Labels []string `json:"labels,omitempty" cborgen:"labels,omitempty"`
23 // name: name of the repo
24 Name string `json:"name" cborgen:"name"`
25 RepoDid *string `json:"repoDid,omitempty" cborgen:"repoDid,omitempty"`
26 // source: source of the repo
27 Source *string `json:"source,omitempty" cborgen:"source,omitempty"`
28 // spindle: CI runner to send jobs to and receive results from
29 Spindle *string `json:"spindle,omitempty" cborgen:"spindle,omitempty"`
30 // topics: Topics related to the repo
31 Topics []string `json:"topics,omitempty" cborgen:"topics,omitempty"`
32 // website: Any URI related to the repo
33 Website *string `json:"website,omitempty" cborgen:"website,omitempty"`
34}