본문으로 건너뛰기

JSONPath

Special character constants used in JSONPath expressions

Signature

const JSONPath: {
/**
* Root node of the data (`$`)
* @see https://goessner.net/articles/JsonPath/index.html#e2
*/
readonly Root: "$";
/**
* Currently processing node (`@`)
* @see https://goessner.net/articles/JsonPath/index.html#e2
*/
readonly Current: "@";
/**
* Child node access operator (`.`)
* @see https://goessner.net/articles/JsonPath/index.html#e2
*/
readonly Child: ".";
/**
* Filter condition operator (`#`)
* @see https://goessner.net/articles/JsonPath/index.html#e2
*/
readonly Filter: "#";
}