Databricks SDK for JavaScript
    Preparing search index...

    A citation locating an extracted value in the source. start/stop are set for span (STRING input) citations, bbox for bbox (parsed-document input) citations.

    interface AiExtractCitation {
        bbox?: AiExtractBbox[];
        id?: bigint;
        start?: bigint;
        stop?: bigint;
    }
    Index

    Properties

    Properties

    bbox?: AiExtractBbox[]

    Bounding boxes locating the citation on the source pages; set for bbox citations.

    id?: bigint

    Integer matching a citation_ids entry on an extracted field.

    start?: bigint

    Inclusive 0-based character offset into the input string; set for span citations.

    stop?: bigint

    Exclusive 0-based character offset into the input string; set for span citations.