From 0d51fef4c6ac18e3e940532fdcb59bac6ee6465b Mon Sep 17 00:00:00 2001 From: Matus Drobuliak Date: Thu, 15 May 2025 17:15:56 +0200 Subject: [PATCH] fix test --- .../api/v0/schemas/project-v0.0.1.json | 24 +++++++++++++++++++ 1 file changed, 24 insertions(+) diff --git a/services/director/src/simcore_service_director/api/v0/schemas/project-v0.0.1.json b/services/director/src/simcore_service_director/api/v0/schemas/project-v0.0.1.json index 97016fe45e3f..9b5a55525021 100644 --- a/services/director/src/simcore_service_director/api/v0/schemas/project-v0.0.1.json +++ b/services/director/src/simcore_service_director/api/v0/schemas/project-v0.0.1.json @@ -766,6 +766,30 @@ }, "workspaceId": { "type": ["integer", "null"] + }, + "type": { + "type": "string", + "description": "project type", + "enum": [ + "STANDARD", + "TEMPLATE" + ] + }, + "templateType": { + "anyOf": [ + { + "type": "null" + }, + { + "type": "string", + "description": "project template type", + "enum": [ + "TEMPLATE", + "HYPERTOOL", + "TUTORIAL" + ] + } + ] } } }