{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/FlowActionSlackPostMessageParamsAttachment", "title": "FlowActionSlackPostMessageParamsAttachment", "type": "object", "additionalProperties": false, "properties": { "color": { "type": "string", "enum": [ "GOOD", "WARNING", "DANGER" ] }, "pretext": { "type": "string" }, "text": { "type": "string" }, "fields": { "type": "array", "items": { "$ref": "#/components/schemas/FlowActionSlackPostMessageParamsAttachmentField" } } } }