Congress.gov API · Schema

nominationCommittee

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-nominationcommittee-schema.json Raw ↑
{
  "$schema": "http://json-schema.org/draft-07/schema#",
  "$id": "https://api.congress.gov/schemas/nominationCommittee",
  "title": "nominationCommittee",
  "type": "object",
  "properties": {
    "activities": {
      "type": "array",
      "items": {
        "$ref": "#/components/schemas/Activity"
      }
    },
    "chamber": {
      "type": "string",
      "example": "Senate"
    },
    "name": {
      "type": "string",
      "example": "Judiciary Committee"
    },
    "systemCode": {
      "type": "string",
      "example": "ssju00"
    },
    "type": {
      "type": "string",
      "example": "Standing"
    },
    "url": {
      "type": "string",
      "format": "url",
      "example": "https://api.congress.gov/v3/committee/senate/ssju00?format=json"
    }
  }
}