core/com.tealium.prism.core.api.data/JsonPath/Companion Companion object Companion Members Functions get Link copied to clipboard operator fun get(index: Int): JsonPath<JsonPath.Component.Index>operator fun get(name: String): JsonPath<JsonPath.Component.Key>Kotlin convenience method to allow expressing JsonPath items in a more succinct way: parse Link copied to clipboard @JvmStaticfun parse(path: String): JsonPath<*>Parses a string into a JsonPath. parseJsonListPath Link copied to clipboard @JvmStaticfun parseJsonListPath(path: String): JsonListPathAttempts to parse the given path as a JsonPath, where the root component is applicable to a JSON array and therefore extractable via an index. parseJsonObjectPath Link copied to clipboard @JvmStaticfun parseJsonObjectPath(path: String): JsonObjectPathAttempts to parse the given path as a JsonPath, where the root component is applicable to a JSON object and therefore extractable via a key. root Link copied to clipboard @JvmStaticfun root(index: Int): JsonPath<JsonPath.Component.Index>Starts configuring a JsonPath that should be applied to a JSON array.@JvmStaticfun root(key: String): JsonPath<JsonPath.Component.Key>Starts configuring a JsonPath that should be applied to a JSON object.