Asana · Schema

ModifyDependenciesRequest

CollaborationProductivityProject ManagementProjectsTask ManagementTasksWorkflow

Properties

Name Type Description
dependencies array An array of task gids that a task depends on.
View JSON Schema on GitHub

JSON Schema

asana-modifydependenciesrequest-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/ModifyDependenciesRequest",
  "title": "ModifyDependenciesRequest",
  "type": "object",
  "properties": {
    "dependencies": {
      "description": "An array of task gids that a task depends on.",
      "type": "array",
      "items": {
        "type": "string"
      }
    }
  },
  "example": {
    "dependencies": [
      "133713",
      "184253"
    ]
  }
}