{
	"$schema": "http://json-schema.org/draft-07/schema#",
	"$id": "https://fdc3.finos.org/schemas/next/api/eventListenerUnsubscribeResponse.schema.json",
	"type": "object",
	"title": "EventListenerUnsubscribe Response",
	"description": "A response to an eventListenerUnsubscribe request.",
	"allOf": [
		{
			"$ref": "agentResponse.schema.json"
		},
		{
			"type": "object",
			"properties": {
				"type": {
					"$ref": "#/$defs/EventListenerUnsubscribeResponseType"
				},
				"payload": true,
				"meta": true
			},
			"additionalProperties": false
		}
	],
	"$defs": {
		"EventListenerUnsubscribeResponseType": {
			"title": "EventListenerUnsubscribe Response Message Type",
			"const": "eventListenerUnsubscribeResponse"
		}
	}
}