@suluk/hono - v0.1.5
    Preparing search index...

    Interface RouteResponse

    @suluk/hono — the derivation engine. The user authors minimal RouteContracts (Hono + Zod); everything else is derived: the v4 document (dynamic per principal + time), request validation, contract tests, and a documentation-coverage audit. See tooling/ARCHITECTURE.md. CANDIDATE tooling.

    interface RouteResponse {
        status: number;
        description?: string;
        schema?: ZodType<unknown, unknown, $ZodTypeInternals<unknown, unknown>>;
        contentType?: string;
        examples?: unknown[];
    }
    Index

    Properties

    status: number
    description?: string
    schema?: ZodType<unknown, unknown, $ZodTypeInternals<unknown, unknown>>
    contentType?: string

    Defaults to application/json when a schema is present.

    examples?: unknown[]

    Optional concrete example responses — used by contractChecks.