Marker Stored-Data Byte Layout

by Nick Clark | Published April 25, 2026 | PDF

The credentialed marker is the elementary unit of the spatial mesh: a tamper-evident, portable, canonically-encoded byte sequence that a vehicle, robot, or handheld reader can ingest at operational speed and verify against a published governance chain. This disclosure (Provisional 64/049,409) specifies the byte-level layout that makes that ingestion deterministic across vendors, jurisdictions, and reader generations: a fixed-position header, a governance-class field, a lineage segment, a payload segment, and a cryptographic signature segment, separated by a structural row delimiter that supports both parallel and sequential parsing patterns. The choice of byte-level rather than schema-level disclosure is deliberate. Schema-level claims invite re-skinning by accused implementations that change field labels while preserving operational behavior; byte-level offsets, by contrast, produce a binary infringement test — the bytes at offsets seven through fourteen either decode to a governance-class tuple or they do not. That property makes the byte layout the load-bearing structure of the entire spatial-mesh credential program, the pivot around which receiver design, authority infrastructure, and audit reconstruction all rotate.


Mechanism

The marker stored-data byte layout occupies a fixed allocation — typically 64 to 128 bytes for passive RFID-class markers, expanding to several hundred bytes for higher-capacity surfaces such as printed glyphs, NFC tags with extended user memory, or digitally-watermarked roadway studs. The layout is partitioned into five canonical regions in fixed sequence: header, governance class, lineage, payload, and signature. A row delimiter terminates the payload segment and prefaces the signature segment, providing a structural boundary that delimits the signed region from the signature itself. The delimiter is not merely cosmetic. It establishes the canonical hash boundary over which the cryptographic signature computes, so that a reader concatenating header through payload obtains a byte range identical to that which the issuing authority signed. Without an explicit delimiter at a fixed position, an accused implementation could plausibly extend the payload by one byte and produce a signature that still verifies, eroding the tamper-evidence guarantee. The delimiter forecloses that ambiguity.

The header region (typically four to eight bytes) carries a magic number identifying the marker as a credentialed marker conforming to the disclosed layout, a layout-version byte permitting the format to evolve while preserving backward compatibility, and a length indicator that allows readers to allocate parsing buffers correctly even when the marker surface is read partially or out of order. Because the header is at fixed offset zero, every reader — regardless of vendor — locates it identically. The magic number doubles as a discriminator against accidental ingestion of unrelated tag formats; a vehicle reader that encounters an EPC Gen2 product tag rather than a credentialed marker recognizes the mismatch in the first four bytes and aborts parsing without expending verification budget. The layout-version byte enables phased rollout of post-quantum signature schemes, extended lineage formats, and additional governance tiers without invalidating fielded readers; readers ignore versions higher than they implement and fall back gracefully.

The governance class region encodes the credentialing authority's classification of the marker: jurisdictional identifier (which authority issued the credential), governance tier (operational, advisory, restricted), and authority-credential index (which key in the authority's published key roster signed this marker). The classification is consumed by the receiving unit's admissibility framework before the payload is acted upon, providing an early gate against markers from unrecognized or revoked authorities. The jurisdictional identifier composes hierarchically — a national authority delegates to a state authority which delegates to a county authority — so that a reader operating across jurisdictional boundaries resolves authority through a credential-chain walk rather than a flat lookup. The authority-credential index supports key rotation: when an authority rotates its signing key, markers signed under the prior key remain verifiable until the published roster expires their index, providing graceful key transition without flag-day re-issuance.

The lineage region carries the marker's provenance: original issuance timestamp, last-update timestamp, predecessor-marker reference (when the marker supersedes a prior credential at the same physical location), and a chain-depth indicator. Lineage allows audit reconstruction of how the credential at this physical point evolved over time, supporting the patent's audit-trail and revocation claims. The predecessor reference is itself a cryptographic hash of the prior marker's signature region, so that the lineage chain is structurally tamper-evident: an attempt to forge a predecessor relationship requires either forging the prior signature or finding a hash collision, both computationally infeasible under the credentialing authority's published cryptographic parameters. The chain-depth indicator caps verification cost; a reader encountering a marker with chain depth exceeding its policy budget can decline to walk the full chain and fall back to the most recent two ancestors, trading completeness for bounded latency.

