ACID · Schema

AcidTransaction

Represents an ACID database transaction with its properties, status, and isolation level.

ACIDDatabaseTransactionsAtomicityConsistencyIsolationDurabilityDistributed Systems

Properties

Name Type Description
transactionId string Unique identifier for the transaction
status string Current status of the transaction
isolationLevel string SQL transaction isolation level
startTime string Timestamp when the transaction began
endTime string Timestamp when the transaction was committed or rolled back
durationMs integer Transaction duration in milliseconds
operations array List of database operations within this transaction
rollbackReason string Reason for rollback if the transaction was not committed
savepoints array Named savepoints defined within this transaction
View JSON Schema on GitHub