@archastro/sdk
    Preparing search index...

    Interface ExtractionOutput

    A produced file tracked by an extraction. Type, size, and URL live on the file it points at.

    interface ExtractionOutput {
        created_at?: string;
        file?: StorageFile;
        id: string;
        ordinal?: number;
        source_url?: string;
        state?: "done" | "failed";
    }
    Index

    Properties

    created_at?: string

    When this output was produced (ISO 8601).

    The produced file. For a config destination this is the Storage.File backing the versioned config row; type, size, and URL live here.

    id: string

    Output ID (exo_...).

    ordinal?: number

    Position of this output within the extraction's output set.

    source_url?: string

    The crawled page path or document path this output came from.

    state?: "done" | "failed"

    Output state.