Interface Legislation

interface Legislation {
    congress: string;
    introducedDate: string;
    latestAction: Record<"text" | "actionDate", string>;
    number: string;
    policyArea: {
        name: string;
    };
    title: string;
    type: "S";
    url: string;
}

Hierarchy

  • Record<
        | "number"
        | "title"
        | "congress"
        | "introducedDate"
        | "url", string>
    • Legislation

Properties

congress: string
introducedDate: string
latestAction: Record<"text" | "actionDate", string>
number: string
policyArea: {
    name: string;
}
title: string
type: "S"
url: string