Documentation
    Preparing search index...

    Detailed information about a parsing error.

    interface IError {
        description: unknown;
        expected: string;
        path: string;
    }
    Index

    Properties

    description: unknown

    Description of what was actually found.

    Human/AI-readable message explaining the issue.

    unquoted string 'abc' - did you forget quotes?
    
    missing opening quote for 'hello'
    
    expected: string

    What was expected at this location.

    JSON value (string, number, boolean, null, object, or array)
    
    quoted string
    
    ":";
    
    path: string

    Property path to the error location.

    A dot-notation path from the root to the error location. Uses $input as the root.

    $input.user.email;
    
    $input.items[0].price;