interface GenerateDefaultViewUISchemaOptions {
    cardPresentation?: CardPresentation;
    layoutType?: string;
    prefix?: string;
    rootSchema?: JSONSchema7;
    scopeOverride?: Record<
        string,
        Partial<{ label?: string; options?: Record<string, unknown> }>,
    >;
    skipScope?: string[];
}

Properties

cardPresentation?: CardPresentation

Merged into generated CardLayout options when view size is card.

layoutType?: string
prefix?: string
rootSchema?: JSONSchema7
scopeOverride?: Record<
    string,
    Partial<{ label?: string; options?: Record<string, unknown> }>,
>
skipScope?: string[]