Auth0 · Schema

FlowActionSlackPostMessageParamsAttachment

AI AgentsAuthenticationAuthorizationFGAIdentity ManagementMCPOAuthOktaOpenID ConnectSAMLSecuritySCIM

Properties

Name Type Description
color string
pretext string
text string
fields array
View JSON Schema on GitHub

JSON Schema

auth0-flowactionslackpostmessageparamsattachment-schema.json Raw ↑
{
  "$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"
      }
    }
  }
}