OINO TS
    Preparing search index...

    Type Alias OINODataFieldSchema

    Serialized schema of a data field without any datasource reference. Used for schema (table/column) requests where fields need to be transferred as plain JSON.

    type OINODataFieldSchema = {
        fieldParams: OINODataFieldParams;
        maxLength?: number;
        name: string;
        type: string;
    }
    Index

    Properties

    fieldParams: OINODataFieldParams

    Parameters for the field

    maxLength?: number

    Maximum length of the field or undefined if not applicable

    name: string

    Name of the field

    type: string

    Internal type of the field (string, boolean, number, blob, datetime)