Asana · Schema

StatusUpdateCompact

A *status update* is an update on the progress of a particular project, portfolio, or goal, and is sent out to all of its parent's followers when created. These updates include both text describing the update and a `status_type` intended to represent the overall state of the project.

CollaborationProductivityProject ManagementProjectsTask ManagementTasksWorkflow

Properties

Name 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 status update.
resource_subtype string The subtype of this resource. Different subtypes retain many of the same fields and behavior, but may render differently in Asana or represent resources with different semantic meaning. The `resource_
View JSON Schema on GitHub

JSON Schema

asana-statusupdatecompact-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/StatusUpdateCompact",
  "title": "StatusUpdateCompact",
  "description": "A *status update* is an update on the progress of a particular project, portfolio, or goal, and is sent out to all of its parent's followers when created. These updates include both text describing the update and a `status_type` intended to represent the overall state of the project.",
  "type": "object",
  "properties": {
    "gid": {
      "description": "Globally unique identifier of the resource, as a string.",
      "type": "string",
      "readOnly": true,
      "example": "12345",
      "x-insert-after": false
    },
    "resource_type": {
      "description": "The base type of this resource.",
      "type": "string",
      "readOnly": true,
      "example": "status_update",
      "x-insert-after": "gid"
    },
    "title": {
      "description": "The title of the status update.",
      "type": "string",
      "example": "Status Update - Jun 15"
    },
    "resource_subtype": {
      "type": "string",
      "description": "The subtype of this resource. Different subtypes retain many of the same fields and behavior, but may render differently in Asana or represent resources with different semantic meaning.\nThe `resource_subtype`s for `status` objects represent the type of their parent.",
      "enum": [
        "project_status_update",
        "portfolio_status_update",
        "goal_status_update"
      ],
      "example": "project_status_update",
      "readOnly": true
    }
  }
}