{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "#/components/schemas/AssignUserToInvestigationRequest",
"title": "AssignUserToInvestigationRequest",
"type": "object",
"description": "Details about which user to assign.",
"properties": {
"user_email_address": {
"type": "string",
"description": "The email address of the user to assign to this investigation, used to log into the Insight Platform.",
"example": "[email protected]",
"minLength": 1
}
},
"required": [
"user_email_address"
]
}