Congress.gov API · Schema

partyHistory

GovernmentLegislativeCongressBillsAmendmentsMembersTreatiesNominationsCongressional RecordUS Federal

Properties

Name Type Description
partyAbbreviation string
partyName string
startYear integer
View JSON Schema on GitHub

JSON Schema

congress-gov-partyhistory-schema.json Raw ↑
{
  "$schema": "http://json-schema.org/draft-07/schema#",
  "$id": "https://api.congress.gov/schemas/partyHistory",
  "title": "partyHistory",
  "type": "object",
  "properties": {
    "partyAbbreviation": {
      "type": "string",
      "example": "D"
    },
    "partyName": {
      "type": "string",
      "example": "Democrat"
    },
    "startYear": {
      "type": "integer",
      "example": 1975
    }
  }
}