Rafiki Worker API Reference
    Preparing search index...

    Variable ArtifactListResponseSchemaConst

    ArtifactListResponseSchema: ZodObject<
        {
            artifacts: 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;
                },
            >;
            job_id: ZodString;
            ok: ZodDefault<ZodBoolean>;
        },
        "strict",
        ZodTypeAny,
        {
            artifacts: {
                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;
            };
            job_id: string;
            ok: boolean;
        },
        {
            artifacts: {
                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;
            };
            job_id: string;
            ok?: boolean;
        },
    > = ...

    Runtime schema for the public job artifact listing response.