{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "#/components/schemas/UserRemoved",
"title": "UserRemoved",
"type": "object",
"description": "Details of a user removal from the enterprise.",
"properties": {
"id": {
"type": "string",
"description": "The ID of the removed user."
},
"sharedBases": {
"type": "array",
"description": "Bases that were shared and reassigned.",
"items": {
"type": "object",
"properties": {
"baseId": {
"type": "string"
}
}
}
},
"unsharedBases": {
"type": "array",
"description": "Bases that were unshared as a result of removal.",
"items": {
"type": "object",
"properties": {
"baseId": {
"type": "string"
}
}
}
}
}
}