The payload region carries operational content — marker identifier, spatial reference (latitude/longitude or relative-frame coordinates), segment or zone identifier, delineation-role classification (lane edge, hazard zone, transition point), geometry hint (curvature, slope, lateral offset), advisory flags (speed advisory, hazard advisory, special-handling advisory), distance to next marker, and hazard or operational flags. Each payload field occupies a fixed offset and width, so that a reader extracting the speed advisory does not first parse the spatial reference. This positional discipline is what makes per-field extraction time bounded and predictable. Payload organization is further informed by access frequency: fields most frequently consulted by the receiving unit's control loop — advisory flags, geometry hints — sit at lower offsets within the payload region so that partial reads occurring during oblique-angle or dirty-surface conditions yield the highest-value bytes first. Less frequently accessed fields such as the segment identifier or the absolute spatial reference sit at higher offsets, where their absence under partial-read conditions is recoverable from the receiving unit's prior context.

The signature region carries the cryptographic attestation binding the entire preceding byte sequence (header through payload) to the credentialing authority. The signature scheme is governance-credentialed: the authority publishes which scheme it uses (Ed25519, ECDSA over P-256, post-quantum lattice scheme), and the layout's signature region is sized to accommodate the authority's chosen scheme. Verification operates over the canonical byte range, so a marker re-encoded by a relay or cached by a roadside aggregator verifies identically to a marker read directly from the issuing surface. The signature region also includes a small footer carrying the signing-key index and a scheme-identifier byte, so that a reader operating in a jurisdiction supporting multiple concurrent schemes can dispatch to the correct verifier without consulting a separate metadata channel. The footer's position immediately after the signature payload — rather than within the signed range — preserves the property that the signature itself is not self-referential, eliminating a class of malleability attacks against schemes that admit signature-format variability.

Operating Parameters

Marker reading happens at vehicle speed. A vehicle traveling at highway speed of 30 meters per second passes a roadway marker in tens of milliseconds; the marker reading must complete in that window with sufficient confidence to admit the observation into the receiving unit's situational model. Variable-length encoding, parsing-intensive formats, or cryptographic operations requiring significant time per read all compromise the operational tempo and force the reader to either reject reads or admit them without verification. The disclosed layout is dimensioned so that a complete read-decode-verify cycle — antenna interrogation through admissibility-gated emission of the operational observation — completes within a single control-cycle budget at a representative automotive control rate of one hundred to two hundred hertz. That timing envelope is what permits the receiving unit to treat marker observations as first-class real-time inputs rather than as latency-tolerant supplementary data.

Fixed-position byte layout solves the speed constraint structurally rather than computationally. The reader knows exactly which bytes contain which fields; parsing is direct rather than navigated; signature verification operates on a fixed-position byte range with predictable timing characteristics. A modern embedded verifier can complete an Ed25519 signature verification in under one millisecond on contemporary automotive-grade hardware, leaving ample budget for the field-extraction and admissibility-evaluation steps. ECDSA over P-256 verification, while slightly more expensive, fits within similar budgets when implemented with constant-time hardware acceleration available in modern automotive secure elements. Post-quantum lattice schemes incur larger signature sizes — kilobytes rather than tens of bytes — and longer verification windows on the order of several milliseconds, which the layout accommodates by reserving expansion space in the signature region and by allowing the reader to defer verification to a parallel governance-verification thread while the payload extraction proceeds on the control-loop critical path.

Operating temperature, electromagnetic-environment, and surface-degradation tolerances are addressed by the canonicality of the layout. Because every byte position is fixed, partial reads — common when a marker is dirty, partially occluded, or read at an oblique angle — can be reconstructed by combining successive read attempts at the byte level, since the reader knows which bytes are missing rather than having to re-parse a variable-length structure. Partial-read reconstruction also benefits from the layout's hierarchy of importance: even a marker read with thirty percent byte loss may still yield a fully reconstructed advisory-flags field and a recoverable signature, allowing the receiving unit to act on the high-value content under a degraded-confidence policy while suppressing the lower-priority fields. The receiving unit's admissibility framework explicitly distinguishes degraded-confidence partial admissions from full admissions, recording the distinction in the audit trail.

The layout's tamper-evidence property derives from the signature covering the full preceding byte range. Any modification — to the header, the governance class, the lineage, or any payload field — invalidates the signature. The verification gate consequently becomes the single point at which tampering is detected, simplifying the threat model for the receiving unit. The threat model addressed includes both physical tampering at the marker surface (re-painting, re-printing, partial occlusion intended to alter advisory flags) and in-transit tampering during relay (a roadside aggregator re-broadcasting altered marker contents). Both reduce to the same verification failure because both ultimately produce a byte sequence that does not match the authority's signature. The threat model does not address replay attacks where a valid marker is recorded and re-broadcast at a different physical location; that vector is addressed at a higher layer of the spatial-mesh architecture through marker-identifier uniqueness checks and spatial-correlation gates.

