Asana · Schema

UserCompact

A *user* object represents an account in Asana that can be given access to various workspaces, projects, and tasks.

CollaborationProductivityProject ManagementProjectsTask ManagementTasksWorkflow

Properties

Name Type Description
gid string Globally unique identifier of the resource, as a string.
resource_type string The base type of this resource.
name string *Read-only except when same user as requester*. The user’s name.
View JSON Schema on GitHub

JSON Schema

asana-usercompact-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/UserCompact",
  "title": "UserCompact",
  "description": "A *user* object represents an account in Asana that can be given access to various workspaces, projects, and tasks.",
  "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": {
      "description": "The base type of this resource.",
      "type": "string",
      "readOnly": true,
      "example": "user",
      "x-insert-after": "gid"
    },
    "name": {
      "type": "string",
      "description": "*Read-only except when same user as requester*. The user\u2019s name.",
      "example": "Greg Sanchez"
    }
  }
}