diff --git a/templates/registry.schema.json b/templates/registry.schema.json new file mode 100644 index 00000000..48e34803 --- /dev/null +++ b/templates/registry.schema.json @@ -0,0 +1,34 @@ +{ + "type": "object", + "required": [ + "name", + "version", + "description", + "author", + "tags", + "source" + ], + "properties": { + "name": { + "type": "string" + }, + "version": { + "type": "string" + }, + "description": { + "type": "string" + }, + "author": { + "type": "string" + }, + "tags": { + "type": "array", + "items": { + "type": "string" + } + }, + "source": { + "type": "object" + } + } +} \ No newline at end of file