{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/TaskCreate", "title": "TaskCreate", "type": "object", "required": [ "name", "workspaceId" ], "properties": { "name": { "type": "string" }, "workspaceId": { "type": "string" }, "environmentId": { "type": "string" }, "description": { "type": "string" } } }