@makehq/sdk
    Preparing search index...

    Type Alias DataStoreRecord

    Represents a record in a Make data store. Each record consists of a unique key and structured data.

    type DataStoreRecord = {
        data: Record<string, JSONValue>;
        key: string;
    }
    Index

    Properties

    Properties

    data: Record<string, JSONValue>

    The record's data as a structured object

    key: string

    Unique identifier of the record within the data store