@squidcloud/client
    Preparing search index...

    Interface OpenApiDiscoveryOptions

    Options for discovering APIs via an OpenAPI specification. Supply either a URL to fetch the document from, or the raw document content directly.

    interface OpenApiDiscoveryOptions {
        openApiSpecContent?: string;
        openApiSpecUrl?: string;
    }
    Index

    Properties

    openApiSpecContent?: string

    The raw OpenAPI specification document (JSON or YAML), used to discover the schema directly when the spec is provided as content rather than a URL.

    openApiSpecUrl?: string

    The URL of the OpenAPI specification document.