Congress.gov API · Schema

summaryBill

GovernmentLegislativeCongressBillsAmendmentsMembersTreatiesNominationsCongressional RecordUS Federal

Properties

Name Type Description
congress integer
number string
originChamber string
originChamberCode string
title string
type string
updateDateIncludingText string
url string
View JSON Schema on GitHub

JSON Schema

congress-gov-summarybill-schema.json Raw ↑
{
  "$schema": "http://json-schema.org/draft-07/schema#",
  "$id": "https://api.congress.gov/schemas/summaryBill",
  "title": "summaryBill",
  "type": "object",
  "properties": {
    "congress": {
      "type": "integer",
      "example": 117
    },
    "number": {
      "type": "string",
      "example": 1234
    },
    "originChamber": {
      "type": "string",
      "example": "Senate"
    },
    "originChamberCode": {
      "type": "string",
      "example": "S"
    },
    "title": {
      "type": "string",
      "example": "Pay Our Capitol Police Act"
    },
    "type": {
      "type": "string",
      "example": "HR"
    },
    "updateDateIncludingText": {
      "type": "string",
      "format": "date",
      "example": "2021-08-08"
    },
    "url": {
      "type": "string",
      "format": "url",
      "example": "https://api.congress.gov/v3/bill/117/hr/1234?format=json"
    }
  }
}