{
    "$schema": "http://json-schema.org/draft-07/schema#",
    "$id": "#UserGroup",
    "description": "A user group, typically associated with some type of access control, such as a group in Okta or in Office365. If a UserGroup has an access policy attached, and all member Users of the UserGroup would inherit the policy.",
    "type": "object",
    "allOf": [
        { "$ref": "#Entity" },
        {
            "properties": {
                "email": {
                    "description": "The group email address",
                    "type": "string",
                    "format": "email"
                }
            },
            "required": []
        }
    ]
}
