module JMESPath

Defined in:

jmespath.cr

Constant Summary

VERSION = "0.1.0"

Class Method Summary

Class Method Detail

def self.search(expression : String, data : JSON::Any | Hash(String, JSON::Any) | String | IO, options = nil) : JSON::Any #

Main entry point for JMESPath expressions

@param expression [String] A valid JMESPath expression @param data [JSON::Any] The data to search @param options [Hash] Optional runtime configuration @return [JSON::Any] Returns the matched values or nil if not found


[View source]