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

    Interface RequestBodyInfo

    Parsed view of an OpenAPI Request Body Object — required flag, description, declared content types, and the request body schema.

    interface RequestBodyInfo {
        required: boolean;
        description: string | undefined;
        contentTypes: string[];
        schema: JsonObject | undefined;
    }
    Index

    Properties

    required: boolean
    description: string | undefined
    contentTypes: string[]
    schema: JsonObject | undefined