feat: Create template model

This commit is contained in:
Faruk AYDIN
2025-02-17 14:48:25 +01:00
parent 3fa677f3d0
commit 2e279d4709
4 changed files with 74 additions and 0 deletions

View File

@@ -0,0 +1,29 @@
// Vitest Snapshot v1, https://vitest.dev/guide/snapshot.html
exports[`Template model > jsonSchema should have correct validations 1`] = `
{
"properties": {
"createdAt": {
"type": "string",
},
"flowData": {
"type": "object",
},
"id": {
"format": "uuid",
"type": "string",
},
"name": {
"minLength": 1,
"type": "string",
},
"updatedAt": {
"type": "string",
},
},
"required": [
"name",
],
"type": "object",
}
`;