A project brief object represents a rich text document that describes a project.
ProjectBriefCompact
Property | Type | Description |
---|---|---|
gid | string | Globally unique identifier of the resource, as a string. |
resource_type | string | The base type of this resource. |
Example JSON for ProjectBriefCompact
:
{
"gid": "12345",
"resource_type": "project_brief"
}
ProjectBrief
Property | Type | Description |
---|---|---|
gid | string | Globally unique identifier of the resource, as a string. |
resource_type | string | The base type of this resource. |
title | string | The title of the project brief. |
html_text | string | HTML formatted text for the project brief. |
text | string | Opt In. The plain text of the project brief. |
permalink_url | string | A url that points directly to the object within Asana. |
project | object | The project with which this project brief is associated. |
project.gid | string | Globally unique identifier of the resource, as a string. |
project.resource_type | string | The base type of this resource. |
project.name | string | Name of the project. This is generally a short sentence fragment that fits on a line in the UI for maximum readability. However, it can be longer. |
Example JSON for ProjectBrief
:
{
"gid": "12345",
"resource_type": "project_brief",
"title": "Stuff to buy — Project Brief",
"html_text": "<body>This is a <strong>project brief</strong>.</body>",
"text": "This is a project brief.",
"permalink_url": "https://app.asana.com/0/11111111/22222222",
"project": {
"gid": "12345",
"resource_type": "project",
"name": "Stuff to buy"
}
}