Render · Schema

auditLogActor

CloudPlatformDeploymentInfrastructureDevOpsWeb ServicesDatabasesHosting

Properties

Name Type Description
type string The type of actor that performed the action
email string Email address of the actor (if applicable)
id string Unique identifier of the actor (if applicable)
View JSON Schema on GitHub

JSON Schema

render-auditlogactor-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/auditLogActor",
  "title": "auditLogActor",
  "type": "object",
  "required": [
    "type"
  ],
  "properties": {
    "type": {
      "type": "string",
      "description": "The type of actor that performed the action",
      "example": "user",
      "enum": [
        "user",
        "rest_api",
        "system"
      ]
    },
    "email": {
      "type": "string",
      "description": "Email address of the actor (if applicable)",
      "example": "[email protected]"
    },
    "id": {
      "type": "string",
      "description": "Unique identifier of the actor (if applicable)",
      "example": "usr-123456789"
    }
  }
}