action openstates_committee_detail_committees_committee_id_get { label: "Committee Detail" description: "Get details on a single committee by ID." provider: openstates method: GET path: "/committees/{committee_id}" encoding: json input: { type: "object" properties: { apikey: { type: "string" } committee_id: { type: "string" } include: { type: "array" description: "Additional includes for the Committee response." items: { type: "string" description: "An enumeration." enum: ["memberships", "links", "sources"] } } "x-api-key": { type: "string" } } required: ["committee_id"] additionalProperties: false } output: { type: "object" required: ["classification", "extras", "id", "name", "parent_id"] properties: { classification: { type: "string" description: "An enumeration." enum: ["committee", "subcommittee"] } extras: { type: "object" } id: { type: "string" } links: { type: "array" items: { type: "object" required: ["url", "note"] properties: { note: { type: "string" } url: { type: "string" } } } } memberships: { type: "array" items: { type: "object" required: ["person_name", "role"] properties: { person: { type: "object" required: ["id", "name", "party"] properties: { current_role: { type: "object" required: ["title", "org_classification"] properties: { district: { type: "object" } division_id: { type: "string" } org_classification: { type: "object" } title: { type: "string" } } } id: { type: "string" } name: { type: "string" } party: { type: "string" } } } person_name: { type: "string" } role: { type: "string" } } } } name: { type: "string" } other_names: { type: "array" items: { type: "object" required: ["name", "note"] properties: { name: { type: "string" } note: { type: "string" } } } } parent_id: { type: "string" } sources: { type: "array" items: { type: "object" additionalProperties: true } } } } }