Filter expression with less than

Setup

Selector: $[?(@.key<42)]

[
    {"key": 0},
    {"key": 42},
    {"key": -1},
    {"key": 41},
    {"key": 43},
    {"key": 42.0001},
    {"key": 41.9999},
    {"key": 100},
    {"key": "43"},
    {"key": "42"},
    {"key": "41"},
    {"key": "value"},
    {"some": "value"}
]

Results

Consensus

[
  {
    "key": 0
  },
  {
    "key": -1
  },
  {
    "key": 41
  },
  {
    "key": 41.9999
  }
]

Other responses

Bash (JSONPath.sh)

[
  0,
  -1,
  41,
  41.9999,
  "43",
  "42",
  "41",
  "value"
]

C (json-glib)

Not supported

Unable to compile selector `$[?(@.key<42)]': Invalid array index definition “?(@.key<42)]”

Elixir (jaxon)

[]

Golang (github.com-PaesslerAG-jsonpath) ¹

Not supported

parsing error: $[?(@.key<42)]	:1:10 - 1:11 unexpected "<" while scanning parentheses expected ")"

Golang (github.com-bhmj-jsonslice) ¹ ³

[
  {
    "key": 0
  },
  {
    "key": -1
  },
  {
    "key": 41
  },
  {
    "key": 41.9999
  },
  {
    "key": "41"
  }
]

Golang (github.com-oliveagle-jsonpath) ¹

[]

JavaScript (Goessner) ²

[
  {
    "key": 0
  },
  {
    "key": -1
  },
  {
    "key": 41
  },
  {
    "key": 41.9999
  },
  {
    "key": "41"
  }
]

JavaScript (brunerd)

[
  {
    "key": 0
  },
  {
    "key": -1
  },
  {
    "key": 41
  },
  {
    "key": 41.9999
  },
  {
    "key": "41"
  }
]

JavaScript (jsonpath)

[
  {
    "key": 0
  },
  {
    "key": -1
  },
  {
    "key": 41
  },
  {
    "key": 41.9999
  },
  {
    "key": "41"
  }
]

JavaScript (jsonpath-plus)

[
  {
    "key": 0
  },
  {
    "key": -1
  },
  {
    "key": 41
  },
  {
    "key": 41.9999
  },
  {
    "key": "41"
  }
]

Kotlin (com.nfeld.jsonpathkt) ¹

Not supported

Unexpected char, char=?, index=2

Objective-C (SMJJSONPath) ¹ ³

[
  {
    "key": 0
  },
  {
    "key": -1
  },
  {
    "key": 41
  },
  {
    "key": 41.9999
  },
  {
    "key": "41"
  }
]

PHP (galbar-jsonpath)

[
  {
    "key": 0
  },
  {
    "key": -1
  },
  {
    "key": 41
  },
  {
    "key": 41.9999
  },
  {
    "key": "41"
  }
]

Python (jsonpath-ng)

Not supported

JsonPathLexerError('Error on line 1, col 2: Unexpected character: ? ')

Python (jsonpath-rw)

Not supported

JsonPathLexerError('Error on line 1, col 2: Unexpected character: ? ')

Python (jsonpath2)

[]

Raku (JSON-Path)

Not supported

Evaluation of embedded Raku code not allowed (construct with :allow-eval)

Ruby (jsonpath)

[
  {
    "key": 0
  },
  {
    "key": -1
  },
  {
    "key": 41
  },
  {
    "key": 41.9999
  },
  {
    "key": "41"
  }
]

Swift (Sextant)

[
  {
    "key": 0
  },
  {
    "key": -1
  },
  {
    "key": 41
  },
  {
    "key": 41.9999
  },
  {
    "key": "41"
  }
]

dotNET (JsonPathLib)

[
  {
    "key": 0
  },
  {
    "key": -1
  },
  {
    "key": 41
  },
  {
    "key": 41.9999
  },
  {
    "key": "41"
  }
]

Errors

Java (com.github.jsurfer)

java.lang.NumberFormatException: Character " is neither a decimal digit number, decimal point, nor "e" notation exponential mark.

PHP (Goessner) ²

ArgumentCountError

Perl (JSON-Path)

non-safe evaluation, died at main.pl line 11.

dotNET (Json.NET)

Input string was not in a correct format.

Footnotes