Variable ArtifactEntrySchemaConst
ArtifactEntrySchema: ZodObject<
{
checksum_sha256: ZodOptional<ZodNullable<ZodString>>;
content_type: ZodOptional<ZodNullable<ZodString>>;
created_at: ZodOptional<ZodNullable<ZodNumber>>;
modified_at: ZodOptional<ZodNullable<ZodNumber>>;
path: ZodString;
size_bytes: ZodOptional<ZodNullable<ZodNumber>>;
},
"strict",
ZodTypeAny,
{
checksum_sha256?: string
| null;
content_type?: string | null;
created_at?: number | null;
modified_at?: number | null;
path: string;
size_bytes?: number | null;
},
{
checksum_sha256?: string
| null;
content_type?: string | null;
created_at?: number | null;
modified_at?: number | null;
path: string;
size_bytes?: number | null;
},
> = ...
Runtime schema for a single artifact entry returned by the Modal backend.