{
	"$schema": "http://json-schema.org/draft-07/schema#",
	"$id": "https://axway.com/axway-flow-trigger/channelschema-v1.json",
	"title": "Flow-trigger channel schema",
	"description": "The schema for flow-trigger channels",
	"type": "object",
	"properties": {
		"name": {
			"type": "string"
		},
		"enabled": {
			"type": "boolean"
		},
		"parameters": {
			"type": "object",
			"additionalProperties": {
				"type": "string"
			}
		}
	},
	"additionalProperties": false,
	"required": [
		"name",
		"enabled",
		"parameters"
	]
}
