Sanity Library Reference Docs
    Preparing search index...

    Interface ApplicationBase

    The always-present fields of an org-owned application returned by the Applications API (/applications), before any ApplicationInclude.

    interface ApplicationBase {
        createdAt: string;
        externalUrl: string | null;
        icon: string | null;
        id: string;
        isSingleton: boolean;
        name: string;
        organizationId: string;
        reference: string;
        slug: string | null;
        title: string;
        type: "studio" | "coreApp";
        updatedAt: string;
        visibility: "default" | "unlisted" | "disabled";
    }
    Index

    Properties

    createdAt: string
    externalUrl: string | null
    icon: string | null
    id: string
    isSingleton: boolean
    name: string

    Stable, immutable identity, distinct from the mutable slug address.

    organizationId: string
    reference: string

    Qualified, globally-unique handle: sanity/<name> for singletons, <organizationId>/<name> otherwise.

    slug: string | null
    title: string
    type: "studio" | "coreApp"
    updatedAt: string
    visibility: "default" | "unlisted" | "disabled"