NCD Congressional Testimony

Congressional testimony submitted by the National Council on Disability on disability policy matters.

DisabilityFederal GovernmentPolicyCivil RightsHealthcareIndependent Agency

Properties

Name Type Description
title string Title of the testimony
date string Date testimony was delivered
committee string Congressional committee before which testimony was delivered
chamber string Congressional chamber
subject string Subject matter of the testimony
policyArea string Primary disability policy area addressed
documentURL string URL to the full testimony document
View JSON Schema on GitHub

JSON Schema

ncd-testimony-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://www.ncd.gov/schemas/testimony",
  "title": "NCD Congressional Testimony",
  "description": "Congressional testimony submitted by the National Council on Disability on disability policy matters.",
  "type": "object",
  "required": [
    "title",
    "date",
    "committee"
  ],
  "properties": {
    "title": {
      "type": "string",
      "description": "Title of the testimony"
    },
    "date": {
      "type": "string",
      "format": "date",
      "description": "Date testimony was delivered"
    },
    "committee": {
      "type": "string",
      "description": "Congressional committee before which testimony was delivered"
    },
    "chamber": {
      "type": "string",
      "enum": [
        "Senate",
        "House",
        "Joint"
      ],
      "description": "Congressional chamber"
    },
    "subject": {
      "type": "string",
      "description": "Subject matter of the testimony"
    },
    "policyArea": {
      "type": "string",
      "description": "Primary disability policy area addressed"
    },
    "documentURL": {
      "type": "string",
      "format": "uri",
      "description": "URL to the full testimony document"
    }
  }
}