{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "#/components/schemas/CollaboratorInvite",
"title": "CollaboratorInvite",
"type": "object",
"description": "Request body for inviting a collaborator to an organization.",
"required": [
"email"
],
"properties": {
"email": {
"type": "string",
"format": "email",
"description": "The email address of the person to invite."
},
"is_admin": {
"type": "boolean",
"description": "Whether to grant administrator privileges."
},
"project_ids": {
"type": "array",
"items": {
"type": "string"
},
"description": "List of project IDs the collaborator should have access to."
}
}
}