Technical Elements Documentation
    Preparing search index...

    Reusable interface for representing peer review findings. Used to document feedback from peer reviews and responses.

    interface PeerReviewFinding {
        actions?: string[];
        category: string;
        description: string;
        findingId: string;
        response: string;
        significance: ImportanceLevel;
        status: "OPEN" | "CLOSED" | "IN_PROGRESS";
    }
    Index

    Properties

    actions?: string[]

    Actions taken to address the finding

    category: string

    Category of the finding

    description: string

    Description of the finding

    findingId: string

    ID of the peer review finding

    response: string

    Response to the finding

    significance: ImportanceLevel

    Significance of the finding (HIGH/MEDIUM/LOW)

    status: "OPEN" | "CLOSED" | "IN_PROGRESS"

    Resolution status