Congress.gov API · Schema

Committee

GovernmentLegislativeCongressBillsAmendmentsMembersTreatiesNominationsCongressional RecordUS Federal

Properties

Name Type Description
activities array
chamber string
name string
systemCode string
type string
url string
View JSON Schema on GitHub

JSON Schema

congress-gov-committee-schema.json Raw ↑
{
  "$schema": "http://json-schema.org/draft-07/schema#",
  "$id": "https://api.congress.gov/schemas/Committee",
  "title": "Committee",
  "type": "object",
  "properties": {
    "activities": {
      "type": "array",
      "items": {
        "$ref": "#/components/schemas/Activity"
      }
    },
    "chamber": {
      "type": "string",
      "example": "House"
    },
    "name": {
      "type": "string",
      "example": "House Committee on the Judiciary"
    },
    "systemCode": {
      "type": "string",
      "example": "hsgo00"
    },
    "type": {
      "type": "string",
      "example": "Standing"
    },
    "url": {
      "type": "string",
      "format": "url",
      "example": "https://api.congress.gov/v3/committee/house/hsgo00?format=json"
    }
  }
}