congress-dot-gov - v0.4.3
    Preparing search index...

    Type Alias BillCommittee

    BillCommittee: {
        activities: {
            date: string;
            name:
                | REFERRED_TO
                | RE_REFERRED_TO
                | HEARINGS_BY
                | MARKUP_BY
                | REPORTED_BY
                | REPORTED_ORIGINAL_MEASURE
                | COMMITTED_TO
                | RE_COMMITTED_TO
                | LEGISLATIVE_INTEREST
                | DISCHARGED_FROM
                | REFERRED_TO_CAPITALIZED;
        }[];
        chamber: Chamber;
        name: string;
        subcommittees?: {
            activities: { date: string; name: string }[];
            name: string;
            systemCode: string;
            url: string;
        }[];
        systemCode: string;
        type: CommitteeType;
        url: string;
    }

    Zod schema for validating entities returned from the /bill/{congress}/{billType}/{billNumber}/committees endpoint.

    Type declaration

    • activities: {
          date: string;
          name:
              | REFERRED_TO
              | RE_REFERRED_TO
              | HEARINGS_BY
              | MARKUP_BY
              | REPORTED_BY
              | REPORTED_ORIGINAL_MEASURE
              | COMMITTED_TO
              | RE_COMMITTED_TO
              | LEGISLATIVE_INTEREST
              | DISCHARGED_FROM
              | REFERRED_TO_CAPITALIZED;
      }[]

      Committee or subcommittee activities on a bill or resolution. Read more about committee-related activity on Congress.gov.

    • chamber: Chamber

      The chamber where the committee or subcommittee operates. Possible values are "House", "Senate", or "Joint". (e.g. House)

    • name: string

      The name of the committee associated with the bill or resolution. (e.g. Energy and Commerce Committee)

    • Optionalsubcommittees?: {
          activities: { date: string; name: string }[];
          name: string;
          systemCode: string;
          url: string;
      }[]

      Subcommittees associated with the bill or resolution.

    • systemCode: string

      Unique ID value for the committee (e.g. hsif00)

    • type: CommitteeType

      The type or status of the committee or subcommittee. Possible values are "Standing", "Select", "Special", "Joint", "Task Force", "Other", "Subcommittee", or "Commission or Caucus". (e.g. Standing)

    • url: string

      A referrer URL to the committee or subcommittee item in the committee API. Documentation for the committee endpoint is available here. (e.g. https://api.congress.gov/v3/committee/house/hsif00)