Asana · Schema

AuditLogEventResource

The primary object that was affected by this event.

CollaborationProductivityProject ManagementProjectsTask ManagementTasksWorkflow

Properties

Name Type Description
resource_type string The type of resource.
resource_subtype string The subtype of resource. Most resources will not have a subtype.
gid string Globally unique identifier of the resource.
name string The name of the resource.
email string The email of the resource, if applicable.
View JSON Schema on GitHub

JSON Schema

asana-auditlogeventresource-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/AuditLogEventResource",
  "title": "AuditLogEventResource",
  "description": "The primary object that was affected by this event.",
  "type": "object",
  "properties": {
    "resource_type": {
      "description": "The type of resource.",
      "type": "string",
      "example": "task"
    },
    "resource_subtype": {
      "description": "The subtype of resource. Most resources will not have a subtype.",
      "type": "string",
      "example": "milestone"
    },
    "gid": {
      "description": "Globally unique identifier of the resource.",
      "type": "string",
      "example": "1111"
    },
    "name": {
      "description": "The name of the resource.",
      "type": "string",
      "nullable": true,
      "example": "Example Task"
    },
    "email": {
      "description": "The email of the resource, if applicable.",
      "type": "string"
    }
  }
}