Congress.gov API · Schema

CommitteeHouseCommunication

GovernmentLegislativeCongressBillsAmendmentsMembersTreatiesNominationsCongressional RecordUS Federal
View JSON Schema on GitHub

JSON Schema

congress-gov-committeehousecommunication-schema.json Raw ↑
{
  "$schema": "http://json-schema.org/draft-07/schema#",
  "$id": "https://api.congress.gov/schemas/CommitteeHouseCommunication",
  "title": "CommitteeHouseCommunication",
  "allOf": [
    {
      "$ref": "#/components/schemas/CommitteeCommunication"
    },
    {
      "type": "object",
      "properties": {
        "chamber": {
          "type": "string",
          "example": "House"
        },
        "url": {
          "type": "string",
          "format": "url",
          "example": "https://api.congress.gov/v3/house-communication/114/ec/3262?format=json"
        }
      }
    }
  ]
}