@makehq/sdk
    Preparing search index...

    Type Alias DataStructure

    Represents a data structure in Make. Data structures define the structure of data and are widely used by Data stores and other components.

    type DataStructure = {
        id: number;
        name: string;
        spec?: DataStructureField[];
        strict?: boolean;
        teamId: number;
    }
    Index

    Properties

    id: number

    Unique identifier of the data structure

    name: string

    Name of the data structure

    Field specifications defining the structure

    strict?: boolean

    Whether to enforce strict validation of the structure

    teamId: number

    ID of the team that owns the data structure