Congress.gov API · Schema

voteParty

GovernmentLegislativeCongressBillsAmendmentsMembersTreatiesNominationsCongressional RecordUS Federal

Properties

Name Type Description
nayTotal integer
notVotingTotal integer
presentTotal integer
voteParty string
yeaTotal integer
party object
View JSON Schema on GitHub

JSON Schema

congress-gov-voteparty-schema.json Raw ↑
{
  "$schema": "http://json-schema.org/draft-07/schema#",
  "$id": "https://api.congress.gov/schemas/voteParty",
  "title": "voteParty",
  "type": "object",
  "properties": {
    "nayTotal": {
      "type": "integer",
      "example": 0
    },
    "notVotingTotal": {
      "type": "integer",
      "example": 6
    },
    "presentTotal": {
      "type": "integer",
      "example": 0
    },
    "voteParty": {
      "type": "string",
      "example": "R"
    },
    "yeaTotal": {
      "type": "integer",
      "example": 213
    },
    "party": {
      "$ref": "#/components/schemas/party"
    }
  }
}