@suluk/core - v0.1.13
    Preparing search index...

    Interface SignatureTuple

    Canonical signature tuple (C019 §A.2). The ADA's identity of a request; the matcher/collision key.

    interface SignatureTuple {
        method: string;
        path: string;
        query: string[];
        contentType: string;
        headers: string[];
        body: string;
    }
    Index

    Properties

    method: string
    path: string

    Path shape: literals kept, variables erased to {} (keys on shape, not on var spelling).

    query: string[]

    Sorted query key-set (order/repetition-insensitive).

    contentType: string

    Canonical media type, or "*" if absent (does-not-participate).

    headers: string[]

    Participating header names (lowercased, sorted); "*" sentinel if none (best-effort, #108).

    body: string

    Stable id of the request-body schema: its $ref, the "#inline" SENTINEL (inline shape stays OUT of the key — D1/§A.2), or "*".