Details about a project.

interface Project {
    archived?: boolean;
    archivedBy?: Version3.Version3Models.User;
    archivedDate?: string;
    assigneeType?: string;
    avatarUrls?: Version3.Version3Models.AvatarUrls;
    components?: Version3.Version3Models.ProjectComponent[];
    deleted?: boolean;
    deletedBy?: Version3.Version3Models.User;
    deletedDate?: string;
    description?: string;
    email?: string;
    expand?: string | string[] | ("description" | "issueTypes" | "lead" | "projectKeys" | "issueTypeHierarchy")[];
    favourite?: boolean;
    id: string;
    insight?: Version3.Version3Models.ProjectInsight;
    isPrivate?: boolean;
    issueTypeHierarchy?: Version3.Version3Models.Hierarchy;
    issueTypes?: Version3.Version3Models.IssueTypeDetails[];
    key: string;
    landingPageInfo?: Version3.Version3Models.ProjectLandingPageInfo;
    lead: Version3.Version3Models.User;
    name: string;
    permissions?: Version3.Version3Models.ProjectPermissions;
    projectCategory?: Version3.Version3Models.ProjectCategory;
    projectTypeKey?: string;
    properties?: {};
    retentionTillDate?: string;
    roles?: {};
    self?: string;
    simplified?: boolean;
    style?: string;
    url?: string;
    uuid?: string;
    versions?: Version3.Version3Models.Version[];
}

Properties

archived?: boolean

Whether the project is archived.

archivedDate?: string

The date when the project was archived.

assigneeType?: string

The default assignee when creating issues for this project.

List of the components contained in the project.

deleted?: boolean

Whether the project is marked as deleted.

deletedDate?: string

The date when the project was marked as deleted.

description?: string

A brief description of the project.

email?: string

An email address associated with the project.

expand?: string | string[] | ("description" | "issueTypes" | "lead" | "projectKeys" | "issueTypeHierarchy")[]

Expand options that include additional project details in the response.

favourite?: boolean

Whether the project is selected as a favorite.

id: string

The ID of the project.

isPrivate?: boolean

Whether the project is private.

issueTypeHierarchy?: Version3.Version3Models.Hierarchy

List of the issue types available in the project.

key: string

The key of the project.

name: string

The name of the project.

projectTypeKey?: string

The project type of the project.

properties?: {}

Map of project properties

Type declaration

    retentionTillDate?: string

    The date when the project is deleted permanently.

    roles?: {}

    The name and self URL for each role defined in the project. For more information, see Create project role.

    Type declaration

      self?: string

      The URL of the project details.

      simplified?: boolean

      Whether the project is simplified.

      style?: string

      The type of the project.

      url?: string

      A link to information about this project, such as project documentation.

      uuid?: string

      Unique ID for next-gen projects.

      The versions defined in the project. For more information, see Create version.