Asana · Schema

MemberCompact

A *member* object represents either a team or user.

CollaborationProductivityProject ManagementProjectsTask ManagementTasksWorkflow

Properties

Name Type Description
gid string Globally unique identifier of the resource, as a string.
resource_type string The type of the member (team or user)
name string The name of the member
View JSON Schema on GitHub

JSON Schema

asana-membercompact-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/MemberCompact",
  "title": "MemberCompact",
  "description": "A *member* object represents either a team or user.",
  "type": "object",
  "properties": {
    "gid": {
      "description": "Globally unique identifier of the resource, as a string.",
      "type": "string",
      "readOnly": true,
      "example": "12345",
      "x-insert-after": false
    },
    "resource_type": {
      "type": "string",
      "description": "The type of the member (team or user)",
      "example": "user"
    },
    "name": {
      "type": "string",
      "description": "The name of the member",
      "example": "Greg Sanchez"
    }
  }
}