{ "$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" } } }