Type Alias TableProfile

Profile metadata for a single table/dataset.

type TableProfile = {
    fieldProfiles: FieldProfile[];
    name: string;
    numberOfRows: number;
    sizeInBytes?: number;
}
Index

Properties

fieldProfiles: FieldProfile[]
name: string
numberOfRows: number
sizeInBytes?: number