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
| Operation | Summary |
|---|---|
audit_log_entry | Append a record to the chain with hash chaining and signature. |
audit_query | Query the chain by predicate; supports time-travel and structured filters. |
traceability_graph | Reconstruct the traceability graph for a request or decision. |
explainability_request | Produce a human-readable explanation of a recorded decision. |
compliance_report | Generate a compliance report for a period and policy set. |
health_check | Audit-chain health: integrity, lag, partition status. |
Reference
audit_log_entry
Append a record to the chain with hash chaining and signature.
| Field | Value |
|---|---|
| Capability | map.max.audit_log_entry |
| Idempotent | No — 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.
| Field | Value |
|---|---|
| Capability | map.max.audit_query |
| Idempotent | Yes |
{
"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.
| Field | Value |
|---|---|
| Capability | map.max.traceability_graph |
| Idempotent | No — 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.
| Field | Value |
|---|---|
| Capability | map.max.explainability_request |
| Idempotent | No — 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.
| Field | Value |
|---|---|
| Capability | map.max.compliance_report |
| Idempotent | No — 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.
| Field | Value |
|---|---|
| Capability | map.max.health_check |
| Idempotent | No — supply Idempotency-Key for safe retries |
{
"example": true
}Dispatched through the standard pipeline; see Engine pipeline for the 8 stages.