Asana · Schema

StatusUpdateRequest

CollaborationProductivityProject ManagementProjectsTask ManagementTasksWorkflow
View JSON Schema on GitHub

JSON Schema

asana-statusupdaterequest-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/StatusUpdateRequest",
  "title": "StatusUpdateRequest",
  "allOf": [
    {
      "$ref": "#/components/schemas/StatusUpdateBase"
    },
    {
      "type": "object",
      "required": [
        "parent"
      ],
      "properties": {
        "parent": {
          "allOf": [
            {
              "type": "string",
              "description": "The id of parent to send this status update to. This can be a project, goal or portfolio."
            }
          ]
        }
      }
    }
  ]
}