jira.js
    Preparing search index...

    Interface SchemaMismatchIssue

    One place where the response and the schema disagreed.

    interface SchemaMismatchIssue {
        expected: string;
        path: string;
        received: string;
    }
    Index
    expected: string

    What the schema expected there.

    path: string

    Dotted path to the value, e.g. values.0.created. Empty for the response root.

    received: string

    What arrived, named by its type rather than quoted — except when the schema named a closed set of values, where the value that was not in the set is quoted instead. See the note on SchemaMismatchReport.