Asana · Schema

RequestedRoleRequest

CollaborationProductivityProject ManagementProjectsTask ManagementTasksWorkflow

Properties

Name Type Description
gid string Globally unique identifier of the template role in the project template.
value string The user id that should be assigned to the template role.
View JSON Schema on GitHub

JSON Schema

asana-requestedrolerequest-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/RequestedRoleRequest",
  "title": "RequestedRoleRequest",
  "type": "object",
  "properties": {
    "gid": {
      "description": "Globally unique identifier of the template role in the project template.",
      "type": "string",
      "example": "1"
    },
    "value": {
      "description": "The user id that should be assigned to the template role.",
      "type": "string",
      "example": "123"
    }
  }
}