{
"$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]"
}
}
}