vira - v31.18.2
    Preparing search index...

    Variable ViraJsonFormConst

    ViraJsonForm: DeclarativeElementDefinition<
        "vira-json-form",
        { value: JsonValue } & PartialWithUndefined<
            { isDisabled: boolean; schema: Readonly<JSONSchema> },
        >,
        {
            pendingArrayValues: Readonly<Record<string, JsonValue>>;
            pendingKeys: Readonly<Record<string, string>>;
            pendingTypes: Readonly<Record<string, ViraJsonType>>;
            rawDraft: string | undefined;
            rawError: string | undefined;
            showRaw: boolean;
        },
        { valueChange: DefineEvent<JsonValue> },
        "vira-json-form-",
        "vira-json-form-",
        readonly [],
        readonly [],
    > = ...

    An editor for arbitrary JSON values, optionally constrained by a standard JSON Schema (ViraJsonSchema).