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

Function errorAt

packages/core/src/store/jsonFormsCore.ts:34–35  ·  view source on GitHub ↗
(instancePath: string, schema: JsonSchema)

Source from the content-addressed store, hash-verified

32 };
33
34export const errorAt = (instancePath: string, schema: JsonSchema) =>
35 getErrorsAt(instancePath, schema, (path) => path === instancePath);
36export const subErrorsAt = (instancePath: string, schema: JsonSchema) =>
37 getErrorsAt(instancePath, schema, (path) =>
38 path.startsWith(instancePath + '.')

Callers 3

core.test.tsFile · 0.90
ctxToNonEmptyCellPropsFunction · 0.90
getErrorAtFunction · 0.85

Calls 1

getErrorsAtFunction · 0.85

Tested by

no test coverage detected

Used in the wild real call sites across dependent graphs

searching dependent graphs…