// Code generated by cmd/lexgen (see Makefile's lexgen); DO NOT EDIT. // Lexicon schema: sh.tangled.repo.artifact package tangled import ( lexutil "github.com/bluesky-social/indigo/lex/util" ) const ( RepoArtifactNSID = "sh.tangled.repo.artifact" ) func init() { lexutil.RegisterType("sh.tangled.repo.artifact", &RepoArtifact{}) } type RepoArtifact struct { LexiconTypeID string `json:"$type" cborgen:"$type,const=sh.tangled.repo.artifact"` // artifact: the artifact Artifact *lexutil.LexBlob `json:"artifact" cborgen:"artifact"` // createdAt: time of creation of this artifact CreatedAt string `json:"createdAt" cborgen:"createdAt"` // name: name of the artifact Name string `json:"name" cborgen:"name"` // repo: repo that this artifact is being uploaded to Repo string `json:"repo" cborgen:"repo"` // tag: hash of the tag object that this artifact is attached to (only annotated tags are supported) Tag lexutil.LexBytes `json:"tag,omitempty" cborgen:"tag,omitempty"` }