{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/CreateImportUsersRequestContent", "title": "CreateImportUsersRequestContent", "type": "object", "additionalProperties": true, "required": [ "users", "connection_id" ], "properties": { "users": { "type": "string", "contentMediaType": "application/octet-stream" }, "connection_id": { "type": "string", "description": "connection_id of the connection to which users will be imported.", "default": "con_0000000000000001", "pattern": "^con_[A-Za-z0-9]{16}$" }, "upsert": { "type": "boolean", "description": "Whether to update users if they already exist (true) or to ignore them (false).", "default": false }, "external_id": { "type": "string", "description": "Customer-defined ID." }, "send_completion_email": { "type": "boolean", "description": "Whether to send a completion email to all tenant owners when the job is finished (true) or not (false).", "default": true } } }