Variable SkillAttestationSchemaConst
SkillAttestationSchema: ZodObject<
{
skillId: ZodString;
executorId: ZodString;
timestamp: ZodDate;
inputHash: ZodString;
authorized: ZodBoolean;
authorizationMethod: ZodEnum<
{ role: "role"; explicit: "explicit"; inherited: "inherited" },
>;
},
$strip,
> = ...
Zod schema for SkillAttestation.