Asana · Schema

TagCompact

A *tag* is a label that can be attached to any task in Asana. It exists in a single workspace or organization.

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 Name of the tag. This is generally a short sentence fragment that fits on a line in the UI for maximum readability. However, it can be longer.
View JSON Schema on GitHub

JSON Schema

asana-tagcompact-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/TagCompact",
  "title": "TagCompact",
  "description": "A *tag* is a label that can be attached to any task in Asana. It exists in a single workspace or organization.",
  "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": "tag",
      "x-insert-after": "gid"
    },
    "name": {
      "description": "Name of the tag. This is generally a short sentence fragment that fits on a line in the UI for maximum readability. However, it can be longer.",
      "type": "string",
      "example": "Stuff to buy"
    }
  }
}