i2 Notebook SDK
Search results for

    Show/hide table of contents

    Home > @i2analyze/notebook-sdk > data > LogicalType

    data.LogicalType type

    A logical type for the value of a record property.

    Signature:

    type LogicalType = 
        /** A single-line text string. */
        'singleLineString'
        /** A date with no associated time. */
         | 'date'
        /** A time with no associated date. */
         | 'time'
        /** A date-and-time value. */
         | 'dateAndTime'
        /** A true/false value. */
         | 'boolean'
        /** An integer value. */
         | 'integer'
        /** A double-precision (64-bit) floating point value. */
         | 'double'
        /** A decimal value that is stored accurately without rounding. */
         | 'decimal'
        /** A multiple-line text string. */
         | 'multipleLineString'
        /** A value that is selected from a list. */
         | 'selectedFromList'
        /** A value that is suggested from a list. */
         | 'suggestedFromList'
        /** A geospatial value. */
         | 'geospatial';
    

    Introduced: version 1.0

    In this article
    Back to top © N. Harris Computer Corporation