getScope
getScope<
T>(path):string
Build a JsonForms scope pointer from a typed dot-path. Equivalent to
the JsonPointer fragment-encoding rule: turns 'properties.label' into
'#/properties/label'. Generic over the schema type so TypeScript
autocompletes valid paths.
Type Parameters
Section titled “Type Parameters”T extends object
Parameters
Section titled “Parameters”"" | PropertyPath<T>
Returns
Section titled “Returns”string
Example
Section titled “Example”getScope<typeof mySchema>('properties.label');// => '#/properties/label'