action cdcgov_put_settings_organizations_organization_name { label: "put_settings_organizations_organizationName" description: "Create or update the direct settings associated with an organization" provider: cdcgov method: PUT path: "/settings/organizations/{organizationName}" encoding: json input: { type: "object" 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" } organizationName: { type: "string" } stateCode: { type: "string" description: "the two letter code for the organization" } } required: ["description", "jurisdiction", "name", "organizationName"] additionalProperties: false } output: { type: "object" description: "An organization connected to data hub" required: ["description", "jurisdiction", "name"] 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" } } } }