Asana · Schema

TagRequest

CollaborationProductivityProject ManagementProjectsTask ManagementTasksWorkflow
View JSON Schema on GitHub

JSON Schema

asana-tagrequest-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/TagRequest",
  "title": "TagRequest",
  "allOf": [
    {
      "$ref": "#/components/schemas/TagBase"
    },
    {
      "type": "object",
      "properties": {
        "followers": {
          "type": "array",
          "description": "An array of strings identifying users. These can either be the string \"me\", an email, or the gid of a user.",
          "items": {
            "type": "string"
          },
          "example": [
            "12345",
            "42563"
          ]
        },
        "workspace": {
          "type": "string",
          "x-env-variable": true,
          "description": "Gid of an object.",
          "example": "12345"
        }
      }
    }
  ]
}