Couchbase · Schema

AuditInfo

Audit timestamps

AnalyticsApp ServicesBackupCapellaCloudDatabaseDBaaSEventingFull-Text SearchGatewayJSONMobileNoSQLReplicationSQL++SyncVector SearchXDCR

Properties

Name Type Description
createdAt string Creation timestamp
modifiedAt string Last modification timestamp
createdBy string User who created the resource
modifiedBy string User who last modified the resource
version integer Resource version number
View JSON Schema on GitHub

JSON Schema

couchbase-auditinfo-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/AuditInfo",
  "title": "AuditInfo",
  "type": "object",
  "description": "Audit timestamps",
  "properties": {
    "createdAt": {
      "type": "string",
      "format": "date-time",
      "description": "Creation timestamp"
    },
    "modifiedAt": {
      "type": "string",
      "format": "date-time",
      "description": "Last modification timestamp"
    },
    "createdBy": {
      "type": "string",
      "description": "User who created the resource"
    },
    "modifiedBy": {
      "type": "string",
      "description": "User who last modified the resource"
    },
    "version": {
      "type": "integer",
      "description": "Resource version number"
    }
  }
}