Interface PreviewStringField

A string field configuration for full-text search. The full_text_search object is required; a string field without it will be rejected.

StringField

interface PreviewStringField {
    description?: string;
    fullTextSearch?: PreviewStringFieldFullTextSearch;
    type: "string";
}

Properties

description?: string

Optional description for this field.

StringField

StringField

type: "string"

Identifies this as a string field. Must be string.

StringField