KafkaActionDescriptor.json

34 lines | 575 B Blame History Raw Download
{
  "schema": {
    "title": "Kafka Action Configuration",
    "type": "object",
    "properties": {
      "sync": {
        "title": "Requires delivery confirmation",
        "type": "boolean"
      },
      "topic": {
        "title": "Topic Name",
        "type": "string"
      },
      "template": {
        "title": "Body Template",
        "type": "string"
      }
    },
    "required": [
      "sync",
      "topic",
      "template"
    ]
  },
  "form": [
    "sync",
    "topic",
    {
      "key": "template",
      "type": "textarea",
      "rows": 5
    }
  ]
}