Congress.gov API · Schema
Committees
GovernmentLegislativeCongressBillsAmendmentsMembersTreatiesNominationsCongressional RecordUS Federal
Properties
| Name | Type | Description |
|---|---|---|
| chamber | string | |
| committeeTypeCode | string | |
| updateDate | string | |
| name | string | |
| parent | object | |
| subcommittees | array | |
| systemCode | string | |
| url | string |
JSON Schema
{
"$schema": "http://json-schema.org/draft-07/schema#",
"$id": "https://api.congress.gov/schemas/Committees",
"title": "Committees",
"type": "object",
"properties": {
"chamber": {
"type": "string",
"example": "House"
},
"committeeTypeCode": {
"type": "string",
"example": "Standing"
},
"updateDate": {
"type": "string",
"format": "date-time",
"example": "2020-02-04T00:07:37Z"
},
"name": {
"type": "string",
"example": "Transportation and Infrastructure Committee"
},
"parent": {
"$ref": "#/components/schemas/parentcommittee"
},
"subcommittees": {
"type": "array",
"items": {
"$ref": "#/components/schemas/subcommittees"
}
},
"systemCode": {
"type": "string",
"example": "hspw00"
},
"url": {
"type": "string",
"format": "url",
"example": "https://api.congress.gov/v3/committee/house/hspw00?format=json"
}
}
}