diff --git a/zarf.schema.json b/zarf.schema.json index b1fca50208..f5b2fefb4f 100644 --- a/zarf.schema.json +++ b/zarf.schema.json @@ -1032,8 +1032,16 @@ "ZarfMetadata": { "properties": { "name": { - "type": "string", - "pattern": "^[a-z0-9][a-z0-9\\-]*$", + "anyOf": [ + { + "type": "string", + "pattern": "^[a-z0-9][a-z0-9\\-]*$" + }, + { + "type": "string", + "pattern": "^###ZARF_PKG_TMPL" + } + ], "description": "Name to identify this Zarf package." }, "description": {