Rafiki Worker API Reference
    Preparing search index...

    Variable ArtifactManifestSchemaConst

    ArtifactManifestSchema: ZodObject<
        {
            files: ZodArray<
                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;
                    },
                >,
                "many",
            >;
            root: ZodOptional<ZodNullable<ZodString>>;
        },
        "strict",
        ZodTypeAny,
        {
            files: {
                checksum_sha256?: string
                | null;
                content_type?: string | null;
                created_at?: number | null;
                modified_at?: number | null;
                path: string;
                size_bytes?: number | null;
            }[];
            root?: string
            | null;
        },
        {
            files: {
                checksum_sha256?: string
                | null;
                content_type?: string | null;
                created_at?: number | null;
                modified_at?: number | null;
                path: string;
                size_bytes?: number | null;
            }[];
            root?: string
            | null;
        },
    > = ...

    Runtime schema for the artifact manifest returned by the Modal backend.