diff --git a/assets/openapi.json b/assets/openapi.json
index 5a330775..4d285cb1 100644
--- a/assets/openapi.json
+++ b/assets/openapi.json
@@ -7199,9 +7199,14 @@
},
"instanceId": {
"type": "string"
+ },
+ "autoCreateBotUsers": {
+ "type": "boolean",
+ "default": false
}
},
"required": [
+ "autoCreateBotUsers",
"correspondenceEmail",
"correspondenceUserID",
"frontPage",
diff --git a/assets/schemas.json b/assets/schemas.json
index de301bfc..919d4981 100644
--- a/assets/schemas.json
+++ b/assets/schemas.json
@@ -422590,10 +422590,15 @@
},
"instanceId": {
"type": "string"
+ },
+ "autoCreateBotUsers": {
+ "type": "boolean",
+ "default": false
}
},
"additionalProperties": false,
"required": [
+ "autoCreateBotUsers",
"correspondenceEmail",
"correspondenceUserID",
"frontPage",
|