1// Code generated by cmd/lexgen (see Makefile's lexgen); DO NOT EDIT.
2
3package atproto
4
5// schema: com.atproto.lexicon.schema
6
7import (
8 "github.com/bluesky-social/indigo/lex/util"
9)
10
11func init() {
12 util.RegisterType("com.atproto.lexicon.schema", &LexiconSchema{})
13} //
14// RECORDTYPE: LexiconSchema
15type LexiconSchema struct {
16 LexiconTypeID string `json:"$type,const=com.atproto.lexicon.schema" cborgen:"$type,const=com.atproto.lexicon.schema"`
17 // lexicon: Indicates the 'version' of the Lexicon language. Must be '1' for the current atproto/Lexicon schema system.
18 Lexicon int64 `json:"lexicon" cborgen:"lexicon"`
19}