Congress.gov API · Schema

committeePrints

GovernmentLegislativeCongressBillsAmendmentsMembersTreatiesNominationsCongressional RecordUS Federal

Properties

Name Type Description
chamber string
congress integer
jacketNumber integer
updateDate string
url string
View JSON Schema on GitHub

JSON Schema

congress-gov-committeeprints-schema.json Raw ↑
{
  "$schema": "http://json-schema.org/draft-07/schema#",
  "$id": "https://api.congress.gov/schemas/committeePrints",
  "title": "committeePrints",
  "type": "object",
  "properties": {
    "chamber": {
      "type": "string",
      "example": "House"
    },
    "congress": {
      "type": "integer",
      "example": 117
    },
    "jacketNumber": {
      "type": "integer",
      "example": 48144
    },
    "updateDate": {
      "type": "string",
      "format": "date-time",
      "example": "2022-08-01 21:19:33+00:00"
    },
    "url": {
      "type": "string",
      "format": "url",
      "example": "https://api.congress.gov/v3/committee-print/117/house/48144?format=json"
    }
  }
}