Microsoft Graph · Schema
resourceAccessEvent
Azure ADCollaborationContactsDocumentsEmailGraphIdentityMicrosoftOffice 365PresentationsProductivitySpreadsheetsT1Tasks
Properties
| Name | Type | Description |
|---|---|---|
| accessDateTime | string | The time of the access event. |
| accountId | string | The identifier of the user account. |
| ipAddress | string | IP address of the resource. |
| resourceIdentifier | string | The protocol and host name pairs describing the connection. |
| @odata.type | string |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "#/components/schemas/microsoft.graph.security.resourceAccessEvent",
"title": "resourceAccessEvent",
"required": [
"@odata.type"
],
"type": "object",
"properties": {
"accessDateTime": {
"pattern": "^[0-9]{4,}-(0[1-9]|1[012])-(0[1-9]|[12][0-9]|3[01])T([01][0-9]|2[0-3]):[0-5][0-9]:[0-5][0-9]([.][0-9]{1,12})?(Z|[+-][0-9][0-9]:[0-9][0-9])$",
"type": "string",
"description": "The time of the access event.",
"format": "date-time",
"nullable": true
},
"accountId": {
"type": "string",
"description": "The identifier of the user account.",
"nullable": true
},
"ipAddress": {
"type": "string",
"description": "IP address of the resource.",
"nullable": true
},
"resourceIdentifier": {
"type": "string",
"description": "The protocol and host name pairs describing the connection.",
"nullable": true
},
"@odata.type": {
"type": "string"
}
}
}