schema-components - v3.7.0
    Preparing search index...

    Interface ResponseInfo

    Parsed view of an OpenAPI Response Object — status code, description, declared content types, response schema, and resolved headers.

    interface ResponseInfo {
        statusCode: string;
        description: string | undefined;
        contentTypes: string[];
        schema: JsonObject | undefined;
        headers: Map<string, HeaderInfo>;
    }
    Index

    Properties

    statusCode: string
    description: string | undefined
    contentTypes: string[]
    schema: JsonObject | undefined
    headers: Map<string, HeaderInfo>