action cdcgov_get_settings_organizations { label: "get_settings_organizations" description: "The settings for all organizations of the system. Must have admin access." provider: cdcgov method: GET path: "/settings/organizations" encoding: json output: { type: "array" items: { type: "object" description: "An organization connected to data hub" required: ["name", "description", "jurisdiction"] properties: { countyName: { type: "string" description: "the county name (must match FIPS name)" } description: { type: "string" description: "the displayable description of the organization" } jurisdiction: { type: "string" enum: ["National", "State", "County"] } meta: { type: "object" description: "The metadata associated with an setting" properties: { createdAt: { type: "string" format: "time-date" description: "the time that the particular revision was created" } createdBy: { type: "string" description: "the user who created the particular revision" } version: { type: "number" description: "the version number of the object" } } } name: { type: "string" description: "the unique id for the organization" } stateCode: { type: "string" description: "the two letter code for the organization" } } } } }