Backstage
    Preparing search index...

    A Bitbucket project. Projects are used by teams to organize repositories.

    interface Project {
        created_on?: string;
        description?: string;
        has_publicly_visible_repos?: boolean;
        is_private?: boolean;
        key?: string;
        links?: ProjectLinks;
        name?: string;
        owner?: Team;
        type: string;
        updated_on?: string;
        uuid?: string;
        [key: string]: unknown;
    }

    Hierarchy (View Summary)

    Indexable

    • [key: string]: unknown
    Index

    Properties

    created_on?: string
    description?: string
    has_publicly_visible_repos?: boolean

    Indicates whether the project contains publicly visible repositories. Note that private projects cannot contain public repositories.

    is_private?: boolean

    Indicates whether the project is publicly accessible, or whether it is private to the team and consequently only visible to team members. Note that private projects cannot contain public repositories.

    key?: string

    The project's key.

    links?: ProjectLinks
    name?: string

    The name of the project.

    owner?: Team
    type: string
    updated_on?: string
    uuid?: string

    The project's immutable id.