adding creator by id to schema

This commit is contained in:
Beverly Nguyen
2025-08-19 12:44:46 -07:00
parent 3926619fd4
commit 166a03cbbd

View File

@@ -7,6 +7,7 @@ post_create_template_folder_schema = {
"properties": {
"name": {"type": "string", "minLength": 1},
"parent_id": nullable_uuid,
"created_by_id": uuid,
},
"required": ["name", "parent_id"],
}