lexicon devex tutorial
1// Code generated by indigo lexgen tool. DO NOT EDIT MANUALLY.
2
3// Lexicon schema: place.atwork.endorsementProof
4
5package placeatwork
6
7// A cryptographic proof record that validates an endorsement by containing the CID of the endorsement content.
8type EndorsementProof struct {
9 LexiconTypeID string `json:"$type" cborgen:"$type,const=place.atwork.endorsementProof"`
10 // cid: The CID (Content Identifier) of the endorsement content that this proof validates. The endorsement's signatures array references this proof record.
11 Cid string `json:"cid" cborgen:"cid"`
12}