{
    "$schema": "http://json-schema.org/draft-07/schema#",
    "$id": "#Channel",
    "description": "A communication channel, such as a Slack channel or AWS SNS topic.",
    "type": "object",
    "allOf": [
        {
            "$ref": "#Entity"
        },
        {
            "properties": {
                "encrypted": {
                    "description": "Indicates whether the communication channel is encrypted.",
                    "type": "boolean"
                }
            },
            "required": []
        }
    ]
}
