Congress.gov API · Schema

CommitteeBills

GovernmentLegislativeCongressBillsAmendmentsMembersTreatiesNominationsCongressional RecordUS Federal

Properties

Name Type Description
bills array
count integer
url string
View JSON Schema on GitHub

JSON Schema

congress-gov-committeebills-schema.json Raw ↑
{
  "$schema": "http://json-schema.org/draft-07/schema#",
  "$id": "https://api.congress.gov/schemas/CommitteeBills",
  "title": "CommitteeBills",
  "type": "object",
  "properties": {
    "bills": {
      "type": "array",
      "items": {
        "$ref": "#/components/schemas/committeeBill"
      }
    },
    "count": {
      "type": "integer",
      "example": 27251
    },
    "url": {
      "type": "string",
      "format": "url",
      "example": "https://api.congress.gov/v3/committee/house/hspw00/bills?format=json"
    }
  }
}