Visualizes real-time worker movement across the North Sea offshore logistics chain: from onshore base to transit vessel, offshore SOV, substation platform, and turbine tower.
Click any day cell below to toggle duty shifts, or select a pre-configured operational rotation scenario.
In an offshore emergency or drill, OnePass takes an immutable snapshot of the active Persons On Board (PoB) and reconciles muster check-ins without creating false man-overboard alerts.
Cryptographically signed under eddsa-jcs-2022 with RFC 8785 JSON Canonicalization. Verifiable offline with zero network calls.
did:key:z6MkhaXgBZD...
When offshore satellite connectivity is interrupted, field mutations queue locally with monotonic sequence numbers (#seq). When connection resumes, they replay in strict FIFO order without conflicts.
Directly interact with live edge nodes deployed at https://onepass-core.miwaniza.workers.dev or copy ready-to-run client SDK code snippets.
import { OnePassClient } from "@oneboardingpass/sdk";
const client = new OnePassClient({
baseUrl: "https://onepass-core.miwaniza.workers.dev",
apiKey: "op_live_key_9981",
tenantId: "8ed62a6f-8081-b1e5-db4f-fd78d3c6b65f"
});
// 1. Resolve universal digital boarding pass token
const resolved = await client.resolveToken("ref_live_lars_nielsen_01");
console.log("Verdict:", resolved.verdict);
// 2. Fetch real-time Persons On Board (PoB)
const pob = await client.getPersonsOnBoard("hornsea-two-substation");
console.log(`Current PoB: ${pob.count} workers`);
Click "Query JWKS Keys" above to send a real HTTP request to the live Workers cluster.