From a67a8981ce6138d2aaf37ef497cad184f9ef2b87 Mon Sep 17 00:00:00 2001 From: Sergei Ivashchenko Date: Fri, 21 Feb 2025 15:41:47 +0000 Subject: [PATCH] feat: LEAP-1833: Pause limits settings for project (#63) Co-authored-by: Jo Booth --- fern/openapi/openapi.yaml | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) diff --git a/fern/openapi/openapi.yaml b/fern/openapi/openapi.yaml index f62c202..f4fd8e5 100644 --- a/fern/openapi/openapi.yaml +++ b/fern/openapi/openapi.yaml @@ -2497,6 +2497,8 @@ paths: finished_task_number: 10 queue_total: 10 queue_done: 100 + annotation_limit_count: 10 + annotation_limit_percent: 50 tags: - Projects x-fern-sdk-group-name: projects @@ -2569,6 +2571,14 @@ paths: title: maximum_annotations description: Maximum annotations per task type: integer + annotation_limit_count: + title: annotation_limit_count + description: Maximum number of annotations per annotator + type: integer + annotation_limit_percent: + title: annotation_limit_percent + description: Maximum percentage of annotations per annotator + type: float color: title: color description: Project color in HEX format @@ -8514,6 +8524,15 @@ components: annotations per task is equal or greater to this value, the task is completed (is_labeled=True) type: integer + annotation_limit_count: + title: Annotation limit count + description: Maximum number of tasks that can be annotated by a single annotator in this project + pause + type: integer + annotation_limit_percent: + title: Annotation limit percent + description: Maximum percentage of tasks in this project that can be annotated by a single annotator + type: float is_published: title: Published description: Whether or not the project is published to annotators