github.com/storacha/go-ucanto@v0.7.2/validator/datamodel/errors.ipldsch (about) 1 type Delegation struct { 2 audience String 3 } 4 5 type InvalidAudience struct { 6 name optional String 7 audience String 8 delegation Delegation 9 message String 10 stack optional String 11 } 12 13 type Expired struct { 14 name optional String 15 message String 16 expiredAt Int 17 stack optional String 18 } 19 20 type NotValidBefore struct { 21 name optional String 22 message String 23 validAt Int 24 stack optional String 25 }