-
Notifications
You must be signed in to change notification settings - Fork 10
YAML Path Definition
The up-to-date documentation is here: YAML Path Definition (v1)
This implementation is a subset of the intersection between JSONPath and YAML Path, and it focuses on addressing elements inside YAML files (node descriptors). There are no query-like capabilities.
Example YAML structure:
foo:
- bar: &bar True
first: First Bar
second: 2
arr: [1, 2, 3]
- baz: False
other_bar: *bar
first: First Baz
some.el/here: Delimiters...
"bar's": 0Example JSON structure:
{
"foo": [
{
"bar": true,
"first": "First Bar",
"second": 2,
"arr": [1, 2, 3]
},
{
"baz": false,
"other_bar": true,
"first": "First Baz",
"some.el/here": "Delimiters...",
"bar's": 0,
}
]
}Dot-notation (.) is the only supported notation to define map key path segments. Both map key and sequence index path segments could also be defined using square brackets ([, ]). For map key and map keys selection segments both single (') and double (") quotes are supported, ['key'] is the same as ["key"] and ['key',"other's key"] is a valid path segment.
For example: $.foo[0].bar or .foo[0]['bar'] or ['foo'][0].bar or foo[1]["bar's"].
A path might be prefixed by a dollar sign and a dot ($, .), but this prefix is retained for compatibility with JSONPath and not mandatory. Implicit document root is assumed unless the path explicitly starts with an anchor (&...) segment (see below for details).
If the first segment is a map key segment (and explicit document root is omitted) the initial dot (.) is also not mandatory.
For example, these paths are equal: $.el, .el, el, ['el']. And they all address the value stored in the "el" key of the top-most map of the document.
An asterisk (*) as a key name has a special meaning, and treated as an all-inclusive keys selection section (see below). That's it, $.* expression would include all keys of the map in the document root. The [*] syntax is also valid. One should use the [:] notation to acheive same effect for sequences (include all indices).
$
Optional explicit document root. Only allowed to appear at the beginning of the path.
$.foo[0].bar = .foo[0].bar = foo[0].bar
== true.map.key or .map['key']
$.foo[0].second = ['foo'][0]['second']
== 2.map['key1','key2',...'keyN']
Special syntax for the all-inclusive key selection: .*. Also, there is the [*] variant of this syntax.
$.foo[0]['first','second'] = ['foo'][0]['first','second']
== {"first": "First Bar", "second": 2}
foo[0]['first','second','bar','arr'] = foo[0].*
== {"bar": true, "first": "First Bar", "second": 2, "arr": [1, 2, 3]}.array[<zero or positive number>]
$.foo[0]
== {"bar": True, "first": "First Bar", "second": 2}.array[<zero or positive number>,<zero or positive number>,...<zero or positive number>]
Special syntax for the all-inclusive indices set: [:].
$.foo[0].arr[0,1,2] = foo[0].arr[:]
== [1, 2, 3]&anchor
Matches elements starting from the given anchor instead of the document root. This segment is only sensible in paths for YAML documents as there is no anchors/aliases concept in the JSON specification.
$.foo[0].bar = &bar
== True