Asana · Schema

AuditLogEventDetails

Event specific details. The schema will vary depending on the `event_type`.

CollaborationProductivityProject ManagementProjectsTask ManagementTasksWorkflow

Properties

Name Type Description
old_value string
new_value string
group object
View JSON Schema on GitHub

JSON Schema

asana-auditlogeventdetails-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/AuditLogEventDetails",
  "title": "AuditLogEventDetails",
  "description": "Event specific details. The schema will vary depending on the `event_type`.",
  "type": "object",
  "properties": {
    "old_value": {
      "type": "string",
      "nullable": true
    },
    "new_value": {
      "type": "string",
      "nullable": true
    },
    "group": {
      "type": "object",
      "additionalProperties": true
    }
  },
  "additionalProperties": true
}