Congress.gov API · Schema

nominee

GovernmentLegislativeCongressBillsAmendmentsMembersTreatiesNominationsCongressional RecordUS Federal

Properties

Name Type Description
nomineeCount integer
ordinal integer
organization string
positionTitle string
url string
View JSON Schema on GitHub

JSON Schema

congress-gov-nominee-schema.json Raw ↑
{
  "$schema": "http://json-schema.org/draft-07/schema#",
  "$id": "https://api.congress.gov/schemas/nominee",
  "title": "nominee",
  "type": "object",
  "properties": {
    "nomineeCount": {
      "type": "integer",
      "example": 1
    },
    "ordinal": {
      "type": "integer",
      "example": 1
    },
    "organization": {
      "type": "string",
      "example": "Federal Maritime Commission"
    },
    "positionTitle": {
      "type": "string",
      "example": "Federal Maritime Commissioner"
    },
    "url": {
      "type": "string",
      "format": "url",
      "example": "https://api.congress.gov/v3/nomination/118/16/1?format=json"
    }
  }
}