Productiv · Schema

AuditEvent

Represents an audit event for activities performed by users on the Productiv platform.

Application PortfolioProvisioningSaaS ManagementSpend ManagementUsage Analytics

Properties

Name Type Description
eventId string The unique identifier of the event.
eventType string The type of audit event.
timestamp string When the event occurred.
userEmail string The email of the user who performed the action.
details object Additional details about the event.
View JSON Schema on GitHub

JSON Schema

audit-event.json Raw ↑
{
  "$id": "audit-event.json",
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "title": "AuditEvent",
  "description": "Represents an audit event for activities performed by users on the Productiv platform.",
  "type": "object",
  "properties": {
    "eventId": {
      "type": "string",
      "description": "The unique identifier of the event."
    },
    "eventType": {
      "type": "string",
      "description": "The type of audit event."
    },
    "timestamp": {
      "type": "string",
      "format": "date-time",
      "description": "When the event occurred."
    },
    "userEmail": {
      "type": "string",
      "format": "email",
      "description": "The email of the user who performed the action."
    },
    "details": {
      "type": "object",
      "description": "Additional details about the event."
    }
  }
}