JSON Forms ControlElement.options.detailArrayInline — presentation hints for arrays rendered by compact inline-object layouts (typically ArrayInlineObjectRenderer).

interface DetailArrayInlineControlOptions {
    compactItems?: boolean;
    hidePropertyLabels?: boolean;
    itemIncludeProperties?: string[];
    itemLayout?: "column" | "row";
}

Properties

compactItems?: boolean

Omit per-item borders / extra spacing

hidePropertyLabels?: boolean

Use empty JsonForms labels on rendered item leaf controls

itemIncludeProperties?: string[]

If set, omit all other JSON properties on each item schema root when generating item UI

itemLayout?: "column" | "row"

Arrange items horizontally (row) like chips, or vertically (column).