Sanity Library Reference Docs
    Preparing search index...

    Interface InstallationBase

    The always-present fields of an active singleton installation returned by the Installations API (/installations), before any InstallationInclude.

    interface InstallationBase {
        application: {
            name: string;
            reference: string;
            slug: string | null;
            title: string;
        };
        applicationId: string;
        createdAt: string;
        id: string;
        installedBy: string
        | null;
        organizationId: string;
        updatedAt: string;
    }
    Index

    Properties

    application: {
        name: string;
        reference: string;
        slug: string | null;
        title: string;
    }

    Type declaration

    • name: string

      Stable, immutable identity of the installed singleton, distinct from slug.

    • reference: string

      Qualified, globally-unique handle of the installed singleton (e.g. sanity/<name>).

    • slug: string | null
    • title: string
    applicationId: string
    createdAt: string
    id: string
    installedBy: string | null
    organizationId: string
    updatedAt: string