har2api - v0.1.0
    Preparing search index...

    Interface OperationModel

    One method on one path template (e.g. GET /users/{id}).

    interface OperationModel {
        count: number;
        method: string;
        path: string;
        query: ParamModel[];
        requestContentType?: string;
        requestSamples: unknown[];
        responses: ResponseModel[];
    }
    Index

    Properties

    count: number

    How many HAR entries were folded into this operation.

    method: string
    path: string

    Templated path, e.g. /users/{id}.

    query: ParamModel[]
    requestContentType?: string

    Request Content-Type, if a body was sent.

    requestSamples: unknown[]

    Parsed request body samples (JSON) for schema inference.

    responses: ResponseModel[]

    Response status → content type + parsed body samples.