@makehq/sdk
    Preparing search index...

    Type Alias DataStore

    Represents a data store in Make. Data stores are databases that allow storing and managing data within Make, making it available across scenarios.

    type DataStore = {
        datastructureId: number | null;
        id: number;
        maxSize: string;
        name: string;
        records: number;
        size: string;
        teamId: number;
    }
    Index

    Properties

    datastructureId: number | null

    ID of the data structure defining the record format, or null if not specified

    id: number

    Unique identifier of the data store

    maxSize: string

    Maximum allowed size of the data store

    name: string

    Name of the data store

    records: number

    Current number of records in the data store

    size: string

    Current size of all records in the data store

    teamId: number

    ID of the team that owns the data store