Backstage
    Preparing search index...

    A Bitbucket repository.

    interface Repository {
        created_on?: string;
        description?: string;
        fork_policy?: Models.RepositoryForkPolicyEnum;
        full_name?: string;
        has_issues?: boolean;
        has_wiki?: boolean;
        is_private?: boolean;
        language?: string;
        links?: RepositoryLinks;
        mainbranch?: Branch;
        name?: string;
        owner?: Account;
        parent?: Repository;
        project?: Project;
        scm?: "git";
        size?: number;
        slug?: string;
        type: string;
        updated_on?: string;
        uuid?: string;
        [key: string]: unknown;
    }

    Hierarchy (View Summary)

    Indexable

    • [key: string]: unknown
    Index

    Properties

    created_on?: string
    description?: string

    Controls the rules for forking this repository.

    • allow_forks: unrestricted forking
    • no_public_forks: restrict forking to private forks (forks cannot be made public later)
    • no_forks: deny all forking
    full_name?: string

    The concatenation of the repository owner's username and the slugified name, e.g. "evzijst/interruptingcow". This is the same string used in Bitbucket URLs.

    has_issues?: boolean

    The issue tracker for this repository is enabled. Issue Tracker features are not supported for repositories in workspaces administered through admin.atlassian.com.

    has_wiki?: boolean

    The wiki for this repository is enabled. Wiki features are not supported for repositories in workspaces administered through admin.atlassian.com.

    is_private?: boolean
    language?: string
    mainbranch?: Branch
    name?: string
    owner?: Account
    parent?: Repository
    project?: Project
    scm?: "git"
    size?: number
    slug?: string

    The "sluggified" version of the repository's name. This contains only ASCII characters and can therefore be slightly different than the name

    type: string
    updated_on?: string
    uuid?: string

    The repository's immutable id. This can be used as a substitute for the slug segment in URLs. Doing this guarantees your URLs will survive renaming of the repository by its owner, or even transfer of the repository to a different user.