Interface RecordPrimitivePropertyType

interface RecordPrimitivePropertyType {
    list: boolean;
    maxListSize?: number;
    type:
        | "boolean"
        | "json"
        | "float32"
        | "float64"
        | "int32"
        | "int64"
        | "timestamp"
        | "date";
    unit?: RecordUnitReference;
}

Properties

list: boolean
maxListSize?: number
type:
    | "boolean"
    | "json"
    | "float32"
    | "float64"
    | "int32"
    | "int64"
    | "timestamp"
    | "date"