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