feat: Create folder model

This commit is contained in:
Faruk AYDIN
2025-01-24 12:10:11 +01:00
parent 3961bb12cd
commit b76f7c0721
4 changed files with 101 additions and 0 deletions

View File

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