Variable deploymentSchemaConst
deploymentSchema: ZodObject<
{
environment: ZodOptional<ZodNullable<ZodString>>;
release: ZodOptional<ZodNullable<ZodString>>;
},
"strip",
ZodTypeAny,
{ environment?: string
| null; release?: string | null },
{ environment?: string | null; release?: string | null },
> = ...
Runtime validator for Deployment.