Asana · Schema

GoalRelationshipResponse

CollaborationProductivityProject ManagementProjectsTask ManagementTasksWorkflow

Properties

Name Type Description
gid string
resource_type string
resource_subtype string
supported_goal object
supporting_resource object
contribution_weight number
View JSON Schema on GitHub

JSON Schema

asana-goalrelationshipresponse-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/GoalRelationshipResponse",
  "title": "GoalRelationshipResponse",
  "type": "object",
  "properties": {
    "gid": {
      "type": "string",
      "readOnly": true,
      "example": "12345"
    },
    "resource_type": {
      "type": "string",
      "readOnly": true,
      "example": "goal_relationship"
    },
    "resource_subtype": {
      "type": "string"
    },
    "supported_goal": {
      "type": "object",
      "properties": {
        "gid": {
          "type": "string"
        },
        "resource_type": {
          "type": "string"
        },
        "name": {
          "type": "string"
        }
      }
    },
    "supporting_resource": {
      "type": "object",
      "properties": {
        "gid": {
          "type": "string"
        },
        "resource_type": {
          "type": "string"
        },
        "name": {
          "type": "string"
        }
      }
    },
    "contribution_weight": {
      "type": "number",
      "example": 1
    }
  }
}