{
"$schema": "http://json-schema.org/draft-07/schema#",
"title": "Invite",
"type": "object",
"properties": {
"name": {
"type": "string",
"description": "The full name of the user being invited"
},
"email": {
"type": "string",
"description": "The email address to invite"
},
"role": {
"$ref": "#/components/schemas/UserRole"
}
}
}