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

    Interface SecurityScheme

    @suluk/core — the foundation library for the OpenAPI v4.0 "Suluk" candidate.

    parse → validate (meta-schema) → resolve references (by-name) → compute signatures → build the ADA → match requests. Implements the structural + behavioral contract in specification/candidate-v4/conformance/CONFORMANCE.md and the buildable grammars in SPEC Appendix A (C019). CANDIDATE tooling — provisional; the soft points (CONFIDENCE.md) are isolated here.

    interface SecurityScheme {
        type: "apiKey" | "http" | "oauth2" | "openIdConnect" | "mutualTLS";
        name?: string;
        in?: "query" | "header" | "cookie";
        scheme?: string;
        flows?: Record<string, unknown>;
        openIdConnectUrl?: string;
    }
    Index

    Properties

    type: "apiKey" | "http" | "oauth2" | "openIdConnect" | "mutualTLS"
    name?: string
    in?: "query" | "header" | "cookie"
    scheme?: string
    flows?: Record<string, unknown>
    openIdConnectUrl?: string