For each Skip API Analysis result, it is possible for Skip to provide a set of tableDataColumns that describe the data that is being returned in this shape.

interface SkipColumnInfo {
    description: string;
    displayName: string;
    fieldName: string;
    simpleDataType: "string" | "number" | "boolean" | "date";
}

Properties

description: string
displayName: string
fieldName: string
simpleDataType: "string" | "number" | "boolean" | "date"