Member Junction
    Preparing search index...

    Interface JsonPathConfig

    Configuration for extracting value(s) from JSON via a JSONPath expression.

    interface JsonPathConfig {
        First?: boolean;
        Path: string;
    }
    Index

    Properties

    Properties

    First?: boolean

    Return only the first match (default). When false, returns the full array of matches.

    Path: string

    JSONPath expression, e.g. $.store.book[0].title or $..author.