MAP Docs
MAX

Operations

Every operation on MAX.

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

Index

OperationSummary
audit_log_entryAppend a record to the chain with hash chaining and signature.
audit_queryQuery the chain by predicate; supports time-travel and structured filters.
traceability_graphReconstruct the traceability graph for a request or decision.
explainability_requestProduce a human-readable explanation of a recorded decision.
compliance_reportGenerate a compliance report for a period and policy set.
health_checkAudit-chain health: integrity, lag, partition status.

Reference

audit_log_entry

Append a record to the chain with hash chaining and signature.

FieldValue
Capabilitymap.max.audit_log_entry
IdempotentNo — supply Idempotency-Key for safe retries
{
  "event_type": "demo",
  "meta": {
    "note": "hello world"
  }
}

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

audit_query

Query the chain by predicate; supports time-travel and structured filters.

FieldValue
Capabilitymap.max.audit_query
IdempotentYes
{
  "example": true
}

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

traceability_graph

Reconstruct the traceability graph for a request or decision.

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

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

explainability_request

Produce a human-readable explanation of a recorded decision.

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

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

compliance_report

Generate a compliance report for a period and policy set.

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

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

health_check

Audit-chain health: integrity, lag, partition status.

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

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

On this page