Variable LegislativeDocumentSchemaConst
LegislativeDocumentSchema: ZodObject<
{
authors: ZodArray<ZodString>;
committee: ZodOptional<ZodString>;
date: ZodString;
id: ZodString;
pdfUrl: ZodOptional<ZodString>;
status: ZodEnum<
{
ADOPTED: "ADOPTED";
DRAFT: "DRAFT";
IN_COMMITTEE: "IN_COMMITTEE";
PLENARY: "PLENARY";
REJECTED: "REJECTED";
SUBMITTED: "SUBMITTED";
},
>;
summary: ZodOptional<ZodString>;
title: ZodString;
type: ZodEnum<
{
AMENDMENT: "AMENDMENT";
DECISION: "DECISION";
DIRECTIVE: "DIRECTIVE";
OPINION: "OPINION";
REGULATION: "REGULATION";
REPORT: "REPORT";
RESOLUTION: "RESOLUTION";
},
>;
xmlUrl: ZodOptional<ZodString>;
},
$strip,
> = ...
Legislative document output schema