Member Junction
    Preparing search index...

    Interface MJContentSourceEntity_IContentSourceVectorMetadataFieldConfig

    Per-field metadata override, keyed by ContentItem field name. Mirrors the entity pipeline.

    interface MJContentSourceEntity_IContentSourceVectorMetadataFieldConfig {
        Included?: boolean;
        StoreAs?:
            | "string"
            | "number"
            | "boolean"
            | "epochSeconds"
            | "epochMilliseconds";
        TruncationLimit?: number;
    }
    Index

    Properties

    Included?: boolean

    Include this field under 'include'/'explicit', or exclude it (false) under 'all'/'exclude'.

    StoreAs?: "string" | "number" | "boolean" | "epochSeconds" | "epochMilliseconds"

    How to store this field's value: 'string' (default, truncated), 'number', 'boolean', 'epochSeconds' / 'epochMilliseconds' (parse a date to Unix epoch for numeric range filters). SQL numeric column types store as numbers automatically without setting this.

    TruncationLimit?: number

    Override the truncation limit (characters) for this field.