Break the journey before production does.

Execute every published Mappls application lifecycle from creation to a reviewed operating outcome. Prove idempotency, optimistic concurrency, invalid-state rejection, immutable events, and unknown-outcome recovery without credentials, provider calls, or durable writes.

18complete lifecycles

Every published stateful or hybrid journey.

90deterministic paths

Five hostile and success scenarios per journey.

140guarded transitions

Commands, versions, identities, actors, and facts.

6client languages

One synchronized fixture contract.

Run one complete fixture

Only two catalog identities are accepted. No credential, resource ID, location, payload, URL, or provider input exists.

Complete journey

Coordinated incident response

Commit the shortest reviewed success path to the journey-specific operating target.

fixture only

The report proves deterministic application-side state-machine behavior only. It is not Mappls entitlement, provider resource, webhook, performance, regional, or production evidence.

Aggregate
incident
Start
reported
Result
reviewed
Version
7

Every attempted command remains visible.

Accepted commands advance exactly once. Replays, conflicts, invalid transitions, and reconciliation are evidence—not hidden control flow.

01
acceptedreport_incident
transition_committed
new aggregatereportedv0 → v1

Aggregate, event, audit, and outbox intent commit as one application-owned unit.

Immutable application eventincident.reportedevt_fixture_emergency-incident-response_01
02
acceptedresolve_location
transition_committed
reportedlocatedv1 → v2

Aggregate, event, audit, and outbox intent commit as one application-owned unit.

Immutable application eventincident.locatedevt_fixture_emergency-incident-response_02
03
accepteddispatch
transition_committed
locateddispatchedv2 → v3

Aggregate, event, audit, and outbox intent commit as one application-owned unit.

Immutable application eventincident.dispatchedevt_fixture_emergency-incident-response_03
04
acceptedaccept_dispatch
transition_committed
dispatcheden_routev3 → v4

Aggregate, event, audit, and outbox intent commit as one application-owned unit.

Immutable application eventdispatch.acceptedevt_fixture_emergency-incident-response_04
05
acceptedconfirm_arrival
transition_committed
en_routeon_scenev4 → v5

Aggregate, event, audit, and outbox intent commit as one application-owned unit.

Immutable application eventincident.arrivedevt_fixture_emergency-incident-response_05
06
acceptedresolve
transition_committed
on_sceneresolvedv5 → v6

Aggregate, event, audit, and outbox intent commit as one application-owned unit.

Immutable application eventincident.resolvedevt_fixture_emergency-incident-response_06
07
acceptedreview
transition_committed
resolvedreviewedv6 → v7

Aggregate, event, audit, and outbox intent commit as one application-owned unit.

Immutable application eventincident.reviewedevt_fixture_emergency-incident-response_07

The report explains why it passed.

Only catalog identities acceptedbounded-input
pass
No Mappls provider request madeno-provider-call
pass
Accepted transitions increment exactly oncemonotonic-version
pass
Accepted transitions emit unique immutable eventsunique-events
pass
Rejected commands emit no eventrejection-safe
pass
Replays do not increment versionreplay-safe
pass
Journey reaches reviewedtarget
pass

What the simulator will never blur.

  1. 01

    This is an application-owned deterministic fixture. It makes no Mappls provider request and claims no provider webhook payload.

  2. 02

    Idempotency is checked before optimistic concurrency so an exact retry can return the first committed result.

  3. 03

    A reused idempotency key with different intent would be a conflict; applications must persist a request fingerprint with the result.

  4. 04

    Rejected commands do not change the aggregate version and do not emit an event.

  5. 05

    Accepted commands commit the aggregate snapshot, immutable event, audit evidence, and transactional outbox intent atomically.

  6. 06

    A timeout is an unknown outcome. Reconcile by aggregate and command identity before replaying the same key.

Automate this exact evidence path.

These examples call the credential-free simulator—not a Mappls provider endpoint. Production commands must use your trusted application boundary and actual reviewed provider contract.

cURLcurl
curl --request POST 'https://developer.mappls.com/api/journey-simulator' \
+  --header 'content-type: application/json' \
+  --data '{"journey":"emergency-incident-response","scenario":"complete-journey"}'
JavaScriptjavascript
const response = await fetch("https://developer.mappls.com/api/journey-simulator", {
  method: "POST",
  headers: { "content-type": "application/json" },
  body: JSON.stringify({"journey":"emergency-incident-response","scenario":"complete-journey"}),
});
if (!response.ok) throw new Error(`Simulation failed: ${response.status}`);
const report = await response.json();
console.log(report.finalSnapshot, report.checks);
Pythonpython
import requests

response = requests.post(
    "https://developer.mappls.com/api/journey-simulator",
    json={"journey":"emergency-incident-response","scenario":"complete-journey"},
    timeout=10,
)
response.raise_for_status()
report = response.json()
print(report["finalSnapshot"], report["checks"])
Javajava
var request = HttpRequest.newBuilder(URI.create("https://developer.mappls.com/api/journey-simulator"))
    .header("content-type", "application/json")
    .POST(HttpRequest.BodyPublishers.ofString("{\"journey\":\"emergency-incident-response\",\"scenario\":\"complete-journey\"}"))
    .build();
var response = HttpClient.newHttpClient().send(request, HttpResponse.BodyHandlers.ofString());
if (response.statusCode() != 200) throw new IllegalStateException("Simulation failed");
Gogo
payload := strings.NewReader(`{"journey":"emergency-incident-response","scenario":"complete-journey"}`)
request, err := http.NewRequest(http.MethodPost, "https://developer.mappls.com/api/journey-simulator", payload)
if err != nil { return err }
request.Header.Set("content-type", "application/json")
response, err := (&http.Client{Timeout: 10 * time.Second}).Do(request)
if err != nil { return err }
defer response.Body.Close()
C#csharp
using var client = new HttpClient { Timeout = TimeSpan.FromSeconds(10) };
using var content = new StringContent(@"{""journey"":""emergency-incident-response"",""scenario"":""complete-journey""}", Encoding.UTF8, "application/json");
using var response = await client.PostAsync("https://developer.mappls.com/api/journey-simulator", content);
response.EnsureSuccessStatusCode();
var report = await response.Content.ReadAsStringAsync();