Variable surveyResponseEntitySchemaConst
surveyResponseEntitySchema: ZodObject<
{
createdAt: ZodDate;
deletedAt: ZodNullable<ZodDate>;
model: ZodRecord<ZodString, ZodUnknown>;
modelVersion: ZodInt;
pageNo: ZodDefault<ZodInt>;
participantToken: ZodDefault<ZodUnion<readonly [ZodLiteral<"">, ZodUUID]>>;
partitionKey: ZodUUID;
rowKey: ZodUUID;
updatedAt: ZodDate;
},
$strip,
> = ...