Type Alias PropertyJsonPath
PropertyJsonPath:
| ""
| `$.${string}`
| `$['${string}']`
| `$.content[${number}].${string}`
| `$.content[${number}]['${string}']`
| `$.content[${number}].content[${number}].${string}`
| `$.content[${number}].content[${number}]['${string}']`
| `$.content[${number}].content[${number}].content[${number}].${string}`
| `$.content[${number}].content[${number}].content[${number}]['${string}']`
| `$.content[${number}].content[${number}].content[${number}].content[${number}].${string}`
| `$.content[${number}].content[${number}].content[${number}].content[${number}]['${string}']`
JSON path to the
markeror an attribute on a MarkerObject or Usj in the current USJ document. Note that it seems you must use['bracket notation']rather than.dotnotation if there are symbols other than underscore in the property nameThis could actually have more content clauses at the end, but TS types are limited