{
    "$schema": "http://json-schema.org/draft-07/schema#",
    "$id": "#Team",
    "description": "A team consists of multiple member Person entities. For example, the Development team or the Security team.",
    "type": "object",
    "allOf": [
        {
            "$ref": "#Entity"
        },
        {
            "properties": {
                "email": {
                    "description": "The team email address",
                    "type": "string",
                    "format": "email"
                }
            },
            "required": []
        }
    ]
}
