Interface Committee

interface Committee {
    bills?: ListLink;
    chamber: Chamber;
    committeeTypeCode: "Standing";
    communications?: ListLink;
    history: CommitteeHistory[];
    isCurrent?: boolean;
    name: string;
    parent?: BaseCommittee;
    reports?: ListLink;
    subcommittees: BaseCommittee[];
    systemCode: string;
    updateDate: string;
    url: string;
}

Hierarchy (view full)

Properties

bills?: ListLink
chamber: Chamber
committeeTypeCode
communications?: ListLink
history: CommitteeHistory[]
isCurrent?: boolean
name: string
parent?: BaseCommittee
reports?: ListLink
subcommittees: BaseCommittee[]
systemCode: string
updateDate: string
url: string