Interface JsonFormsProps

interface JsonFormsProps {
    cells?: JsonFormsCellRendererRegistryEntry[];
    config: any;
    enabled?: boolean;
    path?: string;
    renderers?: JsonFormsRendererRegistryEntry[];
    rootSchema: JsonSchema;
    schema?: JsonSchema;
    uischema?: UISchemaElement;
    uischemas?: JsonFormsUISchemaRegistryEntry[];
    visible?: boolean;
}

Hierarchy (view full)

Properties

config: any
enabled?: boolean

Whether the rendered element should be enabled.

path?: string

Optional instance path. Necessary when the actual data path can not be inferred via the UI schema element as it is the case with nested controls.

rootSchema: JsonSchema
schema?: JsonSchema

The JSON schema that describes the data.

uischema?: UISchemaElement

The UI schema to be rendered.

visible?: boolean

Whether the rendered element should be visible.

Generated using TypeDoc