Interface PreviewBooleanField

A boolean field configuration. Boolean values are not declared in the index schema; include them as document metadata instead — they are indexed automatically at upsert time.

BooleanField

interface PreviewBooleanField {
    description?: string;
    filterable?: boolean;
    type: "boolean";
}

Properties

description?: string

Optional description for this field.

BooleanField

filterable?: boolean

Whether this field is indexed for metadata filtering.

BooleanField

type: "boolean"

Identifies this as a boolean field. Must be boolean.

BooleanField