MAP Docs
MAME

Operations

Every operation on MAME.

The full operation table for MAME. Each entry is dispatched through MapEngine::handle_request and matched on operation inside the protocols/mame-lib crate.

Index

OperationSummary
editEdit a memory cell with full provenance; old value preserved as tombstone.
redactRedact a memory under policy authority; auditable tombstone, never silence.
migrateSchema migration with versioned views; historical reads continue under old schema.

Reference

edit

Edit a memory cell with full provenance; old value preserved as tombstone.

FieldValue
Capabilitymap.mame.edit
IdempotentNo — supply Idempotency-Key for safe retries
{
  "example": true
}

Dispatched through the standard pipeline; see Engine pipeline for the 8 stages.

redact

Redact a memory under policy authority; auditable tombstone, never silence.

FieldValue
Capabilitymap.mame.redact
IdempotentNo — supply Idempotency-Key for safe retries
{
  "example": true
}

Dispatched through the standard pipeline; see Engine pipeline for the 8 stages.

migrate

Schema migration with versioned views; historical reads continue under old schema.

FieldValue
Capabilitymap.mame.migrate
IdempotentNo — supply Idempotency-Key for safe retries
{
  "example": true
}

Dispatched through the standard pipeline; see Engine pipeline for the 8 stages.

On this page