action cdcgov_put_settings_organizations_organization_name_senders_sender_name { label: "put_settings_organizations_organizationName_senders_senderName" description: "Update a single sender" provider: cdcgov method: PUT path: "/settings/organizations/{organizationName}/senders/{senderName}" encoding: json input: { type: "object" properties: { description: { type: "string" description: "Display ready description of the sender" } format: { type: "string" description: "the payload format" enum: ["CSV"] } 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: "Unique name for the senders, includes the orgninzation name" } organizationName: { type: "string" } schema: { type: "string" description: "the schema name for this sender" } senderName: { type: "string" } topic: { type: "string" description: "Topic of for this sender. Must match the supported topics." } } required: ["description", "format", "name", "organizationName", "schema", "senderName", "topic"] additionalProperties: false } output: { type: "array" items: { type: "object" description: "An sender of reports to the data hub" required: ["name", "description", "topic", "schema", "format"] properties: { description: { type: "string" description: "Display ready description of the sender" } format: { type: "string" description: "the payload format" enum: ["CSV"] } 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: "Unique name for the senders, includes the orgninzation name" } organizationName: { type: "string" description: "Name of the organization that this sender belongs to" } schema: { type: "string" description: "the schema name for this sender" } topic: { type: "string" description: "Topic of for this sender. Must match the supported topics." } } } } }