{
	"$schema": "http://json-schema.org/draft-07/schema#",
	"$id": "https://fdc3.finos.org/schemas/next/api/leaveCurrentChannelRequest.schema.json",
	"type": "object",
	"title": "LeaveCurrentChannel Request",
	"description": "Request to remove the app from any User channel membership.",
	"allOf": [
		{
			"$ref": "appRequest.schema.json"
		},
		{
			"type": "object",
			"properties": {
				"type": {
					"$ref": "#/$defs/LeaveCurrentChannelRequestType"
				},
				"payload": {
					"$ref": "#/$defs/LeaveCurrentChannelRequestPayload"
				},
				"meta": true
			},
			"additionalProperties": false
		}
	],
	"$defs": {
		"LeaveCurrentChannelRequestType": {
			"title": "LeaveCurrentChannel Request Message Type",
			"const": "leaveCurrentChannelRequest"
		},
		"LeaveCurrentChannelRequestPayload": {
			"title": "LeaveCurrentChannel Request Payload",
			"type": "object",
			"properties": {},
			"additionalProperties": false
		}
	}
}