diff --git a/core/command/config/listconfigs.php b/core/command/config/listconfigs.php
index c139a40e269f7aa19d859d818796e19dd545bbe7..c93d26cbda4ee416a8faeb9d785b73039b5d0c90 100644
--- a/core/command/config/listconfigs.php
+++ b/core/command/config/listconfigs.php
@@ -88,7 +88,9 @@ class ListConfigs extends Base {
 
 		switch ($app) {
 			case 'system':
-				$configs = $this->getSystemConfigs($noSensitiveValues);
+				$configs = [
+					'system' => $this->getSystemConfigs($noSensitiveValues),
+				];
 			break;
 
 			case 'all':
@@ -103,7 +105,11 @@ class ListConfigs extends Base {
 			break;
 
 			default:
-				$configs = $this->appConfig->getValues($app, false);
+				$configs = [
+					'apps' => [
+						$app => $this->appConfig->getValues($app, false),
+					],
+				];
 		}
 
 		$this->writeArrayInOutputFormat($input, $output, $configs);
diff --git a/tests/core/command/config/listconfigstest.php b/tests/core/command/config/listconfigstest.php
index b7021384df92772dfd2031341cf7d9499e549b01..06c0f08873f31676e478a551ab9fc1d5ab1fb4b5 100644
--- a/tests/core/command/config/listconfigstest.php
+++ b/tests/core/command/config/listconfigstest.php
@@ -151,7 +151,9 @@ class ListConfigsTest extends TestCase {
 				],
 				true,
 				json_encode([
-					'overwrite.cli.url' => 'http://localhost',
+					'system' => [
+						'overwrite.cli.url' => 'http://localhost',
+					],
 				]),
 			],
 			[
@@ -176,8 +178,10 @@ class ListConfigsTest extends TestCase {
 				],
 				false,
 				json_encode([
-					'secret' => 'my secret',
-					'overwrite.cli.url' => 'http://localhost',
+					'system' => [
+						'secret' => 'my secret',
+						'overwrite.cli.url' => 'http://localhost',
+					],
 				]),
 			],
 			[
@@ -202,7 +206,11 @@ class ListConfigsTest extends TestCase {
 				],
 				true,
 				json_encode([
-					'enabled' => 'yes',
+					'apps' => [
+						'files' => [
+							'enabled' => 'yes',
+						],
+					],
 				]),
 			],
 			[
@@ -227,7 +235,11 @@ class ListConfigsTest extends TestCase {
 				],
 				false,
 				json_encode([
-					'enabled' => 'yes',
+					'apps' => [
+						'files' => [
+							'enabled' => 'yes',
+						],
+					],
 				]),
 			],
 		];