{ "$schema": "http://json-schema.org/draft-07/schema#", "title": "RecipientChannel_Email", "type": "object", "required": [ "channel", "address" ], "properties": { "channel": { "type": "string", "enum": [ "email" ] }, "address": { "type": "string", "format": "email" } } }