Alternative Embodiments

Embodiments differ by physical substrate: passive UHF RFID tags storing the byte sequence in user memory; printed two-dimensional glyphs (DataMatrix, QR variants) encoding the byte sequence directly; NFC tags accessed by handheld inspection devices; digital watermarks embedded in painted lane markings; and active beacon transmissions broadcasting the byte sequence over short-range radio. The byte layout is invariant across substrates; only the carrier modulation and read mechanism differ. This invariance is one of the disclosure's central economic claims: a credentialing authority can issue markers in mixed substrates across a deployment — passive RFID studs at the road surface, printed DataMatrix glyphs on signage, active beacons at intersections — and a single reader implementation accepts all of them by switching only its physical-layer demodulation, never its decode or verification logic.

Embodiments differ by signature scheme. Some jurisdictions credential markers with Ed25519 signatures (32-byte public key, 64-byte signature) for compactness; others use ECDSA over NIST P-256 for compliance with existing public-key infrastructure; emerging deployments incorporate post-quantum lattice signatures with larger signature regions reserved in the layout for forward compatibility. Hybrid embodiments concatenate two schemes — a classical signature alongside a post-quantum signature — within an extended signature region, providing crypto-agile resilience during the transition window during which post-quantum schemes are being qualified but classical schemes have not yet been retired. The reader verifies whichever scheme its policy currently mandates and can accept either if policy permits; the layout accommodates this without structural change because the signature region is sized to the longer of the two schemes and the scheme-identifier byte in the footer disambiguates.

Embodiments differ by governance-tier semantics. A roadway-authority marker carries operational governance class for lane-edge delineation; a port-authority marker carries restricted governance class limiting use to credentialed terminal vehicles; a custody-perimeter marker carries advisory governance class signaling boundary information without imposing a hard constraint. The same byte layout accommodates all tiers by varying the governance-class field rather than the layout structure itself. Multi-tier deployments compose naturally: a port roadway segment may carry overlapping operational, restricted, and advisory markers, each interpreted by the receiving unit according to its credentialed authority subscriptions. A vehicle credentialed only for the operational authority ignores the restricted-tier markers; a credentialed terminal vehicle consumes both.

Embodiments differ by deployment scale. A national-scale roadway deployment uses the full layout including extended lineage. A facility-scale industrial deployment may omit lineage when the credential is short-lived and re-issued frequently, leaving the lineage region populated with sentinel bytes. A consumer-scale deployment (e.g., for autonomous lawn-care robots in residential perimeters) may use a reduced governance class with a single-tier authority. Embodiments differ further by re-issuance cadence: long-lived markers (printed glyphs at fixed installations) are re-credentialed annually under a fresh authority signature; short-lived markers (event-specific digital broadcasts at temporary work zones) are re-credentialed continuously under rolling signatures with brief validity windows. The same layout serves both regimes because the lineage region carries the issuance and update timestamps, and the receiving unit's freshness policy is itself a credentialed datum varying by deployment.

Composition With Reader and Admissibility Stack

The reader parses the payload region first to extract operational content for immediate use. The governance-chain region is parsed in parallel for credentialing verification; the verification gate admits the observation into the receiving unit's admissibility framework only after the credential validates against the published authority roster. This parallel pipeline keeps the read-to-act latency bounded by the slower of payload extraction or signature verification, rather than the sum of the two. In practice, payload extraction completes in single-digit microseconds because it is a sequence of fixed-offset memory loads, while signature verification dominates the verification path. The pipeline structure converts what would otherwise be a serial dependency into a max-of-two latency, which is what permits the disclosed layout to operate within tight automotive control budgets even when the verification path is non-trivial.

The row delimiter provides the structural boundary that supports both parallel-parsing and sequential-reading patterns. High-end vehicle readers with dedicated parsing silicon consume the layout in parallel; low-cost handheld inspection readers with single-threaded firmware consume it sequentially. Both produce identical extraction and verification outcomes because the byte positions are canonical. This dual-tempo property is structurally important: a deployment must serve both at-speed vehicle readers and stationary inspection readers — used for marker-installation verification, periodic compliance audit, and post-incident investigation — without requiring two distinct marker formats. The single canonical layout serves both, with the difference reduced to control-flow at the reader rather than data-format at the marker.

