action asana_get_goal_relationships { label: "Get goal relationships" description: "Returns compact goal relationship records." provider: asana method: GET path: "/goal_relationships" encoding: json input: { type: "object" properties: { resource_subtype: { type: "string" } supported_goal: { type: "string" } } required: ["supported_goal"] additionalProperties: false } output: { type: "object" properties: { data: { type: "array" items: { type: "object" } } } } }