Type Alias JsonBodyInputSchema

JsonBodyInputSchema: {
    arrayField?: boolean;
    defaultValue?: string | number | boolean;
    headerField?: boolean;
    helper?: string;
    hyperlink?: {
        showAsGenericView?: boolean;
        url: string;
    };
    key: string;
    label: string;
    options?: {
        label: string;
        value: string | number | boolean;
    }[];
    required?: boolean;
    type: string;
}