EU Parliament Monitor - API Documentation - v0.7.21
    Preparing search index...

    Interface CommitteeValidationResult

    Result of validating a single committee endpoint

    interface CommitteeValidationResult {
        abbreviation: string;
        success: boolean;
        hasName: boolean;
        hasLabel: boolean;
        hasClassification: boolean;
        name: string | null;
        error: string | null;
        responseTimeMs: number;
    }
    Index

    Properties

    abbreviation: string

    Committee abbreviation code (e.g. "ENVI")

    success: boolean

    Whether the endpoint returned usable real data

    hasName: boolean

    Whether a human-readable name was found

    hasLabel: boolean

    Whether a label/abbreviation code was found

    hasClassification: boolean

    Whether the classification identifies a standing committee

    name: string | null

    English name of the committee, or null when unavailable

    error: string | null

    Error message when the request failed, or null on success

    responseTimeMs: number

    Round-trip time in milliseconds