Asana · Schema

ModifyDependentsRequest

A set of dependent tasks.

CollaborationProductivityProject ManagementProjectsTask ManagementTasksWorkflow

Properties

Name Type Description
dependents array An array of task gids that are dependents of the given task.
View JSON Schema on GitHub

JSON Schema

asana-modifydependentsrequest-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/ModifyDependentsRequest",
  "title": "ModifyDependentsRequest",
  "description": "A set of dependent tasks.",
  "type": "object",
  "properties": {
    "dependents": {
      "description": "An array of task gids that are dependents of the given task.",
      "type": "array",
      "items": {
        "type": "string"
      }
    }
  },
  "example": {
    "dependents": [
      "133713",
      "184253"
    ]
  }
}