Input for adding an unsubscribe
{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/UnsubscribeInput", "title": "UnsubscribeInput", "type": "object", "description": "Input for adding an unsubscribe", "required": [ "email" ], "properties": { "email": { "type": "string", "format": "email", "description": "Email address to unsubscribe" } } }