Asana · Schema

SectionCompact

A *section* is a subdivision of a project that groups tasks together. It can either be a header above a list of tasks in a list view or a column in a board view of a 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.
name string The name of the section (i.e. the text displayed as the section header).
View JSON Schema on GitHub

JSON Schema

asana-sectioncompact-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/SectionCompact",
  "title": "SectionCompact",
  "description": "A *section* is a subdivision of a project that groups tasks together. It can either be a header above a list of tasks in a list view or a column in a board view of a 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": "section",
      "x-insert-after": "gid"
    },
    "name": {
      "description": "The name of the section (i.e. the text displayed as the section header).",
      "type": "string",
      "example": "Next Actions"
    }
  }
}