diff --git a/system/src/Grav/Common/Data/BlueprintSchema.php b/system/src/Grav/Common/Data/BlueprintSchema.php index f082f9e0b..a50bf2310 100644 --- a/system/src/Grav/Common/Data/BlueprintSchema.php +++ b/system/src/Grav/Common/Data/BlueprintSchema.php @@ -116,7 +116,7 @@ class BlueprintSchema extends BlueprintSchemaBase implements ExportInterface if ($includeAll) { foreach ($this->items as $key => $rules) { $type = $rules['type'] ?? ''; - if (!str_starts_with($type, '_')) { + if (!str_starts_with($type, '_') && !str_contains($key, '*')) { $list[$key] = null; } }