MCPcopy Create free account
hub / github.com/eclipsesource/jsonforms / getPropPath

Function getPropPath

packages/core/src/util/path.ts:105–110  ·  view source on GitHub ↗
(path: string)

Source from the content-addressed store, hash-verified

103 * @return the uiSchema properties path (i.e. /properties/articles/properties/comment/properties/author)
104 */
105export const getPropPath = (path: string): string => {
106 return `/properties/${path
107 .split('.')
108 .map((p) => encode(p))
109 .join('/properties/')}`;
110};

Callers 2

computeChildLabelFunction · 0.90
findUiControlFunction · 0.90

Calls 1

encodeFunction · 0.85

Tested by

no test coverage detected

Used in the wild real call sites across dependent graphs

searching dependent graphs…