I have some objects structure created with YAML. Inside YAML many tags are used. So the document contains not only builtin types but also some objects created from registered constructors. I need to check them by some patterns.
So far I've tried jsonpath
, objectpath
, jmespath
and dpath
. All those libraries are great and I like query languages (especially in first two), but they are strictly expecting JSON
as the input. Is there some analogs for raw objects?