SpaceFieldDto: {
    id: string;
    isActive: boolean;
    isDefault: boolean;
    key: string;
    label: string;
    options: string[] | null;
    order: number;
    required: boolean;
    type:
        | "SHORT_TEXT"
        | "LONG_TEXT"
        | "NUMBER"
        | "DATE"
        | "SELECT";
}