Databricks SDK for JavaScript
    Preparing search index...
    interface Results {
        cause?: string;
        data?: JsonValue;
        fileName?: string;
        fileNames?: string[];
        isJsonSchema?: boolean;
        pos?: number;
        resultType?: ResultType;
        schema?: JsonObject[];
        summary?: string;
        truncated?: boolean;
    }
    Index

    Properties

    cause?: string

    The cause of the error

    data?: JsonValue
    fileName?: string

    The image data in one of the following formats:

    1. A Data URL with base64-encoded image data: data:image/{type};base64,{base64-data}. Example: data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAUA...

    2. A FileStore file path for large images: /plots/{filename}.png. Example: /plots/b6a7ad70-fb2c-4353-8aed-3f1e015174a4.png

    fileNames?: string[]

    List of image data for multiple images. Each element follows the same format as file_name.

    isJsonSchema?: boolean

    true if a JSON schema is returned instead of a string representation of the Hive type.

    pos?: number

    internal field used by SDK

    resultType?: ResultType
    schema?: JsonObject[]

    The table schema

    summary?: string

    The summary of the error

    truncated?: boolean

    true if partial results are returned.