Asana · Schema

AuditLogEventActor

The entity that triggered the event. Will typically be a user.

CollaborationProductivityProject ManagementProjectsTask ManagementTasksWorkflow

Properties

Name Type Description
actor_type string The type of actor. Can be one of `user`, `asana`, `asana_support`, `anonymous`, or `external_administrator`.
gid string Globally unique identifier of the actor, if it is a user.
name string The name of the actor, if it is a user.
email string The email of the actor, if it is a user.
View JSON Schema on GitHub

JSON Schema

asana-auditlogeventactor-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/AuditLogEventActor",
  "title": "AuditLogEventActor",
  "description": "The entity that triggered the event. Will typically be a user.",
  "type": "object",
  "properties": {
    "actor_type": {
      "description": "The type of actor.\nCan be one of `user`, `asana`, `asana_support`, `anonymous`, or `external_administrator`.",
      "type": "string",
      "enum": [
        "user",
        "asana",
        "asana_support",
        "anonymous",
        "external_administrator"
      ],
      "example": "user"
    },
    "gid": {
      "description": "Globally unique identifier of the actor, if it is a user.",
      "type": "string",
      "example": "1111"
    },
    "name": {
      "description": "The name of the actor, if it is a user.",
      "type": "string",
      "example": "Greg Sanchez"
    },
    "email": {
      "description": "The email of the actor, if it is a user.",
      "type": "string",
      "example": "[email protected]"
    }
  }
}