Asana · Schema

GoalRequest

CollaborationProductivityProject ManagementProjectsTask ManagementTasksWorkflow

Properties

Name Type Description
name string
notes string
html_notes string
due_on string
start_on string
liked boolean
team string
workspace string
time_period string
owner string
followers array
View JSON Schema on GitHub

JSON Schema

asana-goalrequest-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/GoalRequest",
  "title": "GoalRequest",
  "type": "object",
  "properties": {
    "name": {
      "type": "string",
      "example": "Grow web traffic by 30%"
    },
    "notes": {
      "type": "string"
    },
    "html_notes": {
      "type": "string"
    },
    "due_on": {
      "type": "string",
      "format": "date",
      "nullable": true
    },
    "start_on": {
      "type": "string",
      "format": "date",
      "nullable": true
    },
    "liked": {
      "type": "boolean"
    },
    "team": {
      "type": "string"
    },
    "workspace": {
      "type": "string"
    },
    "time_period": {
      "type": "string"
    },
    "owner": {
      "type": "string"
    },
    "followers": {
      "type": "array",
      "items": {
        "type": "string"
      }
    }
  }
}