Admissibility composes naturally over the layout. The receiving unit's admissibility evaluator consumes the governance class to look up the operational tier, the lineage to check for revocation, and the signature to confirm authenticity. Each is a fixed-offset extraction; the admissibility computation reduces to a small number of byte comparisons plus a single signature verification, which can be cached across successive reads of the same marker. Caching is keyed on the marker identifier from the payload combined with the signature scheme and key index from the footer; a vehicle re-reading the same marker on a return trip resolves admissibility from cache without re-running verification, conserving cryptographic budget for newly-encountered markers. Cache invalidation is driven by the lineage region's update-timestamp field; when an authority revokes or re-issues a marker, the cache entry expires the next time the marker is read.

The byte-level specification is also load-bearing for the patent's wire-format claims. Unlike functional or architectural diagrams that prose can replicate without infringement, byte-level layout produces direct §112 enablement that infringement evaluation can match against accused implementations: an accused marker either places the governance class at the disclosed offset or it does not. This property informs the disclosure's overall claim strategy. Functional claims directed at "credentialed marker verification" risk being designed around by re-labeled implementations; byte-offset claims, by contrast, define a structural test that cannot be evaded without producing markers that fail to interoperate with conforming readers. The patent therefore protects not only the inventive concept but the standardization moat: any deployment seeking to interoperate with the credentialing authority's published reader infrastructure must conform to the disclosed layout, and conformance is itself the infringement test.

Prior-Art Distinction

Prior credentialed-tag formats — EPC Gen2 RFID, ISO/IEC 15693, NDEF over NFC — define byte layouts but do not bind a governance-class field, a lineage segment, and a cryptographic signature into a canonical layout designed for at-speed verification. EPC Gen2 carries an electronic product code with no governance semantics; NDEF carries arbitrary records without canonical positional discipline; ISO 15693 defines a transport but leaves the application-layer payload to vendor convention. The result in prior practice is that any credentialing intent must be layered atop a transport that does not natively support it, producing variable-length encodings and per-vendor parsing variation that frustrate at-speed verification. The disclosed layout collapses transport, governance, and signature into a single fixed-position structure.

Prior signed-document formats — X.509 certificates, JWT tokens, CBOR Web Tokens — embed signatures over governance content but use variable-length encodings (DER, JSON, CBOR) that require navigation to locate fields. Navigation adds parsing time and creates per-field timing variance that is incompatible with at-speed read budgets. The disclosed layout's fixed offsets eliminate that variance. Variable-length encodings further complicate the signature boundary problem: implementations must canonicalize the encoded form before hashing, and canonicalization rules across DER, JSON Canonicalization Scheme, and CBOR deterministic encoding have historically been a source of interoperability bugs and security vulnerabilities. The disclosed layout's fixed-position encoding eliminates canonicalization entirely; the byte sequence is its own canonical form.

Prior at-speed roadside identification systems — toll transponders, vehicle-to-infrastructure beacons — emphasize identifier exchange but do not provide a canonical layout combining governance class, lineage, payload, and signature in a tamper-evident byte sequence verifiable at speed. The disclosed layout is the first to combine these in a portable byte sequence. Toll-transponder formats, exemplified by IAG and 6C protocols, prioritize fast identifier retrieval for billing purposes and treat authentication as an out-of-band concern handled by the toll-collection backend; the at-marker tamper-evidence and at-reader admissibility properties of the disclosed layout are simply not within scope. V2I beacon formats such as IEEE 1609.2 carry signed messages but operate over an active-radio transport rather than a passive marker substrate, and their message formats are organized for periodic broadcast rather than for single-shot at-speed read of a stationary credential. The disclosed layout fills a gap between transponder identifier exchange and V2I broadcast: a passive, signed, credentialed, at-speed-verifiable marker.

Disclosure Scope

The disclosure encompasses the canonical byte layout itself; the partition into header, governance class, lineage, payload, and signature regions; the row delimiter separating signed region from signature; the fixed-offset positional discipline within each region; the parallel-and-sequential reading discipline composed over the layout; and the at-speed admissibility evaluation operating directly over fixed offsets. Embodiments span passive RFID, printed glyphs, NFC, digital watermarks, and active beacons; signature schemes span ECDSA, Ed25519, and post-quantum lattice schemes; and governance-tier semantics span operational, advisory, and restricted classes across roadway, port, custody-perimeter, and industrial-perimeter deployments. The disclosure further encompasses the partial-read reconstruction discipline, the credential-cache invalidation discipline, the chain-depth-bounded lineage walk, the scheme-identifier footer, and the authority-credential-index key-rotation mechanism — each of which is independently practiced and independently claimable, and each of which composes with the others to produce the operational characteristics required for the spatial-mesh program at scale.

Nick Clark Invented by Nick Clark Founding Investors:
Anonymous, Devin Wilkie
72 28 14 36 01