{
  "components": {
    "parameters": {
      "AttachmentID": {
        "description": "The attachment id.",
        "in": "path",
        "name": "attachment_id",
        "required": true,
        "schema": {
          "minimum": 1,
          "type": "integer"
        }
      },
      "CategoryID": {
        "description": "The category id.",
        "in": "path",
        "name": "category_id",
        "required": true,
        "schema": {
          "minimum": 1,
          "type": "integer"
        }
      },
      "CollectionID": {
        "description": "The collection id.",
        "in": "path",
        "name": "collection_id",
        "required": true,
        "schema": {
          "minimum": 1,
          "type": "integer"
        }
      },
      "CommentID": {
        "description": "The comment id.",
        "in": "path",
        "name": "comment_id",
        "required": true,
        "schema": {
          "minimum": 1,
          "type": "integer"
        }
      },
      "CustomFieldID": {
        "description": "The custom field id.",
        "in": "path",
        "name": "custom_field_id",
        "required": true,
        "schema": {
          "minimum": 1,
          "type": "integer"
        }
      },
      "DiagramID": {
        "description": "The diagram id.",
        "in": "path",
        "name": "diagram_id",
        "required": true,
        "schema": {
          "minimum": 1,
          "type": "integer"
        }
      },
      "IncludeWatermark": {
        "description": "Include the current item-change watermark in response metadata.",
        "in": "query",
        "name": "include_watermark",
        "schema": {
          "default": false,
          "type": "boolean"
        }
      },
      "ItemAssigneeFilter": {
        "description": "Restrict items to one assignee.",
        "in": "query",
        "name": "assignee_id",
        "schema": {
          "minimum": 0,
          "type": "integer"
        }
      },
      "ItemChangeWatermark": {
        "description": "Return changes after this non-negative item-change watermark. Omit it to request a full-reload decision.",
        "in": "query",
        "name": "since",
        "schema": {
          "format": "int64",
          "minimum": 0,
          "type": "integer"
        }
      },
      "ItemCollectionFilter": {
        "description": "Evaluate the saved collection and restrict results to its membership. Takes precedence over workspace_id.",
        "in": "query",
        "name": "collection_id",
        "schema": {
          "minimum": 1,
          "type": "integer"
        }
      },
      "ItemCompletedSinceFilter": {
        "description": "For completed statuses, include only items completed on or after this ISO date; incomplete items remain included.",
        "in": "query",
        "name": "completed_since",
        "schema": {
          "format": "date",
          "type": "string"
        }
      },
      "ItemCreatedSinceFilter": {
        "description": "Include items created on or after this ISO date.",
        "in": "query",
        "name": "created_since",
        "schema": {
          "format": "date",
          "type": "string"
        }
      },
      "ItemCursor": {
        "description": "Opaque continuation cursor returned in meta.next_cursor. Supported only for an unfiltered workspace list.",
        "in": "query",
        "name": "cursor",
        "schema": {
          "minLength": 1,
          "type": "string"
        }
      },
      "ItemDescendantDepth": {
        "description": "Maximum descendant depth. Zero means unlimited.",
        "in": "query",
        "name": "max_depth",
        "schema": {
          "default": 0,
          "minimum": 0,
          "type": "integer"
        }
      },
      "ItemDetailSurface": {
        "description": "Use `mobile` to omit desktop-only detail sections.",
        "in": "query",
        "name": "surface",
        "schema": {
          "enum": [
            "mobile"
          ],
          "type": "string"
        }
      },
      "ItemFields": {
        "description": "Use `summary` to omit item descriptions from list rows.",
        "in": "query",
        "name": "fields",
        "schema": {
          "enum": [
            "summary"
          ],
          "type": "string"
        }
      },
      "ItemID": {
        "description": "The item id.",
        "in": "path",
        "name": "item_id",
        "required": true,
        "schema": {
          "minimum": 1,
          "type": "integer"
        }
      },
      "ItemIDFilter": {
        "description": "Restrict the collection to one item ID.",
        "in": "query",
        "name": "id",
        "schema": {
          "minimum": 0,
          "type": "integer"
        }
      },
      "ItemIDs": {
        "description": "Comma-separated item IDs. Duplicate IDs are collapsed; at most 500 unique IDs are accepted. Omission returns an empty result.",
        "example": "12,18,27",
        "in": "query",
        "name": "ids",
        "schema": {
          "pattern": "^[1-9][0-9]*(,[1-9][0-9]*)*$",
          "type": "string"
        }
      },
      "ItemIterationFilter": {
        "description": "Restrict items to one iteration.",
        "in": "query",
        "name": "iteration_id",
        "schema": {
          "minimum": 0,
          "type": "integer"
        }
      },
      "ItemLevelFilter": {
        "description": "Restrict items to an exact hierarchy level.",
        "in": "query",
        "name": "level",
        "schema": {
          "minimum": 0,
          "type": "integer"
        }
      },
      "ItemMaxLevelFilter": {
        "description": "Restrict items to this hierarchy level or shallower.",
        "in": "query",
        "name": "max_level",
        "schema": {
          "minimum": 0,
          "type": "integer"
        }
      },
      "ItemMilestoneFilter": {
        "description": "Restrict items to one milestone.",
        "in": "query",
        "name": "milestone_id",
        "schema": {
          "minimum": 0,
          "type": "integer"
        }
      },
      "ItemParentFilter": {
        "description": "Restrict items to one parent ID. Use the literal `null` for top-level items.",
        "example": "null",
        "in": "query",
        "name": "parent_id",
        "schema": {
          "pattern": "^(null|[0-9]+)$",
          "type": "string"
        }
      },
      "ItemPriorityFilter": {
        "description": "Restrict items to one priority.",
        "in": "query",
        "name": "priority_id",
        "schema": {
          "minimum": 0,
          "type": "integer"
        }
      },
      "ItemQL": {
        "description": "QL expression used as the primary item filter. When present, structured filters other than search and status inclusion/exclusion are ignored.",
        "in": "query",
        "name": "ql",
        "schema": {
          "minLength": 1,
          "type": "string"
        }
      },
      "ItemRollupDepth": {
        "description": "Maximum hierarchy depth included in the time rollup.",
        "in": "query",
        "name": "max_depth",
        "schema": {
          "default": 10,
          "maximum": 30,
          "minimum": 1,
          "type": "integer"
        }
      },
      "ItemSearch": {
        "description": "Case-insensitive text search applied to item content.",
        "in": "query",
        "name": "search",
        "schema": {
          "type": "string"
        }
      },
      "ItemSort": {
        "description": "Sort by a system field key or numeric custom-field ID. Prefix with `-` for descending order.",
        "example": "-updated_at",
        "in": "query",
        "name": "sort",
        "schema": {
          "type": "string"
        }
      },
      "ItemStatusExcludeFilter": {
        "description": "Comma-separated status IDs to exclude.",
        "example": "4,5",
        "in": "query",
        "name": "status_id_not",
        "schema": {
          "pattern": "^[1-9][0-9]*(,[1-9][0-9]*)*$",
          "type": "string"
        }
      },
      "ItemStatusFilter": {
        "description": "Comma-separated status IDs to include.",
        "example": "1,3",
        "in": "query",
        "name": "status_id",
        "schema": {
          "pattern": "^[1-9][0-9]*(,[1-9][0-9]*)*$",
          "type": "string"
        }
      },
      "ItemSubQL": {
        "description": "Additional QL expression combined with the primary collection or QL filter.",
        "in": "query",
        "name": "sub_ql",
        "schema": {
          "minLength": 1,
          "type": "string"
        }
      },
      "ItemTypeFilter": {
        "description": "Restrict items to one item type.",
        "in": "query",
        "name": "item_type_id",
        "schema": {
          "minimum": 0,
          "type": "integer"
        }
      },
      "ItemTypeID": {
        "description": "Filter by item type identifier.",
        "in": "path",
        "name": "item_type_id",
        "required": true,
        "schema": {
          "minimum": 1,
          "type": "integer"
        }
      },
      "ItemTypeQuery": {
        "description": "Filter by item type identifier.",
        "in": "query",
        "name": "item_type_id",
        "schema": {
          "minimum": 1,
          "type": "integer"
        }
      },
      "ItemWorkspaceFilter": {
        "description": "Restrict items to this workspace. Ignored when collection_id is present.",
        "in": "query",
        "name": "workspace_id",
        "schema": {
          "minimum": 1,
          "type": "integer"
        }
      },
      "LabelID": {
        "description": "The label id.",
        "in": "path",
        "name": "label_id",
        "required": true,
        "schema": {
          "minimum": 1,
          "type": "integer"
        }
      },
      "Page": {
        "description": "Page number, starting at 1.",
        "in": "query",
        "name": "page",
        "schema": {
          "default": 1,
          "minimum": 1,
          "type": "integer"
        }
      },
      "PageID": {
        "description": "The page id.",
        "in": "path",
        "name": "page_id",
        "required": true,
        "schema": {
          "minimum": 1,
          "type": "integer"
        }
      },
      "PageSize": {
        "description": "Maximum number of results to return on one page.",
        "in": "query",
        "name": "page_size",
        "schema": {
          "default": 50,
          "maximum": 100,
          "minimum": 1,
          "type": "integer"
        }
      },
      "PathActionId": {
        "description": "The action identifier.",
        "in": "path",
        "name": "action_id",
        "required": true,
        "schema": {
          "minimum": 1,
          "type": "integer"
        }
      },
      "PathApprovalId": {
        "description": "The approval identifier.",
        "in": "path",
        "name": "approval_id",
        "required": true,
        "schema": {
          "minimum": 1,
          "type": "integer"
        }
      },
      "PathApprovalSetId": {
        "description": "The approval set identifier.",
        "in": "path",
        "name": "approval_set_id",
        "required": true,
        "schema": {
          "minimum": 1,
          "type": "integer"
        }
      },
      "PathAssetId": {
        "description": "The asset identifier.",
        "in": "path",
        "name": "asset_id",
        "required": true,
        "schema": {
          "minimum": 1,
          "type": "integer"
        }
      },
      "PathAssetSetId": {
        "description": "The asset set identifier.",
        "in": "path",
        "name": "asset_set_id",
        "required": true,
        "schema": {
          "minimum": 1,
          "type": "integer"
        }
      },
      "PathAssetTypeId": {
        "description": "The asset type identifier.",
        "in": "path",
        "name": "asset_type_id",
        "required": true,
        "schema": {
          "minimum": 1,
          "type": "integer"
        }
      },
      "PathAssignmentId": {
        "description": "The assignment identifier.",
        "in": "path",
        "name": "assignment_id",
        "required": true,
        "schema": {
          "minimum": 1,
          "type": "integer"
        }
      },
      "PathAttachmentId": {
        "description": "The attachment identifier.",
        "in": "path",
        "name": "attachment_id",
        "required": true,
        "schema": {
          "minimum": 1,
          "type": "integer"
        }
      },
      "PathCategoryId": {
        "description": "The category identifier.",
        "in": "path",
        "name": "category_id",
        "required": true,
        "schema": {
          "minimum": 1,
          "type": "integer"
        }
      },
      "PathCollectionId": {
        "description": "The collection identifier.",
        "in": "path",
        "name": "collection_id",
        "required": true,
        "schema": {
          "minimum": 1,
          "type": "integer"
        }
      },
      "PathCommentId": {
        "description": "The comment identifier.",
        "in": "path",
        "name": "comment_id",
        "required": true,
        "schema": {
          "minimum": 1,
          "type": "integer"
        }
      },
      "PathConditionSetId": {
        "description": "The condition set identifier.",
        "in": "path",
        "name": "condition_set_id",
        "required": true,
        "schema": {
          "minimum": 1,
          "type": "integer"
        }
      },
      "PathConfigId": {
        "description": "The config identifier.",
        "in": "path",
        "name": "config_id",
        "required": true,
        "schema": {
          "minimum": 1,
          "type": "integer"
        }
      },
      "PathCustomFieldId": {
        "description": "The custom field identifier.",
        "in": "path",
        "name": "custom_field_id",
        "required": true,
        "schema": {
          "minimum": 1,
          "type": "integer"
        }
      },
      "PathDiagramId": {
        "description": "The diagram identifier.",
        "in": "path",
        "name": "diagram_id",
        "required": true,
        "schema": {
          "minimum": 1,
          "type": "integer"
        }
      },
      "PathFieldId": {
        "description": "The field identifier.",
        "in": "path",
        "name": "field_id",
        "required": true,
        "schema": {
          "minimum": 1,
          "type": "integer"
        }
      },
      "PathFolderId": {
        "description": "The folder identifier.",
        "in": "path",
        "name": "folder_id",
        "required": true,
        "schema": {
          "minimum": 1,
          "type": "integer"
        }
      },
      "PathItemId": {
        "description": "The item identifier.",
        "in": "path",
        "name": "item_id",
        "required": true,
        "schema": {
          "minimum": 1,
          "type": "integer"
        }
      },
      "PathItemNumber": {
        "description": "The workspace-scoped item number.",
        "in": "path",
        "name": "item_number",
        "required": true,
        "schema": {
          "minimum": 1,
          "type": "integer"
        }
      },
      "PathItemTypeId": {
        "description": "The item type identifier.",
        "in": "path",
        "name": "item_type_id",
        "required": true,
        "schema": {
          "minimum": 1,
          "type": "integer"
        }
      },
      "PathIterationId": {
        "description": "The iteration identifier.",
        "in": "path",
        "name": "iteration_id",
        "required": true,
        "schema": {
          "minimum": 1,
          "type": "integer"
        }
      },
      "PathJobId": {
        "description": "The job identifier.",
        "in": "path",
        "name": "job_id",
        "required": true,
        "schema": {
          "minimum": 1,
          "type": "integer"
        }
      },
      "PathLabelId": {
        "description": "The label identifier.",
        "in": "path",
        "name": "label_id",
        "required": true,
        "schema": {
          "minimum": 1,
          "type": "integer"
        }
      },
      "PathLinkId": {
        "description": "The link identifier.",
        "in": "path",
        "name": "link_id",
        "required": true,
        "schema": {
          "minimum": 1,
          "type": "integer"
        }
      },
      "PathLinkTypeId": {
        "description": "The link type identifier.",
        "in": "path",
        "name": "link_type_id",
        "required": true,
        "schema": {
          "minimum": 1,
          "type": "integer"
        }
      },
      "PathMilestoneId": {
        "description": "The milestone identifier.",
        "in": "path",
        "name": "milestone_id",
        "required": true,
        "schema": {
          "minimum": 1,
          "type": "integer"
        }
      },
      "PathPageId": {
        "description": "The page identifier.",
        "in": "path",
        "name": "page_id",
        "required": true,
        "schema": {
          "minimum": 1,
          "type": "integer"
        }
      },
      "PathPermissionId": {
        "description": "The permission identifier.",
        "in": "path",
        "name": "permission_id",
        "required": true,
        "schema": {
          "minimum": 1,
          "type": "integer"
        }
      },
      "PathPlanId": {
        "description": "The plan identifier.",
        "in": "path",
        "name": "plan_id",
        "required": true,
        "schema": {
          "minimum": 1,
          "type": "integer"
        }
      },
      "PathPriorityId": {
        "description": "The priority identifier.",
        "in": "path",
        "name": "priority_id",
        "required": true,
        "schema": {
          "minimum": 1,
          "type": "integer"
        }
      },
      "PathProjectId": {
        "description": "The project identifier.",
        "in": "path",
        "name": "project_id",
        "required": true,
        "schema": {
          "minimum": 1,
          "type": "integer"
        }
      },
      "PathResultId": {
        "description": "The result identifier.",
        "in": "path",
        "name": "result_id",
        "required": true,
        "schema": {
          "minimum": 1,
          "type": "integer"
        }
      },
      "PathRevisionId": {
        "description": "The revision identifier.",
        "in": "path",
        "name": "revision_id",
        "required": true,
        "schema": {
          "minimum": 1,
          "type": "integer"
        }
      },
      "PathRoleId": {
        "description": "The role identifier.",
        "in": "path",
        "name": "role_id",
        "required": true,
        "schema": {
          "minimum": 1,
          "type": "integer"
        }
      },
      "PathRunId": {
        "description": "The run identifier.",
        "in": "path",
        "name": "run_id",
        "required": true,
        "schema": {
          "minimum": 1,
          "type": "integer"
        }
      },
      "PathSkillId": {
        "description": "The skill identifier.",
        "in": "path",
        "name": "skill_id",
        "required": true,
        "schema": {
          "minimum": 1,
          "type": "integer"
        }
      },
      "PathStatusId": {
        "description": "The status identifier.",
        "in": "path",
        "name": "status_id",
        "required": true,
        "schema": {
          "minimum": 1,
          "type": "integer"
        }
      },
      "PathStepId": {
        "description": "The step identifier.",
        "in": "path",
        "name": "step_id",
        "required": true,
        "schema": {
          "minimum": 1,
          "type": "integer"
        }
      },
      "PathTemplateId": {
        "description": "The template identifier.",
        "in": "path",
        "name": "template_id",
        "required": true,
        "schema": {
          "minimum": 1,
          "type": "integer"
        }
      },
      "PathTemplateKey": {
        "description": "The action template key.",
        "in": "path",
        "name": "template_key",
        "required": true,
        "schema": {
          "minLength": 1,
          "type": "string"
        }
      },
      "PathTestCaseId": {
        "description": "The test case identifier.",
        "in": "path",
        "name": "test_case_id",
        "required": true,
        "schema": {
          "minimum": 1,
          "type": "integer"
        }
      },
      "PathTransitionId": {
        "description": "The transition identifier.",
        "in": "path",
        "name": "transition_id",
        "required": true,
        "schema": {
          "minimum": 1,
          "type": "integer"
        }
      },
      "PathUserId": {
        "description": "The user identifier.",
        "in": "path",
        "name": "user_id",
        "required": true,
        "schema": {
          "minimum": 1,
          "type": "integer"
        }
      },
      "PathWorkflowId": {
        "description": "The workflow identifier.",
        "in": "path",
        "name": "workflow_id",
        "required": true,
        "schema": {
          "minimum": 1,
          "type": "integer"
        }
      },
      "PathWorklogId": {
        "description": "The worklog identifier.",
        "in": "path",
        "name": "worklog_id",
        "required": true,
        "schema": {
          "minimum": 1,
          "type": "integer"
        }
      },
      "PathWorkspaceId": {
        "description": "The workspace identifier.",
        "in": "path",
        "name": "workspace_id",
        "required": true,
        "schema": {
          "minimum": 1,
          "type": "integer"
        }
      },
      "PathWorkspaceKey": {
        "description": "The workspace key.",
        "in": "path",
        "name": "workspace_key",
        "required": true,
        "schema": {
          "minLength": 1,
          "type": "string"
        }
      },
      "PermissionID": {
        "description": "The permission id.",
        "in": "path",
        "name": "permission_id",
        "required": true,
        "schema": {
          "minimum": 1,
          "type": "integer"
        }
      },
      "PriorityID": {
        "description": "The priority id.",
        "in": "path",
        "name": "priority_id",
        "required": true,
        "schema": {
          "minimum": 1,
          "type": "integer"
        }
      },
      "ProjectID": {
        "description": "The project id.",
        "in": "path",
        "name": "project_id",
        "required": true,
        "schema": {
          "minimum": 1,
          "type": "integer"
        }
      },
      "RevisionID": {
        "description": "The revision id.",
        "in": "path",
        "name": "revision_id",
        "required": true,
        "schema": {
          "minimum": 1,
          "type": "integer"
        }
      },
      "StatusID": {
        "description": "The status id.",
        "in": "path",
        "name": "status_id",
        "required": true,
        "schema": {
          "minimum": 1,
          "type": "integer"
        }
      },
      "TargetItemType": {
        "description": "Item type to evaluate as the migration target.",
        "in": "query",
        "name": "target_item_type_id",
        "required": true,
        "schema": {
          "minimum": 1,
          "type": "integer"
        }
      },
      "TemplateID": {
        "description": "The template id.",
        "in": "path",
        "name": "template_id",
        "required": true,
        "schema": {
          "minimum": 1,
          "type": "integer"
        }
      },
      "TestRunPlanFilter": {
        "description": "Return only runs created from this test plan.",
        "in": "query",
        "name": "plan_id",
        "required": false,
        "schema": {
          "minimum": 1,
          "type": "integer"
        }
      },
      "UserID": {
        "description": "The user id.",
        "in": "path",
        "name": "user_id",
        "required": true,
        "schema": {
          "minimum": 1,
          "type": "integer"
        }
      },
      "WorkflowID": {
        "description": "The workflow id.",
        "in": "path",
        "name": "workflow_id",
        "required": true,
        "schema": {
          "minimum": 1,
          "type": "integer"
        }
      },
      "WorklogID": {
        "description": "The worklog id.",
        "in": "path",
        "name": "worklog_id",
        "required": true,
        "schema": {
          "minimum": 1,
          "type": "integer"
        }
      },
      "WorkspaceID": {
        "description": "The workspace id.",
        "in": "path",
        "name": "workspace_id",
        "required": true,
        "schema": {
          "minimum": 1,
          "type": "integer"
        }
      }
    },
    "responses": {
      "AuthenticationError": {
        "content": {
          "application/json": {
            "schema": {
              "$ref": "#/components/schemas/ErrorDocument"
            }
          }
        },
        "description": "Authentication required or invalid"
      },
      "ConflictError": {
        "content": {
          "application/json": {
            "schema": {
              "$ref": "#/components/schemas/ErrorDocument"
            }
          }
        },
        "description": "The requested mutation conflicts with current item state"
      },
      "InternalError": {
        "content": {
          "application/json": {
            "schema": {
              "$ref": "#/components/schemas/ErrorDocument"
            }
          }
        },
        "description": "Unexpected server error"
      },
      "InvalidRequestError": {
        "content": {
          "application/json": {
            "schema": {
              "$ref": "#/components/schemas/ErrorDocument"
            }
          }
        },
        "description": "Request validation failed"
      },
      "ItemArrayResponse": {
        "content": {
          "application/json": {
            "schema": {
              "$ref": "#/components/schemas/ItemArrayDocument"
            }
          }
        },
        "description": "Work item collection"
      },
      "ItemBulkResponse": {
        "content": {
          "application/json": {
            "schema": {
              "$ref": "#/components/schemas/ItemBulkDocument"
            }
          }
        },
        "description": "Atomic bulk item-update result"
      },
      "ItemChangesResponse": {
        "content": {
          "application/json": {
            "schema": {
              "$ref": "#/components/schemas/ItemChangesDocument"
            }
          }
        },
        "description": "Incremental item-list changes"
      },
      "ItemDeleteInfoResponse": {
        "content": {
          "application/json": {
            "schema": {
              "$ref": "#/components/schemas/ItemDeleteInfoDocument"
            }
          }
        },
        "description": "Item deletion impact"
      },
      "ItemDetailSummaryResponse": {
        "content": {
          "application/json": {
            "schema": {
              "$ref": "#/components/schemas/ItemDetailSummaryDocument"
            }
          }
        },
        "description": "Item-detail bootstrap document"
      },
      "ItemHistoryResponse": {
        "content": {
          "application/json": {
            "schema": {
              "$ref": "#/components/schemas/ItemHistoryDocument"
            }
          }
        },
        "description": "Item field-change history"
      },
      "ItemMutationCountResponse": {
        "content": {
          "application/json": {
            "schema": {
              "$ref": "#/components/schemas/ItemMutationCountDocument"
            }
          }
        },
        "description": "Number of affected items"
      },
      "ItemPageResponse": {
        "content": {
          "application/json": {
            "schema": {
              "$ref": "#/components/schemas/ItemPageDocument"
            }
          }
        },
        "description": "Paginated work items with list metadata"
      },
      "ItemResponse": {
        "content": {
          "application/json": {
            "schema": {
              "$ref": "#/components/schemas/ItemDocument"
            }
          }
        },
        "description": "Work item"
      },
      "ItemStatusDurationsResponse": {
        "content": {
          "application/json": {
            "schema": {
              "$ref": "#/components/schemas/ItemStatusDurationsDocument"
            }
          }
        },
        "description": "Time accumulated in item statuses"
      },
      "ItemTimeRollupResponse": {
        "content": {
          "application/json": {
            "schema": {
              "$ref": "#/components/schemas/ItemTimeRollupDocument"
            }
          }
        },
        "description": "Hierarchy time rollup"
      },
      "ItemTransitionResponse": {
        "content": {
          "application/json": {
            "schema": {
              "$ref": "#/components/schemas/ItemTransitionDocument"
            }
          }
        },
        "description": "Completed item transition"
      },
      "ItemTransitionSummaryResponse": {
        "content": {
          "application/json": {
            "schema": {
              "$ref": "#/components/schemas/ItemTransitionSummaryDocument"
            }
          }
        },
        "description": "Currently available item transitions"
      },
      "ItemTypeChangeAnalysisResponse": {
        "content": {
          "application/json": {
            "schema": {
              "$ref": "#/components/schemas/ItemTypeChangeAnalysisDocument"
            }
          }
        },
        "description": "Item-type migration analysis"
      },
      "ItemWatchResponse": {
        "content": {
          "application/json": {
            "schema": {
              "$ref": "#/components/schemas/ItemWatchDocument"
            }
          }
        },
        "description": "Authenticated user's item-watch state"
      },
      "ItemWorkspaceMovePreviewResponse": {
        "content": {
          "application/json": {
            "schema": {
              "$ref": "#/components/schemas/ItemWorkspaceMovePreviewDocument"
            }
          }
        },
        "description": "Preview of a cross-workspace item move"
      },
      "ItemWorkspaceMoveResponse": {
        "content": {
          "application/json": {
            "schema": {
              "$ref": "#/components/schemas/ItemWorkspaceMoveDocument"
            }
          }
        },
        "description": "Completed cross-workspace item move"
      },
      "NotFoundError": {
        "content": {
          "application/json": {
            "schema": {
              "$ref": "#/components/schemas/ErrorDocument"
            }
          }
        },
        "description": "Resource not found"
      },
      "PayloadTooLargeError": {
        "content": {
          "application/json": {
            "schema": {
              "$ref": "#/components/schemas/ErrorDocument"
            }
          }
        },
        "description": "The request body exceeds the operation's documented size limit."
      },
      "PermissionError": {
        "content": {
          "application/json": {
            "schema": {
              "$ref": "#/components/schemas/ErrorDocument"
            }
          }
        },
        "description": "Required token scope is missing"
      },
      "RateLimitError": {
        "content": {
          "application/json": {
            "schema": {
              "$ref": "#/components/schemas/ErrorDocument"
            }
          }
        },
        "description": "The authenticated principal has too many concurrent API requests.",
        "headers": {
          "Retry-After": {
            "description": "Seconds to wait before retrying.",
            "schema": {
              "minimum": 1,
              "type": "integer"
            }
          }
        }
      },
      "RoadmapHierarchyDatesResponse": {
        "content": {
          "application/json": {
            "schema": {
              "$ref": "#/components/schemas/RoadmapHierarchyDatesDocument"
            }
          }
        },
        "description": "Roadmap hierarchy date projection"
      },
      "TestRunArrayResponse": {
        "content": {
          "application/json": {
            "schema": {
              "$ref": "#/components/schemas/TestRunArrayDocument"
            }
          }
        },
        "description": "Test-run collection"
      },
      "TestRunPageResponse": {
        "content": {
          "application/json": {
            "schema": {
              "$ref": "#/components/schemas/TestRunPageDocument"
            }
          }
        },
        "description": "Paginated test runs"
      },
      "TestRunResponse": {
        "content": {
          "application/json": {
            "schema": {
              "$ref": "#/components/schemas/TestRunDocument"
            }
          }
        },
        "description": "Test run"
      },
      "TestRunTemplatePageResponse": {
        "content": {
          "application/json": {
            "schema": {
              "$ref": "#/components/schemas/TestRunTemplatePageDocument"
            }
          }
        },
        "description": "Paginated test-run templates"
      },
      "TestRunTemplateResponse": {
        "content": {
          "application/json": {
            "schema": {
              "$ref": "#/components/schemas/TestRunTemplateDocument"
            }
          }
        },
        "description": "Test-run template"
      },
      "UnsupportedMediaTypeError": {
        "content": {
          "application/json": {
            "schema": {
              "$ref": "#/components/schemas/ErrorDocument"
            }
          }
        },
        "description": "The request Content-Type is not supported by this operation."
      }
    },
    "schemas": {
      "CalendarScheduleEntry": {
        "additionalProperties": false,
        "description": "The authenticated user's calendar placement for an item.",
        "properties": {
          "created_at": {
            "description": "Creation timestamp.",
            "format": "date-time",
            "type": "string"
          },
          "duration_minutes": {
            "description": "Optional scheduled duration in minutes.",
            "minimum": 0,
            "type": "integer"
          },
          "notes": {
            "description": "Optional scheduling notes.",
            "type": "string"
          },
          "scheduled_date": {
            "description": "Scheduled calendar date.",
            "format": "date",
            "type": "string"
          },
          "scheduled_time": {
            "description": "Optional local start time in HH:MM form.",
            "pattern": "^([01][0-9]|2[0-3]):[0-5][0-9]$",
            "type": "string"
          },
          "user_id": {
            "description": "User whose calendar contains the entry.",
            "minimum": 1,
            "type": "integer"
          },
          "workspace_id": {
            "description": "Personal workspace containing the calendar entry.",
            "minimum": 1,
            "type": "integer"
          }
        },
        "required": [
          "user_id",
          "workspace_id",
          "scheduled_date",
          "created_at"
        ],
        "type": "object"
      },
      "DataDocument": {
        "properties": {
          "data": {}
        },
        "required": [
          "data"
        ],
        "type": "object"
      },
      "DeleteItemsItemIdWatchResult": {
        "additionalProperties": false,
        "properties": {
          "data": {
            "additionalProperties": false,
            "properties": {
              "item_id": {
                "description": "The item id value.",
                "type": "integer"
              },
              "watching": {
                "description": "The watching value.",
                "type": "boolean"
              }
            },
            "required": [
              "item_id",
              "watching"
            ],
            "type": "object"
          }
        },
        "required": [
          "data"
        ],
        "type": "object"
      },
      "ErrorContent": {
        "properties": {
          "code": {
            "type": "string"
          },
          "details": {},
          "message": {
            "type": "string"
          }
        },
        "required": [
          "code",
          "message"
        ],
        "type": "object"
      },
      "ErrorDocument": {
        "properties": {
          "error": {
            "$ref": "#/components/schemas/ErrorContent"
          },
          "request_id": {
            "type": "string"
          }
        },
        "required": [
          "error",
          "request_id"
        ],
        "type": "object"
      },
      "GetActionTemplatesResult": {
        "additionalProperties": false,
        "properties": {
          "data": {
            "items": {
              "additionalProperties": false,
              "properties": {
                "category": {
                  "description": "The category value.",
                  "type": "string"
                },
                "description": {
                  "description": "The description value.",
                  "type": "string"
                },
                "key": {
                  "description": "The key value.",
                  "type": "string"
                },
                "name": {
                  "description": "The name value.",
                  "type": "string"
                },
                "node_count": {
                  "description": "The node count value.",
                  "type": "integer"
                },
                "trigger_type": {
                  "description": "The trigger type value.",
                  "type": "string"
                }
              },
              "required": [
                "key",
                "name",
                "node_count",
                "trigger_type"
              ],
              "type": "object"
            },
            "type": "array"
          }
        },
        "required": [
          "data"
        ],
        "type": "object"
      },
      "GetAgentRunsRunIdEventsResult": {
        "additionalProperties": false,
        "properties": {
          "data": {
            "additionalProperties": false,
            "properties": {
              "events": {
                "description": "The events value.",
                "items": {
                  "additionalProperties": false,
                  "nullable": true,
                  "properties": {
                    "id": {
                      "description": "The id value.",
                      "type": "integer"
                    },
                    "payload_json": {
                      "description": "The payload json value.",
                      "type": "string"
                    },
                    "run_id": {
                      "description": "The run id value.",
                      "type": "integer"
                    },
                    "ts": {
                      "description": "The ts value.",
                      "format": "date-time",
                      "type": "string"
                    },
                    "type": {
                      "description": "The type value.",
                      "type": "string"
                    }
                  },
                  "required": [
                    "id",
                    "payload_json",
                    "run_id",
                    "ts",
                    "type"
                  ],
                  "type": "object"
                },
                "type": "array"
              },
              "has_more": {
                "description": "The has more value.",
                "type": "boolean"
              },
              "next_cursor": {
                "description": "The next cursor value.",
                "type": "string"
              }
            },
            "required": [
              "events",
              "has_more"
            ],
            "type": "object"
          }
        },
        "required": [
          "data"
        ],
        "type": "object"
      },
      "GetAgentRunsRunIdResult": {
        "additionalProperties": false,
        "properties": {
          "data": {
            "additionalProperties": false,
            "nullable": true,
            "properties": {
              "acting_user_id": {
                "description": "The acting user id value.",
                "nullable": true,
                "type": "integer"
              },
              "binding_id": {
                "description": "The binding id value.",
                "nullable": true,
                "type": "integer"
              },
              "chain_depth": {
                "description": "The chain depth value.",
                "type": "integer"
              },
              "container_id": {
                "description": "The container id value.",
                "type": "string"
              },
              "created_at": {
                "description": "The created at value.",
                "format": "date-time",
                "type": "string"
              },
              "ended_at": {
                "description": "The ended at value.",
                "format": "date-time",
                "nullable": true,
                "type": "string"
              },
              "error": {
                "description": "The error value.",
                "type": "string"
              },
              "grants_json": {
                "description": "The grants json value.",
                "type": "string"
              },
              "id": {
                "description": "The id value.",
                "type": "integer"
              },
              "immediate_trigger_user_id": {
                "description": "The immediate trigger user id value.",
                "nullable": true,
                "type": "integer"
              },
              "is_ephemeral": {
                "description": "The is ephemeral value.",
                "type": "boolean"
              },
              "item_id": {
                "description": "The item id value.",
                "nullable": true,
                "type": "integer"
              },
              "job_image": {
                "description": "The job image value.",
                "type": "string"
              },
              "job_kind": {
                "description": "The job kind value.",
                "type": "string"
              },
              "parent_run_id": {
                "description": "The parent run id value.",
                "nullable": true,
                "type": "integer"
              },
              "profile_snapshot_json": {
                "description": "The profile snapshot json value.",
                "type": "string"
              },
              "profile_version": {
                "description": "The profile version value.",
                "type": "integer"
              },
              "queued_at": {
                "description": "The queued at value.",
                "format": "date-time",
                "type": "string"
              },
              "root_initiator_user_id": {
                "description": "The root initiator user id value.",
                "nullable": true,
                "type": "integer"
              },
              "runner_id": {
                "description": "The runner id value.",
                "nullable": true,
                "type": "integer"
              },
              "session_id": {
                "description": "The session id value.",
                "type": "string"
              },
              "started_at": {
                "description": "The started at value.",
                "format": "date-time",
                "nullable": true,
                "type": "string"
              },
              "status": {
                "description": "The status value.",
                "type": "string"
              },
              "target_pool_id": {
                "description": "The target pool id value.",
                "nullable": true,
                "type": "integer"
              },
              "trigger": {
                "additionalProperties": false,
                "description": "The trigger value.",
                "nullable": true,
                "properties": {
                  "author_id": {
                    "description": "The author id value.",
                    "type": "integer"
                  },
                  "comment_id": {
                    "description": "The comment id value.",
                    "type": "integer"
                  },
                  "continue_comment_id": {
                    "description": "The continue comment id value.",
                    "type": "integer"
                  },
                  "continue_event_id": {
                    "description": "The continue event id value.",
                    "type": "integer"
                  },
                  "continue_head_branch": {
                    "description": "The continue head branch value.",
                    "type": "string"
                  },
                  "continue_pr_number": {
                    "description": "The continue pr number value.",
                    "type": "integer"
                  },
                  "continue_repo_slug": {
                    "description": "The continue repo slug value.",
                    "type": "string"
                  },
                  "instruction": {
                    "description": "The instruction value.",
                    "type": "string"
                  },
                  "kind": {
                    "description": "The kind value.",
                    "type": "string"
                  }
                },
                "type": "object"
              },
              "triggered_by_user_id": {
                "description": "The triggered by user id value.",
                "nullable": true,
                "type": "integer"
              },
              "updated_at": {
                "description": "The updated at value.",
                "format": "date-time",
                "type": "string"
              },
              "workspace_id": {
                "description": "The workspace id value.",
                "type": "integer"
              }
            },
            "required": [
              "created_at",
              "id",
              "queued_at",
              "status",
              "updated_at",
              "workspace_id"
            ],
            "type": "object"
          }
        },
        "required": [
          "data"
        ],
        "type": "object"
      },
      "GetAgentRunsRunIdUsageResult": {
        "additionalProperties": false,
        "properties": {
          "data": {
            "additionalProperties": false,
            "properties": {
              "cache_read_tokens": {
                "description": "The cache read tokens value.",
                "type": "integer"
              },
              "cache_write_tokens": {
                "description": "The cache write tokens value.",
                "type": "integer"
              },
              "calls": {
                "description": "The calls value.",
                "type": "integer"
              },
              "completion_tokens": {
                "description": "The completion tokens value.",
                "type": "integer"
              },
              "cost_usd": {
                "description": "The cost usd value.",
                "nullable": true,
                "type": "number"
              },
              "prompt_tokens": {
                "description": "The prompt tokens value.",
                "type": "integer"
              },
              "reasoning_tokens": {
                "description": "The reasoning tokens value.",
                "type": "integer"
              },
              "total_tokens": {
                "description": "The total tokens value.",
                "type": "integer"
              }
            },
            "required": [
              "cache_read_tokens",
              "cache_write_tokens",
              "calls",
              "completion_tokens",
              "prompt_tokens",
              "reasoning_tokens",
              "total_tokens"
            ],
            "type": "object"
          }
        },
        "required": [
          "data"
        ],
        "type": "object"
      },
      "GetApprovalSetsApprovalSetIdResult": {
        "additionalProperties": false,
        "properties": {
          "data": {
            "additionalProperties": false,
            "properties": {
              "created_at": {
                "description": "The created at value.",
                "format": "date-time",
                "type": "string"
              },
              "description": {
                "description": "The description value.",
                "type": "string"
              },
              "gated_statuses": {
                "description": "The gated statuses value.",
                "items": {
                  "additionalProperties": false,
                  "properties": {
                    "category_color": {
                      "description": "The category color value.",
                      "type": "string"
                    },
                    "status_id": {
                      "description": "The status id value.",
                      "type": "integer"
                    },
                    "status_name": {
                      "description": "The status name value.",
                      "type": "string"
                    }
                  },
                  "required": [
                    "status_id",
                    "status_name"
                  ],
                  "type": "object"
                },
                "type": "array"
              },
              "id": {
                "description": "The id value.",
                "type": "integer"
              },
              "name": {
                "description": "The name value.",
                "type": "string"
              },
              "set_statuses": {
                "description": "The set statuses value.",
                "items": {
                  "additionalProperties": false,
                  "properties": {
                    "approval_set_id": {
                      "description": "The approval set id value.",
                      "type": "integer"
                    },
                    "approve_transition_id": {
                      "description": "The approve transition id value.",
                      "type": "integer"
                    },
                    "created_at": {
                      "description": "The created at value.",
                      "format": "date-time",
                      "type": "string"
                    },
                    "deny_transition_id": {
                      "description": "The deny transition id value.",
                      "type": "integer"
                    },
                    "id": {
                      "description": "The id value.",
                      "type": "integer"
                    },
                    "status_id": {
                      "description": "The status id value.",
                      "type": "integer"
                    },
                    "status_name": {
                      "description": "The status name value.",
                      "type": "string"
                    },
                    "step_mode": {
                      "description": "The step mode value.",
                      "type": "string"
                    },
                    "steps": {
                      "description": "The steps value.",
                      "items": {
                        "additionalProperties": false,
                        "properties": {
                          "allow_self_approval": {
                            "description": "The allow self approval value.",
                            "type": "boolean"
                          },
                          "approval_set_status_id": {
                            "description": "The approval set status id value.",
                            "type": "integer"
                          },
                          "approver_field_id": {
                            "description": "The approver field id value.",
                            "nullable": true,
                            "type": "integer"
                          },
                          "approver_field_identifier": {
                            "description": "The approver field identifier value.",
                            "type": "string"
                          },
                          "approver_group_id": {
                            "description": "The approver group id value.",
                            "nullable": true,
                            "type": "integer"
                          },
                          "approver_role_id": {
                            "description": "The approver role id value.",
                            "nullable": true,
                            "type": "integer"
                          },
                          "approver_source": {
                            "description": "The approver source value.",
                            "type": "string"
                          },
                          "approver_user_id": {
                            "description": "The approver user id value.",
                            "nullable": true,
                            "type": "integer"
                          },
                          "created_at": {
                            "description": "The created at value.",
                            "format": "date-time",
                            "type": "string"
                          },
                          "display_order": {
                            "description": "The display order value.",
                            "type": "integer"
                          },
                          "escalation_action": {
                            "description": "The escalation action value.",
                            "type": "string"
                          },
                          "escalation_after_hours": {
                            "description": "The escalation after hours value.",
                            "nullable": true,
                            "type": "integer"
                          },
                          "escalation_target_field_id": {
                            "description": "The escalation target field id value.",
                            "nullable": true,
                            "type": "integer"
                          },
                          "escalation_target_field_identifier": {
                            "description": "The escalation target field identifier value.",
                            "type": "string"
                          },
                          "escalation_target_group_id": {
                            "description": "The escalation target group id value.",
                            "nullable": true,
                            "type": "integer"
                          },
                          "escalation_target_role_id": {
                            "description": "The escalation target role id value.",
                            "nullable": true,
                            "type": "integer"
                          },
                          "escalation_target_source": {
                            "description": "The escalation target source value.",
                            "type": "string"
                          },
                          "escalation_target_user_id": {
                            "description": "The escalation target user id value.",
                            "nullable": true,
                            "type": "integer"
                          },
                          "id": {
                            "description": "The id value.",
                            "type": "integer"
                          },
                          "max_escalations": {
                            "description": "The max escalations value.",
                            "nullable": true,
                            "type": "integer"
                          },
                          "name": {
                            "description": "The name value.",
                            "type": "string"
                          },
                          "on_leave_strategy": {
                            "description": "The on leave strategy value.",
                            "type": "string"
                          },
                          "quorum_count": {
                            "description": "The quorum count value.",
                            "nullable": true,
                            "type": "integer"
                          },
                          "quorum_mode": {
                            "description": "The quorum mode value.",
                            "type": "string"
                          },
                          "quorum_percent": {
                            "description": "The quorum percent value.",
                            "nullable": true,
                            "type": "integer"
                          },
                          "rejection_policy": {
                            "description": "The rejection policy value.",
                            "type": "string"
                          }
                        },
                        "required": [
                          "allow_self_approval",
                          "approval_set_status_id",
                          "approver_source",
                          "created_at",
                          "display_order",
                          "id",
                          "name",
                          "on_leave_strategy",
                          "quorum_mode",
                          "rejection_policy"
                        ],
                        "type": "object"
                      },
                      "type": "array"
                    }
                  },
                  "required": [
                    "approval_set_id",
                    "approve_transition_id",
                    "created_at",
                    "deny_transition_id",
                    "id",
                    "status_id",
                    "step_mode"
                  ],
                  "type": "object"
                },
                "type": "array"
              },
              "updated_at": {
                "description": "The updated at value.",
                "format": "date-time",
                "type": "string"
              },
              "workflow_id": {
                "description": "The workflow id value.",
                "type": "integer"
              },
              "workflow_name": {
                "description": "The workflow name value.",
                "type": "string"
              }
            },
            "required": [
              "created_at",
              "description",
              "id",
              "name",
              "updated_at",
              "workflow_id"
            ],
            "type": "object"
          }
        },
        "required": [
          "data"
        ],
        "type": "object"
      },
      "GetApprovalSetsResult": {
        "additionalProperties": false,
        "properties": {
          "data": {
            "items": {
              "additionalProperties": false,
              "properties": {
                "created_at": {
                  "description": "The created at value.",
                  "format": "date-time",
                  "type": "string"
                },
                "description": {
                  "description": "The description value.",
                  "type": "string"
                },
                "gated_statuses": {
                  "description": "The gated statuses value.",
                  "items": {
                    "additionalProperties": false,
                    "properties": {
                      "category_color": {
                        "description": "The category color value.",
                        "type": "string"
                      },
                      "status_id": {
                        "description": "The status id value.",
                        "type": "integer"
                      },
                      "status_name": {
                        "description": "The status name value.",
                        "type": "string"
                      }
                    },
                    "required": [
                      "status_id",
                      "status_name"
                    ],
                    "type": "object"
                  },
                  "type": "array"
                },
                "id": {
                  "description": "The id value.",
                  "type": "integer"
                },
                "name": {
                  "description": "The name value.",
                  "type": "string"
                },
                "set_statuses": {
                  "description": "The set statuses value.",
                  "items": {
                    "additionalProperties": false,
                    "properties": {
                      "approval_set_id": {
                        "description": "The approval set id value.",
                        "type": "integer"
                      },
                      "approve_transition_id": {
                        "description": "The approve transition id value.",
                        "type": "integer"
                      },
                      "created_at": {
                        "description": "The created at value.",
                        "format": "date-time",
                        "type": "string"
                      },
                      "deny_transition_id": {
                        "description": "The deny transition id value.",
                        "type": "integer"
                      },
                      "id": {
                        "description": "The id value.",
                        "type": "integer"
                      },
                      "status_id": {
                        "description": "The status id value.",
                        "type": "integer"
                      },
                      "status_name": {
                        "description": "The status name value.",
                        "type": "string"
                      },
                      "step_mode": {
                        "description": "The step mode value.",
                        "type": "string"
                      },
                      "steps": {
                        "description": "The steps value.",
                        "items": {
                          "additionalProperties": false,
                          "properties": {
                            "allow_self_approval": {
                              "description": "The allow self approval value.",
                              "type": "boolean"
                            },
                            "approval_set_status_id": {
                              "description": "The approval set status id value.",
                              "type": "integer"
                            },
                            "approver_field_id": {
                              "description": "The approver field id value.",
                              "nullable": true,
                              "type": "integer"
                            },
                            "approver_field_identifier": {
                              "description": "The approver field identifier value.",
                              "type": "string"
                            },
                            "approver_group_id": {
                              "description": "The approver group id value.",
                              "nullable": true,
                              "type": "integer"
                            },
                            "approver_role_id": {
                              "description": "The approver role id value.",
                              "nullable": true,
                              "type": "integer"
                            },
                            "approver_source": {
                              "description": "The approver source value.",
                              "type": "string"
                            },
                            "approver_user_id": {
                              "description": "The approver user id value.",
                              "nullable": true,
                              "type": "integer"
                            },
                            "created_at": {
                              "description": "The created at value.",
                              "format": "date-time",
                              "type": "string"
                            },
                            "display_order": {
                              "description": "The display order value.",
                              "type": "integer"
                            },
                            "escalation_action": {
                              "description": "The escalation action value.",
                              "type": "string"
                            },
                            "escalation_after_hours": {
                              "description": "The escalation after hours value.",
                              "nullable": true,
                              "type": "integer"
                            },
                            "escalation_target_field_id": {
                              "description": "The escalation target field id value.",
                              "nullable": true,
                              "type": "integer"
                            },
                            "escalation_target_field_identifier": {
                              "description": "The escalation target field identifier value.",
                              "type": "string"
                            },
                            "escalation_target_group_id": {
                              "description": "The escalation target group id value.",
                              "nullable": true,
                              "type": "integer"
                            },
                            "escalation_target_role_id": {
                              "description": "The escalation target role id value.",
                              "nullable": true,
                              "type": "integer"
                            },
                            "escalation_target_source": {
                              "description": "The escalation target source value.",
                              "type": "string"
                            },
                            "escalation_target_user_id": {
                              "description": "The escalation target user id value.",
                              "nullable": true,
                              "type": "integer"
                            },
                            "id": {
                              "description": "The id value.",
                              "type": "integer"
                            },
                            "max_escalations": {
                              "description": "The max escalations value.",
                              "nullable": true,
                              "type": "integer"
                            },
                            "name": {
                              "description": "The name value.",
                              "type": "string"
                            },
                            "on_leave_strategy": {
                              "description": "The on leave strategy value.",
                              "type": "string"
                            },
                            "quorum_count": {
                              "description": "The quorum count value.",
                              "nullable": true,
                              "type": "integer"
                            },
                            "quorum_mode": {
                              "description": "The quorum mode value.",
                              "type": "string"
                            },
                            "quorum_percent": {
                              "description": "The quorum percent value.",
                              "nullable": true,
                              "type": "integer"
                            },
                            "rejection_policy": {
                              "description": "The rejection policy value.",
                              "type": "string"
                            }
                          },
                          "required": [
                            "allow_self_approval",
                            "approval_set_status_id",
                            "approver_source",
                            "created_at",
                            "display_order",
                            "id",
                            "name",
                            "on_leave_strategy",
                            "quorum_mode",
                            "rejection_policy"
                          ],
                          "type": "object"
                        },
                        "type": "array"
                      }
                    },
                    "required": [
                      "approval_set_id",
                      "approve_transition_id",
                      "created_at",
                      "deny_transition_id",
                      "id",
                      "status_id",
                      "step_mode"
                    ],
                    "type": "object"
                  },
                  "type": "array"
                },
                "updated_at": {
                  "description": "The updated at value.",
                  "format": "date-time",
                  "type": "string"
                },
                "workflow_id": {
                  "description": "The workflow id value.",
                  "type": "integer"
                },
                "workflow_name": {
                  "description": "The workflow name value.",
                  "type": "string"
                }
              },
              "required": [
                "created_at",
                "description",
                "id",
                "name",
                "updated_at",
                "workflow_id"
              ],
              "type": "object"
            },
            "type": "array"
          },
          "pagination": {
            "$ref": "#/components/schemas/Pagination"
          }
        },
        "required": [
          "data",
          "pagination"
        ],
        "type": "object"
      },
      "GetApprovalsApprovalIdResult": {
        "additionalProperties": false,
        "properties": {
          "data": {
            "additionalProperties": false,
            "properties": {
              "approval_set_status_id": {
                "description": "The approval set status id value.",
                "type": "integer"
              },
              "completed_at": {
                "description": "The completed at value.",
                "format": "date-time",
                "nullable": true,
                "type": "string"
              },
              "created_at": {
                "description": "The created at value.",
                "format": "date-time",
                "type": "string"
              },
              "decisions": {
                "description": "The decisions value.",
                "items": {
                  "additionalProperties": false,
                  "properties": {
                    "actor_portal_customer_id": {
                      "description": "The actor portal customer id value.",
                      "nullable": true,
                      "type": "integer"
                    },
                    "actor_user_id": {
                      "description": "The actor user id value.",
                      "nullable": true,
                      "type": "integer"
                    },
                    "approval_request_id": {
                      "description": "The approval request id value.",
                      "type": "integer"
                    },
                    "approval_step_instance_id": {
                      "description": "The approval step instance id value.",
                      "nullable": true,
                      "type": "integer"
                    },
                    "comment": {
                      "description": "The comment value.",
                      "type": "string"
                    },
                    "created_at": {
                      "description": "The created at value.",
                      "format": "date-time",
                      "type": "string"
                    },
                    "decision": {
                      "description": "The decision value.",
                      "type": "string"
                    },
                    "delegated_to_user_id": {
                      "description": "The delegated to user id value.",
                      "nullable": true,
                      "type": "integer"
                    },
                    "id": {
                      "description": "The id value.",
                      "type": "integer"
                    },
                    "metadata": {
                      "description": "The metadata value.",
                      "format": "byte",
                      "type": "string"
                    }
                  },
                  "required": [
                    "approval_request_id",
                    "created_at",
                    "decision",
                    "id"
                  ],
                  "type": "object"
                },
                "type": "array"
              },
              "from_status_id": {
                "description": "The from status id value.",
                "nullable": true,
                "type": "integer"
              },
              "id": {
                "description": "The id value.",
                "type": "integer"
              },
              "item_id": {
                "description": "The item id value.",
                "type": "integer"
              },
              "status": {
                "description": "The status value.",
                "type": "string"
              },
              "status_id": {
                "description": "The status id value.",
                "type": "integer"
              },
              "step_instances": {
                "description": "The step instances value.",
                "items": {
                  "additionalProperties": false,
                  "properties": {
                    "approval_request_id": {
                      "description": "The approval request id value.",
                      "type": "integer"
                    },
                    "approval_step_id": {
                      "description": "The approval step id value.",
                      "type": "integer"
                    },
                    "approvers": {
                      "description": "The approvers value.",
                      "items": {
                        "additionalProperties": false,
                        "properties": {
                          "approval_step_instance_id": {
                            "description": "The approval step instance id value.",
                            "type": "integer"
                          },
                          "created_at": {
                            "description": "The created at value.",
                            "format": "date-time",
                            "type": "string"
                          },
                          "id": {
                            "description": "The id value.",
                            "type": "integer"
                          },
                          "is_active": {
                            "description": "The is active value.",
                            "type": "boolean"
                          },
                          "portal_customer_id": {
                            "description": "The portal customer id value.",
                            "nullable": true,
                            "type": "integer"
                          },
                          "source_group_id": {
                            "description": "The source group id value.",
                            "nullable": true,
                            "type": "integer"
                          },
                          "source_role_id": {
                            "description": "The source role id value.",
                            "nullable": true,
                            "type": "integer"
                          },
                          "substituted_for_user_id": {
                            "description": "The substituted for user id value.",
                            "nullable": true,
                            "type": "integer"
                          },
                          "user_id": {
                            "description": "The user id value.",
                            "nullable": true,
                            "type": "integer"
                          }
                        },
                        "required": [
                          "approval_step_instance_id",
                          "created_at",
                          "id",
                          "is_active"
                        ],
                        "type": "object"
                      },
                      "type": "array"
                    },
                    "completed_at": {
                      "description": "The completed at value.",
                      "format": "date-time",
                      "nullable": true,
                      "type": "string"
                    },
                    "display_order": {
                      "description": "The display order value.",
                      "type": "integer"
                    },
                    "escalation_count": {
                      "description": "The escalation count value.",
                      "type": "integer"
                    },
                    "escalation_due_at": {
                      "description": "The escalation due at value.",
                      "format": "date-time",
                      "nullable": true,
                      "type": "string"
                    },
                    "id": {
                      "description": "The id value.",
                      "type": "integer"
                    },
                    "last_escalated_at": {
                      "description": "The last escalated at value.",
                      "format": "date-time",
                      "nullable": true,
                      "type": "string"
                    },
                    "started_at": {
                      "description": "The started at value.",
                      "format": "date-time",
                      "nullable": true,
                      "type": "string"
                    },
                    "status": {
                      "description": "The status value.",
                      "type": "string"
                    }
                  },
                  "required": [
                    "approval_request_id",
                    "approval_step_id",
                    "display_order",
                    "escalation_count",
                    "id",
                    "status"
                  ],
                  "type": "object"
                },
                "type": "array"
              },
              "triggered_by_user_id": {
                "description": "The triggered by user id value.",
                "type": "integer"
              },
              "workspace_id": {
                "description": "The workspace id value.",
                "type": "integer"
              }
            },
            "required": [
              "approval_set_status_id",
              "created_at",
              "id",
              "item_id",
              "status",
              "status_id",
              "triggered_by_user_id",
              "workspace_id"
            ],
            "type": "object"
          }
        },
        "required": [
          "data"
        ],
        "type": "object"
      },
      "GetApprovalsMineResult": {
        "additionalProperties": false,
        "properties": {
          "data": {
            "items": {
              "additionalProperties": false,
              "nullable": true,
              "properties": {
                "approval_set_status_id": {
                  "description": "The approval set status id value.",
                  "type": "integer"
                },
                "completed_at": {
                  "description": "The completed at value.",
                  "format": "date-time",
                  "nullable": true,
                  "type": "string"
                },
                "created_at": {
                  "description": "The created at value.",
                  "format": "date-time",
                  "type": "string"
                },
                "decisions": {
                  "description": "The decisions value.",
                  "items": {
                    "additionalProperties": false,
                    "properties": {
                      "actor_portal_customer_id": {
                        "description": "The actor portal customer id value.",
                        "nullable": true,
                        "type": "integer"
                      },
                      "actor_user_id": {
                        "description": "The actor user id value.",
                        "nullable": true,
                        "type": "integer"
                      },
                      "approval_request_id": {
                        "description": "The approval request id value.",
                        "type": "integer"
                      },
                      "approval_step_instance_id": {
                        "description": "The approval step instance id value.",
                        "nullable": true,
                        "type": "integer"
                      },
                      "comment": {
                        "description": "The comment value.",
                        "type": "string"
                      },
                      "created_at": {
                        "description": "The created at value.",
                        "format": "date-time",
                        "type": "string"
                      },
                      "decision": {
                        "description": "The decision value.",
                        "type": "string"
                      },
                      "delegated_to_user_id": {
                        "description": "The delegated to user id value.",
                        "nullable": true,
                        "type": "integer"
                      },
                      "id": {
                        "description": "The id value.",
                        "type": "integer"
                      },
                      "metadata": {
                        "description": "The metadata value.",
                        "format": "byte",
                        "type": "string"
                      }
                    },
                    "required": [
                      "approval_request_id",
                      "created_at",
                      "decision",
                      "id"
                    ],
                    "type": "object"
                  },
                  "type": "array"
                },
                "from_status_id": {
                  "description": "The from status id value.",
                  "nullable": true,
                  "type": "integer"
                },
                "id": {
                  "description": "The id value.",
                  "type": "integer"
                },
                "item_id": {
                  "description": "The item id value.",
                  "type": "integer"
                },
                "status": {
                  "description": "The status value.",
                  "type": "string"
                },
                "status_id": {
                  "description": "The status id value.",
                  "type": "integer"
                },
                "step_instances": {
                  "description": "The step instances value.",
                  "items": {
                    "additionalProperties": false,
                    "properties": {
                      "approval_request_id": {
                        "description": "The approval request id value.",
                        "type": "integer"
                      },
                      "approval_step_id": {
                        "description": "The approval step id value.",
                        "type": "integer"
                      },
                      "approvers": {
                        "description": "The approvers value.",
                        "items": {
                          "additionalProperties": false,
                          "properties": {
                            "approval_step_instance_id": {
                              "description": "The approval step instance id value.",
                              "type": "integer"
                            },
                            "created_at": {
                              "description": "The created at value.",
                              "format": "date-time",
                              "type": "string"
                            },
                            "id": {
                              "description": "The id value.",
                              "type": "integer"
                            },
                            "is_active": {
                              "description": "The is active value.",
                              "type": "boolean"
                            },
                            "portal_customer_id": {
                              "description": "The portal customer id value.",
                              "nullable": true,
                              "type": "integer"
                            },
                            "source_group_id": {
                              "description": "The source group id value.",
                              "nullable": true,
                              "type": "integer"
                            },
                            "source_role_id": {
                              "description": "The source role id value.",
                              "nullable": true,
                              "type": "integer"
                            },
                            "substituted_for_user_id": {
                              "description": "The substituted for user id value.",
                              "nullable": true,
                              "type": "integer"
                            },
                            "user_id": {
                              "description": "The user id value.",
                              "nullable": true,
                              "type": "integer"
                            }
                          },
                          "required": [
                            "approval_step_instance_id",
                            "created_at",
                            "id",
                            "is_active"
                          ],
                          "type": "object"
                        },
                        "type": "array"
                      },
                      "completed_at": {
                        "description": "The completed at value.",
                        "format": "date-time",
                        "nullable": true,
                        "type": "string"
                      },
                      "display_order": {
                        "description": "The display order value.",
                        "type": "integer"
                      },
                      "escalation_count": {
                        "description": "The escalation count value.",
                        "type": "integer"
                      },
                      "escalation_due_at": {
                        "description": "The escalation due at value.",
                        "format": "date-time",
                        "nullable": true,
                        "type": "string"
                      },
                      "id": {
                        "description": "The id value.",
                        "type": "integer"
                      },
                      "last_escalated_at": {
                        "description": "The last escalated at value.",
                        "format": "date-time",
                        "nullable": true,
                        "type": "string"
                      },
                      "started_at": {
                        "description": "The started at value.",
                        "format": "date-time",
                        "nullable": true,
                        "type": "string"
                      },
                      "status": {
                        "description": "The status value.",
                        "type": "string"
                      }
                    },
                    "required": [
                      "approval_request_id",
                      "approval_step_id",
                      "display_order",
                      "escalation_count",
                      "id",
                      "status"
                    ],
                    "type": "object"
                  },
                  "type": "array"
                },
                "triggered_by_user_id": {
                  "description": "The triggered by user id value.",
                  "type": "integer"
                },
                "workspace_id": {
                  "description": "The workspace id value.",
                  "type": "integer"
                }
              },
              "required": [
                "approval_set_status_id",
                "created_at",
                "id",
                "item_id",
                "status",
                "status_id",
                "triggered_by_user_id",
                "workspace_id"
              ],
              "type": "object"
            },
            "type": "array"
          },
          "pagination": {
            "$ref": "#/components/schemas/Pagination"
          }
        },
        "required": [
          "data",
          "pagination"
        ],
        "type": "object"
      },
      "GetAssetCategoriesCategoryIdResult": {
        "additionalProperties": false,
        "properties": {
          "data": {
            "additionalProperties": false,
            "nullable": true,
            "properties": {
              "asset_count": {
                "description": "The asset count value.",
                "type": "integer"
              },
              "children": {
                "description": "The children value.",
                "items": {
                  "description": "Nested resource reference.",
                  "type": "object"
                },
                "type": "array"
              },
              "children_count": {
                "description": "The children count value.",
                "type": "integer"
              },
              "created_at": {
                "description": "The created at value.",
                "format": "date-time",
                "type": "string"
              },
              "descendants_count": {
                "description": "The descendants count value.",
                "type": "integer"
              },
              "description": {
                "description": "The description value.",
                "type": "string"
              },
              "frac_index": {
                "description": "The frac index value.",
                "nullable": true,
                "type": "string"
              },
              "has_children": {
                "description": "The has children value.",
                "type": "boolean"
              },
              "id": {
                "description": "The id value.",
                "type": "integer"
              },
              "name": {
                "description": "The name value.",
                "type": "string"
              },
              "parent_id": {
                "description": "The parent id value.",
                "nullable": true,
                "type": "integer"
              },
              "parent_name": {
                "description": "The parent name value.",
                "type": "string"
              },
              "path": {
                "description": "The path value.",
                "type": "string"
              },
              "set_id": {
                "description": "The set id value.",
                "type": "integer"
              },
              "set_name": {
                "description": "The set name value.",
                "type": "string"
              },
              "updated_at": {
                "description": "The updated at value.",
                "format": "date-time",
                "type": "string"
              }
            },
            "required": [
              "children_count",
              "created_at",
              "descendants_count",
              "description",
              "has_children",
              "id",
              "name",
              "set_id",
              "updated_at"
            ],
            "type": "object"
          }
        },
        "required": [
          "data"
        ],
        "type": "object"
      },
      "GetAssetRolesResult": {
        "additionalProperties": false,
        "properties": {
          "data": {
            "items": {
              "additionalProperties": false,
              "properties": {
                "created_at": {
                  "description": "The created at value.",
                  "format": "date-time",
                  "type": "string"
                },
                "description": {
                  "description": "The description value.",
                  "type": "string"
                },
                "display_order": {
                  "description": "The display order value.",
                  "type": "integer"
                },
                "id": {
                  "description": "The id value.",
                  "type": "integer"
                },
                "is_system": {
                  "description": "The is system value.",
                  "type": "boolean"
                },
                "name": {
                  "description": "The name value.",
                  "type": "string"
                },
                "permissions": {
                  "description": "The permissions value.",
                  "items": {
                    "additionalProperties": false,
                    "properties": {
                      "created_at": {
                        "description": "The created at value.",
                        "format": "date-time",
                        "type": "string"
                      },
                      "description": {
                        "description": "The description value.",
                        "type": "string"
                      },
                      "id": {
                        "description": "The id value.",
                        "type": "integer"
                      },
                      "permission_key": {
                        "description": "The permission key value.",
                        "type": "string"
                      },
                      "permission_name": {
                        "description": "The permission name value.",
                        "type": "string"
                      }
                    },
                    "required": [
                      "created_at",
                      "description",
                      "id",
                      "permission_key",
                      "permission_name"
                    ],
                    "type": "object"
                  },
                  "type": "array"
                },
                "updated_at": {
                  "description": "The updated at value.",
                  "format": "date-time",
                  "type": "string"
                }
              },
              "required": [
                "created_at",
                "description",
                "display_order",
                "id",
                "is_system",
                "name",
                "updated_at"
              ],
              "type": "object"
            },
            "type": "array"
          }
        },
        "required": [
          "data"
        ],
        "type": "object"
      },
      "GetAssetRolesRoleIdResult": {
        "additionalProperties": false,
        "properties": {
          "data": {
            "additionalProperties": false,
            "nullable": true,
            "properties": {
              "created_at": {
                "description": "The created at value.",
                "format": "date-time",
                "type": "string"
              },
              "description": {
                "description": "The description value.",
                "type": "string"
              },
              "display_order": {
                "description": "The display order value.",
                "type": "integer"
              },
              "id": {
                "description": "The id value.",
                "type": "integer"
              },
              "is_system": {
                "description": "The is system value.",
                "type": "boolean"
              },
              "name": {
                "description": "The name value.",
                "type": "string"
              },
              "permissions": {
                "description": "The permissions value.",
                "items": {
                  "additionalProperties": false,
                  "properties": {
                    "created_at": {
                      "description": "The created at value.",
                      "format": "date-time",
                      "type": "string"
                    },
                    "description": {
                      "description": "The description value.",
                      "type": "string"
                    },
                    "id": {
                      "description": "The id value.",
                      "type": "integer"
                    },
                    "permission_key": {
                      "description": "The permission key value.",
                      "type": "string"
                    },
                    "permission_name": {
                      "description": "The permission name value.",
                      "type": "string"
                    }
                  },
                  "required": [
                    "created_at",
                    "description",
                    "id",
                    "permission_key",
                    "permission_name"
                  ],
                  "type": "object"
                },
                "type": "array"
              },
              "updated_at": {
                "description": "The updated at value.",
                "format": "date-time",
                "type": "string"
              }
            },
            "required": [
              "created_at",
              "description",
              "display_order",
              "id",
              "is_system",
              "name",
              "updated_at"
            ],
            "type": "object"
          }
        },
        "required": [
          "data"
        ],
        "type": "object"
      },
      "GetAssetSetsAssetSetIdAssetsResult": {
        "additionalProperties": false,
        "properties": {
          "data": {
            "items": {
              "additionalProperties": false,
              "properties": {
                "asset_tag": {
                  "description": "The asset tag value.",
                  "type": "string"
                },
                "asset_type_color": {
                  "description": "The asset type color value.",
                  "type": "string"
                },
                "asset_type_icon": {
                  "description": "The asset type icon value.",
                  "type": "string"
                },
                "asset_type_id": {
                  "description": "The asset type id value.",
                  "type": "integer"
                },
                "asset_type_name": {
                  "description": "The asset type name value.",
                  "type": "string"
                },
                "category_id": {
                  "description": "The category id value.",
                  "nullable": true,
                  "type": "integer"
                },
                "category_name": {
                  "description": "The category name value.",
                  "type": "string"
                },
                "category_path": {
                  "description": "The category path value.",
                  "type": "string"
                },
                "created_at": {
                  "description": "The created at value.",
                  "format": "date-time",
                  "type": "string"
                },
                "created_by": {
                  "description": "The created by value.",
                  "nullable": true,
                  "type": "integer"
                },
                "creator_email": {
                  "description": "The creator email value.",
                  "type": "string"
                },
                "creator_name": {
                  "description": "The creator name value.",
                  "type": "string"
                },
                "custom_field_values": {
                  "additionalProperties": {
                    "description": "Arbitrary JSON extension value."
                  },
                  "description": "The custom field values value.",
                  "type": "object"
                },
                "description": {
                  "description": "The description value.",
                  "type": "string"
                },
                "frac_index": {
                  "description": "The frac index value.",
                  "nullable": true,
                  "type": "string"
                },
                "id": {
                  "description": "The id value.",
                  "type": "integer"
                },
                "linked_item_count": {
                  "description": "The linked item count value.",
                  "type": "integer"
                },
                "set_id": {
                  "description": "The set id value.",
                  "type": "integer"
                },
                "set_name": {
                  "description": "The set name value.",
                  "type": "string"
                },
                "status_color": {
                  "description": "The status color value.",
                  "type": "string"
                },
                "status_id": {
                  "description": "The status id value.",
                  "nullable": true,
                  "type": "integer"
                },
                "status_name": {
                  "description": "The status name value.",
                  "type": "string"
                },
                "title": {
                  "description": "The title value.",
                  "type": "string"
                },
                "updated_at": {
                  "description": "The updated at value.",
                  "format": "date-time",
                  "type": "string"
                },
                "warnings": {
                  "description": "The warnings value.",
                  "items": {
                    "type": "string"
                  },
                  "type": "array"
                }
              },
              "required": [
                "asset_type_id",
                "created_at",
                "description",
                "id",
                "set_id",
                "title",
                "updated_at"
              ],
              "type": "object"
            },
            "type": "array"
          },
          "pagination": {
            "$ref": "#/components/schemas/Pagination"
          }
        },
        "required": [
          "data",
          "pagination"
        ],
        "type": "object"
      },
      "GetAssetSetsAssetSetIdCategoriesResult": {
        "additionalProperties": false,
        "properties": {
          "data": {
            "items": {
              "additionalProperties": false,
              "properties": {
                "asset_count": {
                  "description": "The asset count value.",
                  "type": "integer"
                },
                "children": {
                  "description": "The children value.",
                  "items": {
                    "description": "Nested resource reference.",
                    "type": "object"
                  },
                  "type": "array"
                },
                "children_count": {
                  "description": "The children count value.",
                  "type": "integer"
                },
                "created_at": {
                  "description": "The created at value.",
                  "format": "date-time",
                  "type": "string"
                },
                "descendants_count": {
                  "description": "The descendants count value.",
                  "type": "integer"
                },
                "description": {
                  "description": "The description value.",
                  "type": "string"
                },
                "frac_index": {
                  "description": "The frac index value.",
                  "nullable": true,
                  "type": "string"
                },
                "has_children": {
                  "description": "The has children value.",
                  "type": "boolean"
                },
                "id": {
                  "description": "The id value.",
                  "type": "integer"
                },
                "name": {
                  "description": "The name value.",
                  "type": "string"
                },
                "parent_id": {
                  "description": "The parent id value.",
                  "nullable": true,
                  "type": "integer"
                },
                "parent_name": {
                  "description": "The parent name value.",
                  "type": "string"
                },
                "path": {
                  "description": "The path value.",
                  "type": "string"
                },
                "set_id": {
                  "description": "The set id value.",
                  "type": "integer"
                },
                "set_name": {
                  "description": "The set name value.",
                  "type": "string"
                },
                "updated_at": {
                  "description": "The updated at value.",
                  "format": "date-time",
                  "type": "string"
                }
              },
              "required": [
                "children_count",
                "created_at",
                "descendants_count",
                "description",
                "has_children",
                "id",
                "name",
                "set_id",
                "updated_at"
              ],
              "type": "object"
            },
            "type": "array"
          },
          "pagination": {
            "$ref": "#/components/schemas/Pagination"
          }
        },
        "required": [
          "data",
          "pagination"
        ],
        "type": "object"
      },
      "GetAssetSetsAssetSetIdEveryoneRoleResult": {
        "additionalProperties": false,
        "properties": {
          "data": {
            "additionalProperties": false,
            "nullable": true,
            "properties": {
              "granted_at": {
                "description": "The granted at value.",
                "format": "date-time",
                "type": "string"
              },
              "granted_by": {
                "description": "The granted by value.",
                "nullable": true,
                "type": "integer"
              },
              "granted_by_name": {
                "description": "The granted by name value.",
                "type": "string"
              },
              "role_id": {
                "description": "The role id value.",
                "nullable": true,
                "type": "integer"
              },
              "role_name": {
                "description": "The role name value.",
                "type": "string"
              },
              "set_id": {
                "description": "The set id value.",
                "type": "integer"
              }
            },
            "required": [
              "granted_at",
              "set_id"
            ],
            "type": "object"
          }
        },
        "required": [
          "data"
        ],
        "type": "object"
      },
      "GetAssetSetsAssetSetIdImportJobsJobIdResult": {
        "additionalProperties": false,
        "properties": {
          "data": {
            "additionalProperties": false,
            "properties": {
              "completed_at": {
                "description": "The completed at value.",
                "format": "date-time",
                "nullable": true,
                "type": "string"
              },
              "created_at": {
                "description": "The created at value.",
                "format": "date-time",
                "nullable": true,
                "type": "string"
              },
              "error_message": {
                "description": "The error message value.",
                "type": "string"
              },
              "job_id": {
                "description": "The job id value.",
                "type": "string"
              },
              "phase": {
                "description": "The phase value.",
                "type": "string"
              },
              "progress": {
                "additionalProperties": false,
                "description": "The progress value.",
                "nullable": true,
                "properties": {
                  "errors": {
                    "description": "The errors value.",
                    "items": {
                      "type": "string"
                    },
                    "type": "array"
                  },
                  "failed_count": {
                    "description": "The failed count value.",
                    "type": "integer"
                  },
                  "imported_count": {
                    "description": "The imported count value.",
                    "type": "integer"
                  },
                  "phase": {
                    "description": "The phase value.",
                    "type": "string"
                  },
                  "total_rows": {
                    "description": "The total rows value.",
                    "type": "integer"
                  }
                },
                "required": [
                  "failed_count",
                  "imported_count",
                  "phase",
                  "total_rows"
                ],
                "type": "object"
              },
              "started_at": {
                "description": "The started at value.",
                "format": "date-time",
                "nullable": true,
                "type": "string"
              },
              "status": {
                "description": "The status value.",
                "type": "string"
              }
            },
            "required": [
              "job_id",
              "status"
            ],
            "type": "object"
          }
        },
        "required": [
          "data"
        ],
        "type": "object"
      },
      "GetAssetSetsAssetSetIdImportJobsResult": {
        "additionalProperties": false,
        "properties": {
          "data": {
            "items": {
              "additionalProperties": false,
              "properties": {
                "completed_at": {
                  "description": "The completed at value.",
                  "format": "date-time",
                  "nullable": true,
                  "type": "string"
                },
                "created_at": {
                  "description": "The created at value.",
                  "format": "date-time",
                  "nullable": true,
                  "type": "string"
                },
                "error_message": {
                  "description": "The error message value.",
                  "type": "string"
                },
                "job_id": {
                  "description": "The job id value.",
                  "type": "string"
                },
                "phase": {
                  "description": "The phase value.",
                  "type": "string"
                },
                "progress": {
                  "additionalProperties": false,
                  "description": "The progress value.",
                  "nullable": true,
                  "properties": {
                    "errors": {
                      "description": "The errors value.",
                      "items": {
                        "type": "string"
                      },
                      "type": "array"
                    },
                    "failed_count": {
                      "description": "The failed count value.",
                      "type": "integer"
                    },
                    "imported_count": {
                      "description": "The imported count value.",
                      "type": "integer"
                    },
                    "phase": {
                      "description": "The phase value.",
                      "type": "string"
                    },
                    "total_rows": {
                      "description": "The total rows value.",
                      "type": "integer"
                    }
                  },
                  "required": [
                    "failed_count",
                    "imported_count",
                    "phase",
                    "total_rows"
                  ],
                  "type": "object"
                },
                "started_at": {
                  "description": "The started at value.",
                  "format": "date-time",
                  "nullable": true,
                  "type": "string"
                },
                "status": {
                  "description": "The status value.",
                  "type": "string"
                }
              },
              "required": [
                "job_id",
                "status"
              ],
              "type": "object"
            },
            "type": "array"
          }
        },
        "required": [
          "data"
        ],
        "type": "object"
      },
      "GetAssetSetsAssetSetIdResult": {
        "additionalProperties": false,
        "properties": {
          "data": {
            "additionalProperties": false,
            "nullable": true,
            "properties": {
              "asset_count": {
                "description": "The asset count value.",
                "type": "integer"
              },
              "asset_type_count": {
                "description": "The asset type count value.",
                "type": "integer"
              },
              "created_at": {
                "description": "The created at value.",
                "format": "date-time",
                "type": "string"
              },
              "created_by": {
                "description": "The created by value.",
                "nullable": true,
                "type": "integer"
              },
              "creator_name": {
                "description": "The creator name value.",
                "type": "string"
              },
              "description": {
                "description": "The description value.",
                "type": "string"
              },
              "id": {
                "description": "The id value.",
                "type": "integer"
              },
              "is_default": {
                "description": "The is default value.",
                "type": "boolean"
              },
              "name": {
                "description": "The name value.",
                "type": "string"
              },
              "updated_at": {
                "description": "The updated at value.",
                "format": "date-time",
                "type": "string"
              },
              "user_permission": {
                "description": "The user permission value.",
                "type": "string"
              }
            },
            "required": [
              "created_at",
              "description",
              "id",
              "is_default",
              "name",
              "updated_at"
            ],
            "type": "object"
          }
        },
        "required": [
          "data"
        ],
        "type": "object"
      },
      "GetAssetSetsAssetSetIdRolesResult": {
        "additionalProperties": false,
        "properties": {
          "data": {
            "additionalProperties": false,
            "properties": {
              "everyone_role": {
                "additionalProperties": false,
                "description": "The everyone role value.",
                "nullable": true,
                "properties": {
                  "granted_at": {
                    "description": "The granted at value.",
                    "format": "date-time",
                    "type": "string"
                  },
                  "granted_by": {
                    "description": "The granted by value.",
                    "nullable": true,
                    "type": "integer"
                  },
                  "granted_by_name": {
                    "description": "The granted by name value.",
                    "type": "string"
                  },
                  "role_id": {
                    "description": "The role id value.",
                    "nullable": true,
                    "type": "integer"
                  },
                  "role_name": {
                    "description": "The role name value.",
                    "type": "string"
                  },
                  "set_id": {
                    "description": "The set id value.",
                    "type": "integer"
                  }
                },
                "required": [
                  "granted_at",
                  "set_id"
                ],
                "type": "object"
              },
              "group_roles": {
                "description": "The group roles value.",
                "items": {
                  "additionalProperties": false,
                  "properties": {
                    "granted_at": {
                      "description": "The granted at value.",
                      "format": "date-time",
                      "type": "string"
                    },
                    "granted_by": {
                      "description": "The granted by value.",
                      "nullable": true,
                      "type": "integer"
                    },
                    "granted_by_name": {
                      "description": "The granted by name value.",
                      "type": "string"
                    },
                    "group_id": {
                      "description": "The group id value.",
                      "type": "integer"
                    },
                    "group_name": {
                      "description": "The group name value.",
                      "type": "string"
                    },
                    "id": {
                      "description": "The id value.",
                      "type": "integer"
                    },
                    "role_id": {
                      "description": "The role id value.",
                      "type": "integer"
                    },
                    "role_name": {
                      "description": "The role name value.",
                      "type": "string"
                    },
                    "set_id": {
                      "description": "The set id value.",
                      "type": "integer"
                    }
                  },
                  "required": [
                    "granted_at",
                    "group_id",
                    "id",
                    "role_id",
                    "set_id"
                  ],
                  "type": "object"
                },
                "type": "array"
              },
              "user_roles": {
                "description": "The user roles value.",
                "items": {
                  "additionalProperties": false,
                  "properties": {
                    "granted_at": {
                      "description": "The granted at value.",
                      "format": "date-time",
                      "type": "string"
                    },
                    "granted_by": {
                      "description": "The granted by value.",
                      "nullable": true,
                      "type": "integer"
                    },
                    "granted_by_name": {
                      "description": "The granted by name value.",
                      "type": "string"
                    },
                    "id": {
                      "description": "The id value.",
                      "type": "integer"
                    },
                    "role_id": {
                      "description": "The role id value.",
                      "type": "integer"
                    },
                    "role_name": {
                      "description": "The role name value.",
                      "type": "string"
                    },
                    "set_id": {
                      "description": "The set id value.",
                      "type": "integer"
                    },
                    "user_email": {
                      "description": "The user email value.",
                      "type": "string"
                    },
                    "user_id": {
                      "description": "The user id value.",
                      "type": "integer"
                    },
                    "user_name": {
                      "description": "The user name value.",
                      "type": "string"
                    }
                  },
                  "required": [
                    "granted_at",
                    "id",
                    "role_id",
                    "set_id",
                    "user_id"
                  ],
                  "type": "object"
                },
                "type": "array"
              }
            },
            "required": [
              "group_roles",
              "user_roles"
            ],
            "type": "object"
          }
        },
        "required": [
          "data"
        ],
        "type": "object"
      },
      "GetAssetSetsAssetSetIdStatusesResult": {
        "additionalProperties": false,
        "properties": {
          "data": {
            "items": {
              "additionalProperties": false,
              "properties": {
                "color": {
                  "description": "The color value.",
                  "type": "string"
                },
                "created_at": {
                  "description": "The created at value.",
                  "format": "date-time",
                  "type": "string"
                },
                "description": {
                  "description": "The description value.",
                  "type": "string"
                },
                "display_order": {
                  "description": "The display order value.",
                  "type": "integer"
                },
                "id": {
                  "description": "The id value.",
                  "type": "integer"
                },
                "is_default": {
                  "description": "The is default value.",
                  "type": "boolean"
                },
                "name": {
                  "description": "The name value.",
                  "type": "string"
                },
                "set_id": {
                  "description": "The set id value.",
                  "type": "integer"
                },
                "updated_at": {
                  "description": "The updated at value.",
                  "format": "date-time",
                  "type": "string"
                }
              },
              "required": [
                "color",
                "created_at",
                "description",
                "display_order",
                "id",
                "is_default",
                "name",
                "set_id",
                "updated_at"
              ],
              "type": "object"
            },
            "type": "array"
          },
          "pagination": {
            "$ref": "#/components/schemas/Pagination"
          }
        },
        "required": [
          "data",
          "pagination"
        ],
        "type": "object"
      },
      "GetAssetSetsAssetSetIdTypesResult": {
        "additionalProperties": false,
        "properties": {
          "data": {
            "items": {
              "additionalProperties": false,
              "properties": {
                "asset_count": {
                  "description": "The asset count value.",
                  "type": "integer"
                },
                "color": {
                  "description": "The color value.",
                  "type": "string"
                },
                "created_at": {
                  "description": "The created at value.",
                  "format": "date-time",
                  "type": "string"
                },
                "description": {
                  "description": "The description value.",
                  "type": "string"
                },
                "display_order": {
                  "description": "The display order value.",
                  "type": "integer"
                },
                "fields": {
                  "description": "The fields value.",
                  "items": {
                    "additionalProperties": false,
                    "properties": {
                      "asset_type_id": {
                        "description": "The asset type id value.",
                        "type": "integer"
                      },
                      "created_at": {
                        "description": "The created at value.",
                        "format": "date-time",
                        "type": "string"
                      },
                      "custom_field_id": {
                        "description": "The custom field id value.",
                        "type": "integer"
                      },
                      "display_order": {
                        "description": "The display order value.",
                        "type": "integer"
                      },
                      "field_description": {
                        "description": "The field description value.",
                        "type": "string"
                      },
                      "field_name": {
                        "description": "The field name value.",
                        "type": "string"
                      },
                      "field_type": {
                        "description": "The field type value.",
                        "type": "string"
                      },
                      "id": {
                        "description": "The id value.",
                        "type": "integer"
                      },
                      "is_required": {
                        "description": "The is required value.",
                        "type": "boolean"
                      },
                      "options": {
                        "description": "The options value.",
                        "type": "string"
                      }
                    },
                    "required": [
                      "asset_type_id",
                      "created_at",
                      "custom_field_id",
                      "display_order",
                      "id",
                      "is_required"
                    ],
                    "type": "object"
                  },
                  "type": "array"
                },
                "icon": {
                  "description": "The icon value.",
                  "type": "string"
                },
                "id": {
                  "description": "The id value.",
                  "type": "integer"
                },
                "is_active": {
                  "description": "The is active value.",
                  "type": "boolean"
                },
                "name": {
                  "description": "The name value.",
                  "type": "string"
                },
                "set_id": {
                  "description": "The set id value.",
                  "type": "integer"
                },
                "set_name": {
                  "description": "The set name value.",
                  "type": "string"
                },
                "updated_at": {
                  "description": "The updated at value.",
                  "format": "date-time",
                  "type": "string"
                }
              },
              "required": [
                "color",
                "created_at",
                "description",
                "display_order",
                "icon",
                "id",
                "is_active",
                "name",
                "set_id",
                "updated_at"
              ],
              "type": "object"
            },
            "type": "array"
          },
          "pagination": {
            "$ref": "#/components/schemas/Pagination"
          }
        },
        "required": [
          "data",
          "pagination"
        ],
        "type": "object"
      },
      "GetAssetSetsResult": {
        "additionalProperties": false,
        "properties": {
          "data": {
            "items": {
              "additionalProperties": false,
              "properties": {
                "asset_count": {
                  "description": "The asset count value.",
                  "type": "integer"
                },
                "asset_type_count": {
                  "description": "The asset type count value.",
                  "type": "integer"
                },
                "created_at": {
                  "description": "The created at value.",
                  "format": "date-time",
                  "type": "string"
                },
                "created_by": {
                  "description": "The created by value.",
                  "nullable": true,
                  "type": "integer"
                },
                "creator_name": {
                  "description": "The creator name value.",
                  "type": "string"
                },
                "description": {
                  "description": "The description value.",
                  "type": "string"
                },
                "id": {
                  "description": "The id value.",
                  "type": "integer"
                },
                "is_default": {
                  "description": "The is default value.",
                  "type": "boolean"
                },
                "name": {
                  "description": "The name value.",
                  "type": "string"
                },
                "updated_at": {
                  "description": "The updated at value.",
                  "format": "date-time",
                  "type": "string"
                },
                "user_permission": {
                  "description": "The user permission value.",
                  "type": "string"
                }
              },
              "required": [
                "created_at",
                "description",
                "id",
                "is_default",
                "name",
                "updated_at"
              ],
              "type": "object"
            },
            "type": "array"
          },
          "pagination": {
            "$ref": "#/components/schemas/Pagination"
          }
        },
        "required": [
          "data",
          "pagination"
        ],
        "type": "object"
      },
      "GetAssetStatusesStatusIdResult": {
        "additionalProperties": false,
        "properties": {
          "data": {
            "additionalProperties": false,
            "nullable": true,
            "properties": {
              "color": {
                "description": "The color value.",
                "type": "string"
              },
              "created_at": {
                "description": "The created at value.",
                "format": "date-time",
                "type": "string"
              },
              "description": {
                "description": "The description value.",
                "type": "string"
              },
              "display_order": {
                "description": "The display order value.",
                "type": "integer"
              },
              "id": {
                "description": "The id value.",
                "type": "integer"
              },
              "is_default": {
                "description": "The is default value.",
                "type": "boolean"
              },
              "name": {
                "description": "The name value.",
                "type": "string"
              },
              "set_id": {
                "description": "The set id value.",
                "type": "integer"
              },
              "updated_at": {
                "description": "The updated at value.",
                "format": "date-time",
                "type": "string"
              }
            },
            "required": [
              "color",
              "created_at",
              "description",
              "display_order",
              "id",
              "is_default",
              "name",
              "set_id",
              "updated_at"
            ],
            "type": "object"
          }
        },
        "required": [
          "data"
        ],
        "type": "object"
      },
      "GetAssetTypesAssetTypeIdFieldsResult": {
        "additionalProperties": false,
        "properties": {
          "data": {
            "items": {
              "additionalProperties": false,
              "properties": {
                "asset_type_id": {
                  "description": "The asset type id value.",
                  "type": "integer"
                },
                "created_at": {
                  "description": "The created at value.",
                  "format": "date-time",
                  "type": "string"
                },
                "custom_field_id": {
                  "description": "The custom field id value.",
                  "type": "integer"
                },
                "display_order": {
                  "description": "The display order value.",
                  "type": "integer"
                },
                "field_description": {
                  "description": "The field description value.",
                  "type": "string"
                },
                "field_name": {
                  "description": "The field name value.",
                  "type": "string"
                },
                "field_type": {
                  "description": "The field type value.",
                  "type": "string"
                },
                "id": {
                  "description": "The id value.",
                  "type": "integer"
                },
                "is_required": {
                  "description": "The is required value.",
                  "type": "boolean"
                },
                "options": {
                  "description": "The options value.",
                  "type": "string"
                }
              },
              "required": [
                "asset_type_id",
                "created_at",
                "custom_field_id",
                "display_order",
                "id",
                "is_required"
              ],
              "type": "object"
            },
            "type": "array"
          }
        },
        "required": [
          "data"
        ],
        "type": "object"
      },
      "GetAssetTypesAssetTypeIdResult": {
        "additionalProperties": false,
        "properties": {
          "data": {
            "additionalProperties": false,
            "nullable": true,
            "properties": {
              "asset_count": {
                "description": "The asset count value.",
                "type": "integer"
              },
              "color": {
                "description": "The color value.",
                "type": "string"
              },
              "created_at": {
                "description": "The created at value.",
                "format": "date-time",
                "type": "string"
              },
              "description": {
                "description": "The description value.",
                "type": "string"
              },
              "display_order": {
                "description": "The display order value.",
                "type": "integer"
              },
              "fields": {
                "description": "The fields value.",
                "items": {
                  "additionalProperties": false,
                  "properties": {
                    "asset_type_id": {
                      "description": "The asset type id value.",
                      "type": "integer"
                    },
                    "created_at": {
                      "description": "The created at value.",
                      "format": "date-time",
                      "type": "string"
                    },
                    "custom_field_id": {
                      "description": "The custom field id value.",
                      "type": "integer"
                    },
                    "display_order": {
                      "description": "The display order value.",
                      "type": "integer"
                    },
                    "field_description": {
                      "description": "The field description value.",
                      "type": "string"
                    },
                    "field_name": {
                      "description": "The field name value.",
                      "type": "string"
                    },
                    "field_type": {
                      "description": "The field type value.",
                      "type": "string"
                    },
                    "id": {
                      "description": "The id value.",
                      "type": "integer"
                    },
                    "is_required": {
                      "description": "The is required value.",
                      "type": "boolean"
                    },
                    "options": {
                      "description": "The options value.",
                      "type": "string"
                    }
                  },
                  "required": [
                    "asset_type_id",
                    "created_at",
                    "custom_field_id",
                    "display_order",
                    "id",
                    "is_required"
                  ],
                  "type": "object"
                },
                "type": "array"
              },
              "icon": {
                "description": "The icon value.",
                "type": "string"
              },
              "id": {
                "description": "The id value.",
                "type": "integer"
              },
              "is_active": {
                "description": "The is active value.",
                "type": "boolean"
              },
              "name": {
                "description": "The name value.",
                "type": "string"
              },
              "set_id": {
                "description": "The set id value.",
                "type": "integer"
              },
              "set_name": {
                "description": "The set name value.",
                "type": "string"
              },
              "updated_at": {
                "description": "The updated at value.",
                "format": "date-time",
                "type": "string"
              }
            },
            "required": [
              "color",
              "created_at",
              "description",
              "display_order",
              "icon",
              "id",
              "is_active",
              "name",
              "set_id",
              "updated_at"
            ],
            "type": "object"
          }
        },
        "required": [
          "data"
        ],
        "type": "object"
      },
      "GetAssetsAssetIdLinksResult": {
        "additionalProperties": false,
        "properties": {
          "data": {
            "additionalProperties": false,
            "properties": {
              "incoming": {
                "description": "The incoming value.",
                "items": {
                  "additionalProperties": false,
                  "properties": {
                    "created_at": {
                      "description": "The created at value.",
                      "format": "date-time",
                      "type": "string"
                    },
                    "created_by": {
                      "description": "The created by value.",
                      "nullable": true,
                      "type": "integer"
                    },
                    "created_by_name": {
                      "description": "The created by name value.",
                      "type": "string"
                    },
                    "custom_field_id": {
                      "description": "The custom field id value.",
                      "nullable": true,
                      "type": "integer"
                    },
                    "custom_field_name": {
                      "description": "The custom field name value.",
                      "type": "string"
                    },
                    "id": {
                      "description": "The id value.",
                      "type": "integer"
                    },
                    "link_type_color": {
                      "description": "The link type color value.",
                      "type": "string"
                    },
                    "link_type_forward_label": {
                      "description": "The link type forward label value.",
                      "type": "string"
                    },
                    "link_type_id": {
                      "description": "The link type id value.",
                      "type": "integer"
                    },
                    "link_type_name": {
                      "description": "The link type name value.",
                      "type": "string"
                    },
                    "link_type_reverse_label": {
                      "description": "The link type reverse label value.",
                      "type": "string"
                    },
                    "source_id": {
                      "description": "The source id value.",
                      "type": "integer"
                    },
                    "source_item_number": {
                      "description": "The source item number value.",
                      "nullable": true,
                      "type": "integer"
                    },
                    "source_item_type_color": {
                      "description": "The source item type color value.",
                      "type": "string"
                    },
                    "source_item_type_icon": {
                      "description": "The source item type icon value.",
                      "type": "string"
                    },
                    "source_item_type_id": {
                      "description": "The source item type id value.",
                      "nullable": true,
                      "type": "integer"
                    },
                    "source_item_type_name": {
                      "description": "The source item type name value.",
                      "type": "string"
                    },
                    "source_status_color": {
                      "description": "The source status color value.",
                      "type": "string"
                    },
                    "source_status_id": {
                      "description": "The source status id value.",
                      "nullable": true,
                      "type": "integer"
                    },
                    "source_status_name": {
                      "description": "The source status name value.",
                      "type": "string"
                    },
                    "source_title": {
                      "description": "The source title value.",
                      "type": "string"
                    },
                    "source_type": {
                      "description": "The source type value.",
                      "type": "string"
                    },
                    "source_workspace_id": {
                      "description": "The source workspace id value.",
                      "nullable": true,
                      "type": "integer"
                    },
                    "source_workspace_key": {
                      "description": "The source workspace key value.",
                      "type": "string"
                    },
                    "target_id": {
                      "description": "The target id value.",
                      "type": "integer"
                    },
                    "target_item_number": {
                      "description": "The target item number value.",
                      "nullable": true,
                      "type": "integer"
                    },
                    "target_item_type_color": {
                      "description": "The target item type color value.",
                      "type": "string"
                    },
                    "target_item_type_icon": {
                      "description": "The target item type icon value.",
                      "type": "string"
                    },
                    "target_item_type_id": {
                      "description": "The target item type id value.",
                      "nullable": true,
                      "type": "integer"
                    },
                    "target_item_type_name": {
                      "description": "The target item type name value.",
                      "type": "string"
                    },
                    "target_status_color": {
                      "description": "The target status color value.",
                      "type": "string"
                    },
                    "target_status_id": {
                      "description": "The target status id value.",
                      "nullable": true,
                      "type": "integer"
                    },
                    "target_status_name": {
                      "description": "The target status name value.",
                      "type": "string"
                    },
                    "target_title": {
                      "description": "The target title value.",
                      "type": "string"
                    },
                    "target_type": {
                      "description": "The target type value.",
                      "type": "string"
                    },
                    "target_workspace_id": {
                      "description": "The target workspace id value.",
                      "nullable": true,
                      "type": "integer"
                    },
                    "target_workspace_key": {
                      "description": "The target workspace key value.",
                      "type": "string"
                    }
                  },
                  "required": [
                    "created_at",
                    "id",
                    "link_type_id",
                    "source_id",
                    "source_type",
                    "target_id",
                    "target_type"
                  ],
                  "type": "object"
                },
                "type": "array"
              },
              "outgoing": {
                "description": "The outgoing value.",
                "items": {
                  "additionalProperties": false,
                  "properties": {
                    "created_at": {
                      "description": "The created at value.",
                      "format": "date-time",
                      "type": "string"
                    },
                    "created_by": {
                      "description": "The created by value.",
                      "nullable": true,
                      "type": "integer"
                    },
                    "created_by_name": {
                      "description": "The created by name value.",
                      "type": "string"
                    },
                    "custom_field_id": {
                      "description": "The custom field id value.",
                      "nullable": true,
                      "type": "integer"
                    },
                    "custom_field_name": {
                      "description": "The custom field name value.",
                      "type": "string"
                    },
                    "id": {
                      "description": "The id value.",
                      "type": "integer"
                    },
                    "link_type_color": {
                      "description": "The link type color value.",
                      "type": "string"
                    },
                    "link_type_forward_label": {
                      "description": "The link type forward label value.",
                      "type": "string"
                    },
                    "link_type_id": {
                      "description": "The link type id value.",
                      "type": "integer"
                    },
                    "link_type_name": {
                      "description": "The link type name value.",
                      "type": "string"
                    },
                    "link_type_reverse_label": {
                      "description": "The link type reverse label value.",
                      "type": "string"
                    },
                    "source_id": {
                      "description": "The source id value.",
                      "type": "integer"
                    },
                    "source_item_number": {
                      "description": "The source item number value.",
                      "nullable": true,
                      "type": "integer"
                    },
                    "source_item_type_color": {
                      "description": "The source item type color value.",
                      "type": "string"
                    },
                    "source_item_type_icon": {
                      "description": "The source item type icon value.",
                      "type": "string"
                    },
                    "source_item_type_id": {
                      "description": "The source item type id value.",
                      "nullable": true,
                      "type": "integer"
                    },
                    "source_item_type_name": {
                      "description": "The source item type name value.",
                      "type": "string"
                    },
                    "source_status_color": {
                      "description": "The source status color value.",
                      "type": "string"
                    },
                    "source_status_id": {
                      "description": "The source status id value.",
                      "nullable": true,
                      "type": "integer"
                    },
                    "source_status_name": {
                      "description": "The source status name value.",
                      "type": "string"
                    },
                    "source_title": {
                      "description": "The source title value.",
                      "type": "string"
                    },
                    "source_type": {
                      "description": "The source type value.",
                      "type": "string"
                    },
                    "source_workspace_id": {
                      "description": "The source workspace id value.",
                      "nullable": true,
                      "type": "integer"
                    },
                    "source_workspace_key": {
                      "description": "The source workspace key value.",
                      "type": "string"
                    },
                    "target_id": {
                      "description": "The target id value.",
                      "type": "integer"
                    },
                    "target_item_number": {
                      "description": "The target item number value.",
                      "nullable": true,
                      "type": "integer"
                    },
                    "target_item_type_color": {
                      "description": "The target item type color value.",
                      "type": "string"
                    },
                    "target_item_type_icon": {
                      "description": "The target item type icon value.",
                      "type": "string"
                    },
                    "target_item_type_id": {
                      "description": "The target item type id value.",
                      "nullable": true,
                      "type": "integer"
                    },
                    "target_item_type_name": {
                      "description": "The target item type name value.",
                      "type": "string"
                    },
                    "target_status_color": {
                      "description": "The target status color value.",
                      "type": "string"
                    },
                    "target_status_id": {
                      "description": "The target status id value.",
                      "nullable": true,
                      "type": "integer"
                    },
                    "target_status_name": {
                      "description": "The target status name value.",
                      "type": "string"
                    },
                    "target_title": {
                      "description": "The target title value.",
                      "type": "string"
                    },
                    "target_type": {
                      "description": "The target type value.",
                      "type": "string"
                    },
                    "target_workspace_id": {
                      "description": "The target workspace id value.",
                      "nullable": true,
                      "type": "integer"
                    },
                    "target_workspace_key": {
                      "description": "The target workspace key value.",
                      "type": "string"
                    }
                  },
                  "required": [
                    "created_at",
                    "id",
                    "link_type_id",
                    "source_id",
                    "source_type",
                    "target_id",
                    "target_type"
                  ],
                  "type": "object"
                },
                "type": "array"
              }
            },
            "required": [
              "incoming",
              "outgoing"
            ],
            "type": "object"
          }
        },
        "required": [
          "data"
        ],
        "type": "object"
      },
      "GetAssetsAssetIdRelationshipGraphResult": {
        "additionalProperties": false,
        "properties": {
          "data": {
            "additionalProperties": false,
            "properties": {
              "edges": {
                "description": "The edges value.",
                "items": {
                  "additionalProperties": false,
                  "properties": {
                    "color": {
                      "description": "The color value.",
                      "type": "string"
                    },
                    "edge_type": {
                      "description": "The edge type value.",
                      "type": "string"
                    },
                    "id": {
                      "description": "The id value.",
                      "type": "string"
                    },
                    "label": {
                      "description": "The label value.",
                      "type": "string"
                    },
                    "source": {
                      "description": "The source value.",
                      "type": "string"
                    },
                    "target": {
                      "description": "The target value.",
                      "type": "string"
                    }
                  },
                  "required": [
                    "edge_type",
                    "id",
                    "label",
                    "source",
                    "target"
                  ],
                  "type": "object"
                },
                "type": "array"
              },
              "nodes": {
                "description": "The nodes value.",
                "items": {
                  "additionalProperties": false,
                  "properties": {
                    "entity_id": {
                      "description": "The entity id value.",
                      "type": "integer"
                    },
                    "hop": {
                      "description": "The hop value.",
                      "type": "integer"
                    },
                    "id": {
                      "description": "The id value.",
                      "type": "string"
                    },
                    "is_origin": {
                      "description": "The is origin value.",
                      "type": "boolean"
                    },
                    "metadata": {
                      "additionalProperties": {
                        "description": "Arbitrary JSON extension value."
                      },
                      "description": "The metadata value.",
                      "type": "object"
                    },
                    "title": {
                      "description": "The title value.",
                      "type": "string"
                    },
                    "type": {
                      "description": "The type value.",
                      "type": "string"
                    }
                  },
                  "required": [
                    "entity_id",
                    "hop",
                    "id",
                    "is_origin",
                    "title",
                    "type"
                  ],
                  "type": "object"
                },
                "type": "array"
              },
              "total_count": {
                "description": "The total count value.",
                "type": "integer"
              },
              "truncated": {
                "description": "The truncated value.",
                "type": "boolean"
              }
            },
            "required": [
              "edges",
              "nodes",
              "total_count",
              "truncated"
            ],
            "type": "object"
          }
        },
        "required": [
          "data"
        ],
        "type": "object"
      },
      "GetAssetsAssetIdResult": {
        "additionalProperties": false,
        "properties": {
          "data": {
            "additionalProperties": false,
            "nullable": true,
            "properties": {
              "asset_tag": {
                "description": "The asset tag value.",
                "type": "string"
              },
              "asset_type_color": {
                "description": "The asset type color value.",
                "type": "string"
              },
              "asset_type_icon": {
                "description": "The asset type icon value.",
                "type": "string"
              },
              "asset_type_id": {
                "description": "The asset type id value.",
                "type": "integer"
              },
              "asset_type_name": {
                "description": "The asset type name value.",
                "type": "string"
              },
              "category_id": {
                "description": "The category id value.",
                "nullable": true,
                "type": "integer"
              },
              "category_name": {
                "description": "The category name value.",
                "type": "string"
              },
              "category_path": {
                "description": "The category path value.",
                "type": "string"
              },
              "created_at": {
                "description": "The created at value.",
                "format": "date-time",
                "type": "string"
              },
              "created_by": {
                "description": "The created by value.",
                "nullable": true,
                "type": "integer"
              },
              "creator_email": {
                "description": "The creator email value.",
                "type": "string"
              },
              "creator_name": {
                "description": "The creator name value.",
                "type": "string"
              },
              "custom_field_values": {
                "additionalProperties": {
                  "description": "Arbitrary JSON extension value."
                },
                "description": "The custom field values value.",
                "type": "object"
              },
              "description": {
                "description": "The description value.",
                "type": "string"
              },
              "frac_index": {
                "description": "The frac index value.",
                "nullable": true,
                "type": "string"
              },
              "id": {
                "description": "The id value.",
                "type": "integer"
              },
              "linked_item_count": {
                "description": "The linked item count value.",
                "type": "integer"
              },
              "set_id": {
                "description": "The set id value.",
                "type": "integer"
              },
              "set_name": {
                "description": "The set name value.",
                "type": "string"
              },
              "status_color": {
                "description": "The status color value.",
                "type": "string"
              },
              "status_id": {
                "description": "The status id value.",
                "nullable": true,
                "type": "integer"
              },
              "status_name": {
                "description": "The status name value.",
                "type": "string"
              },
              "title": {
                "description": "The title value.",
                "type": "string"
              },
              "updated_at": {
                "description": "The updated at value.",
                "format": "date-time",
                "type": "string"
              },
              "warnings": {
                "description": "The warnings value.",
                "items": {
                  "type": "string"
                },
                "type": "array"
              }
            },
            "required": [
              "asset_type_id",
              "created_at",
              "description",
              "id",
              "set_id",
              "title",
              "updated_at"
            ],
            "type": "object"
          }
        },
        "required": [
          "data"
        ],
        "type": "object"
      },
      "GetAttachmentsAttachmentIdContentResult": {
        "format": "binary",
        "type": "string"
      },
      "GetAttachmentsAttachmentIdResult": {
        "additionalProperties": false,
        "properties": {
          "data": {
            "additionalProperties": false,
            "properties": {
              "created_at": {
                "description": "The created at value.",
                "format": "date-time",
                "type": "string"
              },
              "file_size": {
                "description": "The file size value.",
                "type": "integer"
              },
              "filename": {
                "description": "The filename value.",
                "type": "string"
              },
              "has_thumbnail": {
                "description": "The has thumbnail value.",
                "type": "boolean"
              },
              "id": {
                "description": "The id value.",
                "type": "integer"
              },
              "item_id": {
                "description": "The item id value.",
                "nullable": true,
                "type": "integer"
              },
              "mime_type": {
                "description": "The mime type value.",
                "type": "string"
              },
              "original_filename": {
                "description": "The original filename value.",
                "type": "string"
              },
              "uploaded_by": {
                "description": "The uploaded by value.",
                "nullable": true,
                "type": "integer"
              },
              "uploader_email": {
                "description": "The uploader email value.",
                "type": "string"
              },
              "uploader_name": {
                "description": "The uploader name value.",
                "type": "string"
              }
            },
            "required": [
              "created_at",
              "file_size",
              "filename",
              "has_thumbnail",
              "id",
              "mime_type",
              "original_filename"
            ],
            "type": "object"
          }
        },
        "required": [
          "data"
        ],
        "type": "object"
      },
      "GetAttachmentsAttachmentIdThumbnailResult": {
        "format": "binary",
        "type": "string"
      },
      "GetCollectionCategoriesCategoryIdResult": {
        "additionalProperties": false,
        "properties": {
          "data": {
            "additionalProperties": false,
            "properties": {
              "color": {
                "description": "The color value.",
                "type": "string"
              },
              "created_at": {
                "description": "The created at value.",
                "format": "date-time",
                "type": "string"
              },
              "description": {
                "description": "The description value.",
                "type": "string"
              },
              "id": {
                "description": "The id value.",
                "type": "integer"
              },
              "name": {
                "description": "The name value.",
                "type": "string"
              },
              "updated_at": {
                "description": "The updated at value.",
                "format": "date-time",
                "type": "string"
              }
            },
            "required": [
              "color",
              "created_at",
              "description",
              "id",
              "name",
              "updated_at"
            ],
            "type": "object"
          }
        },
        "required": [
          "data"
        ],
        "type": "object"
      },
      "GetCollectionCategoriesResult": {
        "additionalProperties": false,
        "properties": {
          "data": {
            "items": {
              "additionalProperties": false,
              "properties": {
                "color": {
                  "description": "The color value.",
                  "type": "string"
                },
                "created_at": {
                  "description": "The created at value.",
                  "format": "date-time",
                  "type": "string"
                },
                "description": {
                  "description": "The description value.",
                  "type": "string"
                },
                "id": {
                  "description": "The id value.",
                  "type": "integer"
                },
                "name": {
                  "description": "The name value.",
                  "type": "string"
                },
                "updated_at": {
                  "description": "The updated at value.",
                  "format": "date-time",
                  "type": "string"
                }
              },
              "required": [
                "color",
                "created_at",
                "description",
                "id",
                "name",
                "updated_at"
              ],
              "type": "object"
            },
            "type": "array"
          },
          "pagination": {
            "$ref": "#/components/schemas/Pagination"
          }
        },
        "required": [
          "data",
          "pagination"
        ],
        "type": "object"
      },
      "GetCollectionsCollectionIdBoardConfigurationBootstrapResult": {
        "additionalProperties": false,
        "properties": {
          "data": {
            "additionalProperties": false,
            "properties": {
              "board_configuration": {
                "additionalProperties": false,
                "description": "The board configuration value.",
                "nullable": true,
                "properties": {
                  "backlog_status_ids": {
                    "description": "The backlog status ids value.",
                    "items": {
                      "type": "integer"
                    },
                    "type": "array"
                  },
                  "card_fields": {
                    "description": "The card fields value.",
                    "items": {
                      "additionalProperties": false,
                      "properties": {
                        "display_order": {
                          "description": "The display order value.",
                          "type": "integer"
                        },
                        "field_identifier": {
                          "description": "The field identifier value.",
                          "type": "string"
                        },
                        "field_type": {
                          "description": "The field type value.",
                          "type": "string"
                        },
                        "width": {
                          "description": "The width value.",
                          "type": "integer"
                        }
                      },
                      "required": [
                        "display_order",
                        "field_identifier",
                        "field_type",
                        "width"
                      ],
                      "type": "object"
                    },
                    "type": "array"
                  },
                  "collection_id": {
                    "description": "The collection id value.",
                    "nullable": true,
                    "type": "integer"
                  },
                  "columns": {
                    "description": "The columns value.",
                    "items": {
                      "additionalProperties": false,
                      "properties": {
                        "board_configuration_id": {
                          "description": "The board configuration id value.",
                          "type": "integer"
                        },
                        "color": {
                          "description": "The color value.",
                          "type": "string"
                        },
                        "created_at": {
                          "description": "The created at value.",
                          "format": "date-time",
                          "type": "string"
                        },
                        "display_order": {
                          "description": "The display order value.",
                          "type": "integer"
                        },
                        "id": {
                          "description": "The id value.",
                          "type": "integer"
                        },
                        "name": {
                          "description": "The name value.",
                          "type": "string"
                        },
                        "status_ids": {
                          "description": "The status ids value.",
                          "items": {
                            "type": "integer"
                          },
                          "type": "array"
                        },
                        "updated_at": {
                          "description": "The updated at value.",
                          "format": "date-time",
                          "type": "string"
                        },
                        "wip_limit": {
                          "description": "The wip limit value.",
                          "nullable": true,
                          "type": "integer"
                        }
                      },
                      "required": [
                        "board_configuration_id",
                        "color",
                        "created_at",
                        "display_order",
                        "id",
                        "name",
                        "updated_at"
                      ],
                      "type": "object"
                    },
                    "type": "array"
                  },
                  "completed_item_retention_days": {
                    "description": "The completed item retention days value.",
                    "nullable": true,
                    "type": "integer"
                  },
                  "created_at": {
                    "description": "The created at value.",
                    "format": "date-time",
                    "type": "string"
                  },
                  "id": {
                    "description": "The id value.",
                    "type": "integer"
                  },
                  "list_columns": {
                    "description": "The list columns value.",
                    "items": {
                      "additionalProperties": false,
                      "properties": {
                        "display_order": {
                          "description": "The display order value.",
                          "type": "integer"
                        },
                        "field_identifier": {
                          "description": "The field identifier value.",
                          "type": "string"
                        },
                        "field_type": {
                          "description": "The field type value.",
                          "type": "string"
                        },
                        "width": {
                          "description": "The width value.",
                          "type": "integer"
                        }
                      },
                      "required": [
                        "display_order",
                        "field_identifier",
                        "field_type",
                        "width"
                      ],
                      "type": "object"
                    },
                    "type": "array"
                  },
                  "roadmap_config": {
                    "additionalProperties": false,
                    "description": "The roadmap config value.",
                    "nullable": true,
                    "properties": {
                      "dependency_link_type_id": {
                        "description": "The dependency link type id value.",
                        "nullable": true,
                        "type": "integer"
                      },
                      "end_field_id": {
                        "description": "The end field id value.",
                        "type": "string"
                      },
                      "start_field_id": {
                        "description": "The start field id value.",
                        "type": "string"
                      }
                    },
                    "required": [
                      "end_field_id",
                      "start_field_id"
                    ],
                    "type": "object"
                  },
                  "show_rightmost_column_last_50": {
                    "description": "The show rightmost column last 50 value.",
                    "type": "boolean"
                  },
                  "updated_at": {
                    "description": "The updated at value.",
                    "format": "date-time",
                    "type": "string"
                  },
                  "workspace_id": {
                    "description": "The workspace id value.",
                    "nullable": true,
                    "type": "integer"
                  }
                },
                "required": [
                  "created_at",
                  "id",
                  "show_rightmost_column_last_50",
                  "updated_at"
                ],
                "type": "object"
              },
              "collection": {
                "additionalProperties": false,
                "description": "The collection value.",
                "nullable": true,
                "properties": {
                  "created_by": {
                    "description": "The created by value.",
                    "nullable": true,
                    "type": "integer"
                  },
                  "description": {
                    "description": "The description value.",
                    "type": "string"
                  },
                  "id": {
                    "description": "The id value.",
                    "type": "integer"
                  },
                  "is_public": {
                    "description": "The is public value.",
                    "type": "boolean"
                  },
                  "name": {
                    "description": "The name value.",
                    "type": "string"
                  },
                  "public_slug": {
                    "description": "The public slug value.",
                    "nullable": true,
                    "type": "string"
                  },
                  "ql_query": {
                    "description": "The ql query value.",
                    "type": "string"
                  },
                  "workspace_id": {
                    "description": "The workspace id value.",
                    "nullable": true,
                    "type": "integer"
                  }
                },
                "required": [
                  "description",
                  "id",
                  "is_public",
                  "name",
                  "ql_query"
                ],
                "type": "object"
              },
              "referenced_workspace_ids": {
                "description": "The referenced workspace ids value.",
                "items": {
                  "type": "integer"
                },
                "type": "array"
              },
              "statuses": {
                "description": "The statuses value.",
                "items": {
                  "additionalProperties": false,
                  "properties": {
                    "builtin_key": {
                      "description": "The builtin key value.",
                      "type": "string"
                    },
                    "category_builtin_key": {
                      "description": "The category builtin key value.",
                      "type": "string"
                    },
                    "category_color": {
                      "description": "The category color value.",
                      "type": "string"
                    },
                    "category_description": {
                      "description": "The category description value.",
                      "type": "string"
                    },
                    "category_id": {
                      "description": "The category id value.",
                      "type": "integer"
                    },
                    "category_is_default": {
                      "description": "The category is default value.",
                      "type": "boolean"
                    },
                    "category_name": {
                      "description": "The category name value.",
                      "type": "string"
                    },
                    "created_at": {
                      "description": "The created at value.",
                      "format": "date-time",
                      "type": "string"
                    },
                    "description": {
                      "description": "The description value.",
                      "type": "string"
                    },
                    "display_description": {
                      "description": "The display description value.",
                      "type": "string"
                    },
                    "display_name": {
                      "description": "The display name value.",
                      "type": "string"
                    },
                    "id": {
                      "description": "The id value.",
                      "type": "integer"
                    },
                    "is_completed": {
                      "description": "The is completed value.",
                      "type": "boolean"
                    },
                    "is_default": {
                      "description": "The is default value.",
                      "type": "boolean"
                    },
                    "name": {
                      "description": "The name value.",
                      "type": "string"
                    },
                    "updated_at": {
                      "description": "The updated at value.",
                      "format": "date-time",
                      "type": "string"
                    }
                  },
                  "required": [
                    "category_id",
                    "created_at",
                    "description",
                    "display_name",
                    "id",
                    "is_default",
                    "name",
                    "updated_at"
                  ],
                  "type": "object"
                },
                "type": "array"
              }
            },
            "required": [
              "referenced_workspace_ids",
              "statuses"
            ],
            "type": "object"
          }
        },
        "required": [
          "data"
        ],
        "type": "object"
      },
      "GetCollectionsCollectionIdBoardConfigurationResult": {
        "additionalProperties": false,
        "properties": {
          "data": {
            "additionalProperties": false,
            "properties": {
              "backlog_status_ids": {
                "description": "The backlog status ids value.",
                "items": {
                  "type": "integer"
                },
                "type": "array"
              },
              "card_fields": {
                "description": "The card fields value.",
                "items": {
                  "additionalProperties": false,
                  "properties": {
                    "display_order": {
                      "description": "The display order value.",
                      "type": "integer"
                    },
                    "field_identifier": {
                      "description": "The field identifier value.",
                      "type": "string"
                    },
                    "field_type": {
                      "description": "The field type value.",
                      "type": "string"
                    },
                    "width": {
                      "description": "The width value.",
                      "type": "integer"
                    }
                  },
                  "required": [
                    "display_order",
                    "field_identifier",
                    "field_type",
                    "width"
                  ],
                  "type": "object"
                },
                "type": "array"
              },
              "collection_id": {
                "description": "The collection id value.",
                "nullable": true,
                "type": "integer"
              },
              "columns": {
                "description": "The columns value.",
                "items": {
                  "additionalProperties": false,
                  "properties": {
                    "board_configuration_id": {
                      "description": "The board configuration id value.",
                      "type": "integer"
                    },
                    "color": {
                      "description": "The color value.",
                      "type": "string"
                    },
                    "created_at": {
                      "description": "The created at value.",
                      "format": "date-time",
                      "type": "string"
                    },
                    "display_order": {
                      "description": "The display order value.",
                      "type": "integer"
                    },
                    "id": {
                      "description": "The id value.",
                      "type": "integer"
                    },
                    "name": {
                      "description": "The name value.",
                      "type": "string"
                    },
                    "status_ids": {
                      "description": "The status ids value.",
                      "items": {
                        "type": "integer"
                      },
                      "type": "array"
                    },
                    "updated_at": {
                      "description": "The updated at value.",
                      "format": "date-time",
                      "type": "string"
                    },
                    "wip_limit": {
                      "description": "The wip limit value.",
                      "nullable": true,
                      "type": "integer"
                    }
                  },
                  "required": [
                    "board_configuration_id",
                    "color",
                    "created_at",
                    "display_order",
                    "id",
                    "name",
                    "updated_at"
                  ],
                  "type": "object"
                },
                "type": "array"
              },
              "completed_item_retention_days": {
                "description": "The completed item retention days value.",
                "nullable": true,
                "type": "integer"
              },
              "created_at": {
                "description": "The created at value.",
                "format": "date-time",
                "type": "string"
              },
              "id": {
                "description": "The id value.",
                "type": "integer"
              },
              "list_columns": {
                "description": "The list columns value.",
                "items": {
                  "additionalProperties": false,
                  "properties": {
                    "display_order": {
                      "description": "The display order value.",
                      "type": "integer"
                    },
                    "field_identifier": {
                      "description": "The field identifier value.",
                      "type": "string"
                    },
                    "field_type": {
                      "description": "The field type value.",
                      "type": "string"
                    },
                    "width": {
                      "description": "The width value.",
                      "type": "integer"
                    }
                  },
                  "required": [
                    "display_order",
                    "field_identifier",
                    "field_type",
                    "width"
                  ],
                  "type": "object"
                },
                "type": "array"
              },
              "roadmap_config": {
                "additionalProperties": false,
                "description": "The roadmap config value.",
                "nullable": true,
                "properties": {
                  "dependency_link_type_id": {
                    "description": "The dependency link type id value.",
                    "nullable": true,
                    "type": "integer"
                  },
                  "end_field_id": {
                    "description": "The end field id value.",
                    "type": "string"
                  },
                  "start_field_id": {
                    "description": "The start field id value.",
                    "type": "string"
                  }
                },
                "required": [
                  "end_field_id",
                  "start_field_id"
                ],
                "type": "object"
              },
              "show_rightmost_column_last_50": {
                "description": "The show rightmost column last 50 value.",
                "type": "boolean"
              },
              "updated_at": {
                "description": "The updated at value.",
                "format": "date-time",
                "type": "string"
              },
              "workspace_id": {
                "description": "The workspace id value.",
                "nullable": true,
                "type": "integer"
              }
            },
            "required": [
              "created_at",
              "id",
              "show_rightmost_column_last_50",
              "updated_at"
            ],
            "type": "object"
          }
        },
        "required": [
          "data"
        ],
        "type": "object"
      },
      "GetCollectionsCollectionIdResult": {
        "additionalProperties": false,
        "properties": {
          "data": {
            "additionalProperties": false,
            "properties": {
              "category_color": {
                "description": "The category color value.",
                "type": "string"
              },
              "category_id": {
                "description": "The category id value.",
                "nullable": true,
                "type": "integer"
              },
              "category_name": {
                "description": "The category name value.",
                "type": "string"
              },
              "created_at": {
                "description": "The created at value.",
                "type": "string"
              },
              "created_by": {
                "description": "The created by value.",
                "nullable": true,
                "type": "integer"
              },
              "creator_email": {
                "description": "The creator email value.",
                "type": "string"
              },
              "creator_name": {
                "description": "The creator name value.",
                "type": "string"
              },
              "description": {
                "description": "The description value.",
                "type": "string"
              },
              "filter_state": {
                "description": "The filter state value.",
                "nullable": true,
                "type": "string"
              },
              "id": {
                "description": "The id value.",
                "type": "integer"
              },
              "is_public": {
                "description": "The is public value.",
                "type": "boolean"
              },
              "name": {
                "description": "The name value.",
                "type": "string"
              },
              "public_slug": {
                "description": "The public slug value.",
                "nullable": true,
                "type": "string"
              },
              "ql_query": {
                "description": "The ql query value.",
                "type": "string"
              },
              "updated_at": {
                "description": "The updated at value.",
                "type": "string"
              },
              "workspace_id": {
                "description": "The workspace id value.",
                "nullable": true,
                "type": "integer"
              }
            },
            "required": [
              "created_at",
              "description",
              "id",
              "is_public",
              "name",
              "ql_query",
              "updated_at"
            ],
            "type": "object"
          }
        },
        "required": [
          "data"
        ],
        "type": "object"
      },
      "GetCollectionsCollectionIdTestCoverageConfigResult": {
        "additionalProperties": false,
        "properties": {
          "data": {
            "additionalProperties": false,
            "nullable": true,
            "properties": {
              "collection_id": {
                "description": "The collection id value.",
                "nullable": true,
                "type": "integer"
              },
              "created_at": {
                "description": "The created at value.",
                "format": "date-time",
                "type": "string"
              },
              "id": {
                "description": "The id value.",
                "type": "integer"
              },
              "requirement_item_type_ids": {
                "description": "The requirement item type ids value.",
                "items": {
                  "type": "integer"
                },
                "type": "array"
              },
              "updated_at": {
                "description": "The updated at value.",
                "format": "date-time",
                "type": "string"
              },
              "workspace_id": {
                "description": "The workspace id value.",
                "nullable": true,
                "type": "integer"
              }
            },
            "required": [
              "created_at",
              "id",
              "requirement_item_type_ids",
              "updated_at"
            ],
            "type": "object"
          }
        },
        "required": [
          "data"
        ],
        "type": "object"
      },
      "GetCollectionsCollectionIdTestCoverageRequirementsResult": {
        "additionalProperties": false,
        "properties": {
          "data": {
            "items": {
              "additionalProperties": false,
              "properties": {
                "is_covered": {
                  "description": "The is covered value.",
                  "type": "boolean"
                },
                "item_id": {
                  "description": "The item id value.",
                  "type": "integer"
                },
                "item_type_color": {
                  "description": "The item type color value.",
                  "type": "string"
                },
                "item_type_icon": {
                  "description": "The item type icon value.",
                  "type": "string"
                },
                "item_type_id": {
                  "description": "The item type id value.",
                  "type": "integer"
                },
                "item_type_name": {
                  "description": "The item type name value.",
                  "type": "string"
                },
                "linked_test_count": {
                  "description": "The linked test count value.",
                  "type": "integer"
                },
                "status_id": {
                  "description": "The status id value.",
                  "nullable": true,
                  "type": "integer"
                },
                "status_name": {
                  "description": "The status name value.",
                  "type": "string"
                },
                "title": {
                  "description": "The title value.",
                  "type": "string"
                },
                "workspace_item_number": {
                  "description": "The workspace item number value.",
                  "type": "integer"
                },
                "workspace_key": {
                  "description": "The workspace key value.",
                  "type": "string"
                }
              },
              "required": [
                "is_covered",
                "item_id",
                "item_type_color",
                "item_type_icon",
                "item_type_id",
                "item_type_name",
                "linked_test_count",
                "title",
                "workspace_item_number",
                "workspace_key"
              ],
              "type": "object"
            },
            "type": "array"
          },
          "meta": {
            "additionalProperties": false,
            "properties": {
              "summary": {
                "additionalProperties": false,
                "description": "The summary value.",
                "properties": {
                  "coverage_rate": {
                    "description": "The coverage rate value.",
                    "type": "number"
                  },
                  "covered": {
                    "description": "The covered value.",
                    "type": "integer"
                  },
                  "not_covered": {
                    "description": "The not covered value.",
                    "type": "integer"
                  },
                  "total": {
                    "description": "The total value.",
                    "type": "integer"
                  }
                },
                "required": [
                  "coverage_rate",
                  "covered",
                  "not_covered",
                  "total"
                ],
                "type": "object"
              }
            },
            "required": [
              "summary"
            ],
            "type": "object"
          },
          "pagination": {
            "$ref": "#/components/schemas/Pagination"
          }
        },
        "required": [
          "data",
          "pagination",
          "meta"
        ],
        "type": "object"
      },
      "GetCollectionsCollectionIdTestCoverageSummaryResult": {
        "additionalProperties": false,
        "properties": {
          "data": {
            "additionalProperties": false,
            "properties": {
              "coverage_rate": {
                "description": "The coverage rate value.",
                "type": "number"
              },
              "covered": {
                "description": "The covered value.",
                "type": "integer"
              },
              "not_covered": {
                "description": "The not covered value.",
                "type": "integer"
              },
              "total": {
                "description": "The total value.",
                "type": "integer"
              }
            },
            "required": [
              "coverage_rate",
              "covered",
              "not_covered",
              "total"
            ],
            "type": "object"
          }
        },
        "required": [
          "data"
        ],
        "type": "object"
      },
      "GetCollectionsResult": {
        "additionalProperties": false,
        "properties": {
          "data": {
            "items": {
              "additionalProperties": false,
              "properties": {
                "category_color": {
                  "description": "The category color value.",
                  "type": "string"
                },
                "category_id": {
                  "description": "The category id value.",
                  "nullable": true,
                  "type": "integer"
                },
                "category_name": {
                  "description": "The category name value.",
                  "type": "string"
                },
                "created_at": {
                  "description": "The created at value.",
                  "type": "string"
                },
                "created_by": {
                  "description": "The created by value.",
                  "nullable": true,
                  "type": "integer"
                },
                "creator_email": {
                  "description": "The creator email value.",
                  "type": "string"
                },
                "creator_name": {
                  "description": "The creator name value.",
                  "type": "string"
                },
                "description": {
                  "description": "The description value.",
                  "type": "string"
                },
                "filter_state": {
                  "description": "The filter state value.",
                  "nullable": true,
                  "type": "string"
                },
                "id": {
                  "description": "The id value.",
                  "type": "integer"
                },
                "is_public": {
                  "description": "The is public value.",
                  "type": "boolean"
                },
                "name": {
                  "description": "The name value.",
                  "type": "string"
                },
                "public_slug": {
                  "description": "The public slug value.",
                  "nullable": true,
                  "type": "string"
                },
                "ql_query": {
                  "description": "The ql query value.",
                  "type": "string"
                },
                "updated_at": {
                  "description": "The updated at value.",
                  "type": "string"
                },
                "workspace_id": {
                  "description": "The workspace id value.",
                  "nullable": true,
                  "type": "integer"
                }
              },
              "required": [
                "created_at",
                "description",
                "id",
                "is_public",
                "name",
                "ql_query",
                "updated_at"
              ],
              "type": "object"
            },
            "type": "array"
          },
          "pagination": {
            "$ref": "#/components/schemas/Pagination"
          }
        },
        "required": [
          "data",
          "pagination"
        ],
        "type": "object"
      },
      "GetCommentsCommentIdResult": {
        "additionalProperties": false,
        "properties": {
          "data": {
            "additionalProperties": false,
            "properties": {
              "agent_owner_name": {
                "description": "The agent owner name value.",
                "type": "string"
              },
              "author_avatar": {
                "description": "The author avatar value.",
                "type": "string"
              },
              "author_email": {
                "description": "The author email value.",
                "type": "string"
              },
              "author_id": {
                "description": "The author id value.",
                "nullable": true,
                "type": "integer"
              },
              "author_name": {
                "description": "The author name value.",
                "type": "string"
              },
              "content": {
                "description": "The content value.",
                "type": "string"
              },
              "content_html": {
                "description": "The content html value.",
                "type": "string"
              },
              "created_at": {
                "description": "The created at value.",
                "format": "date-time",
                "type": "string"
              },
              "id": {
                "description": "The id value.",
                "type": "integer"
              },
              "is_agent": {
                "description": "The is agent value.",
                "type": "boolean"
              },
              "is_private": {
                "description": "The is private value.",
                "type": "boolean"
              },
              "item_id": {
                "description": "The item id value.",
                "type": "integer"
              },
              "portal_customer_id": {
                "description": "The portal customer id value.",
                "nullable": true,
                "type": "integer"
              },
              "source": {
                "description": "The source value.",
                "type": "string"
              },
              "updated_at": {
                "description": "The updated at value.",
                "format": "date-time",
                "type": "string"
              }
            },
            "required": [
              "content",
              "created_at",
              "id",
              "is_private",
              "item_id",
              "source",
              "updated_at"
            ],
            "type": "object"
          }
        },
        "required": [
          "data"
        ],
        "type": "object"
      },
      "GetConditionSetsConditionSetIdResult": {
        "additionalProperties": false,
        "properties": {
          "data": {
            "additionalProperties": false,
            "properties": {
              "created_at": {
                "description": "The created at value.",
                "format": "date-time",
                "type": "string"
              },
              "description": {
                "description": "The description value.",
                "type": "string"
              },
              "gated_transitions": {
                "description": "The gated transitions value.",
                "items": {
                  "additionalProperties": false,
                  "properties": {
                    "from_status_name": {
                      "description": "The from status name value.",
                      "type": "string"
                    },
                    "to_status_name": {
                      "description": "The to status name value.",
                      "type": "string"
                    },
                    "transition_id": {
                      "description": "The transition id value.",
                      "type": "integer"
                    }
                  },
                  "required": [
                    "to_status_name",
                    "transition_id"
                  ],
                  "type": "object"
                },
                "type": "array"
              },
              "id": {
                "description": "The id value.",
                "type": "integer"
              },
              "name": {
                "description": "The name value.",
                "type": "string"
              },
              "transition_conditions": {
                "description": "The transition conditions value.",
                "items": {
                  "additionalProperties": false,
                  "properties": {
                    "condition_set_id": {
                      "description": "The condition set id value.",
                      "type": "integer"
                    },
                    "conditions": {
                      "description": "The conditions value.",
                      "items": {
                        "additionalProperties": false,
                        "properties": {
                          "condition_set_transition_id": {
                            "description": "The condition set transition id value.",
                            "type": "integer"
                          },
                          "condition_type": {
                            "description": "The condition type value.",
                            "type": "string"
                          },
                          "config": {
                            "description": "The config value.",
                            "format": "byte",
                            "type": "string"
                          },
                          "display_order": {
                            "description": "The display order value.",
                            "type": "integer"
                          },
                          "error_message": {
                            "description": "The error message value.",
                            "type": "string"
                          },
                          "id": {
                            "description": "The id value.",
                            "type": "integer"
                          },
                          "mode": {
                            "description": "The mode value.",
                            "type": "string"
                          }
                        },
                        "required": [
                          "condition_set_transition_id",
                          "condition_type",
                          "config",
                          "display_order",
                          "id",
                          "mode"
                        ],
                        "type": "object"
                      },
                      "type": "array"
                    },
                    "from_status_name": {
                      "description": "The from status name value.",
                      "type": "string"
                    },
                    "id": {
                      "description": "The id value.",
                      "type": "integer"
                    },
                    "logic_mode": {
                      "description": "The logic mode value.",
                      "type": "string"
                    },
                    "to_status_name": {
                      "description": "The to status name value.",
                      "type": "string"
                    },
                    "transition_id": {
                      "description": "The transition id value.",
                      "type": "integer"
                    }
                  },
                  "required": [
                    "condition_set_id",
                    "id",
                    "logic_mode",
                    "transition_id"
                  ],
                  "type": "object"
                },
                "type": "array"
              },
              "updated_at": {
                "description": "The updated at value.",
                "format": "date-time",
                "type": "string"
              },
              "workflow_id": {
                "description": "The workflow id value.",
                "type": "integer"
              },
              "workflow_name": {
                "description": "The workflow name value.",
                "type": "string"
              }
            },
            "required": [
              "created_at",
              "description",
              "id",
              "name",
              "updated_at",
              "workflow_id"
            ],
            "type": "object"
          }
        },
        "required": [
          "data"
        ],
        "type": "object"
      },
      "GetConditionSetsResult": {
        "additionalProperties": false,
        "properties": {
          "data": {
            "items": {
              "additionalProperties": false,
              "properties": {
                "created_at": {
                  "description": "The created at value.",
                  "format": "date-time",
                  "type": "string"
                },
                "description": {
                  "description": "The description value.",
                  "type": "string"
                },
                "gated_transitions": {
                  "description": "The gated transitions value.",
                  "items": {
                    "additionalProperties": false,
                    "properties": {
                      "from_status_name": {
                        "description": "The from status name value.",
                        "type": "string"
                      },
                      "to_status_name": {
                        "description": "The to status name value.",
                        "type": "string"
                      },
                      "transition_id": {
                        "description": "The transition id value.",
                        "type": "integer"
                      }
                    },
                    "required": [
                      "to_status_name",
                      "transition_id"
                    ],
                    "type": "object"
                  },
                  "type": "array"
                },
                "id": {
                  "description": "The id value.",
                  "type": "integer"
                },
                "name": {
                  "description": "The name value.",
                  "type": "string"
                },
                "transition_conditions": {
                  "description": "The transition conditions value.",
                  "items": {
                    "additionalProperties": false,
                    "properties": {
                      "condition_set_id": {
                        "description": "The condition set id value.",
                        "type": "integer"
                      },
                      "conditions": {
                        "description": "The conditions value.",
                        "items": {
                          "additionalProperties": false,
                          "properties": {
                            "condition_set_transition_id": {
                              "description": "The condition set transition id value.",
                              "type": "integer"
                            },
                            "condition_type": {
                              "description": "The condition type value.",
                              "type": "string"
                            },
                            "config": {
                              "description": "The config value.",
                              "format": "byte",
                              "type": "string"
                            },
                            "display_order": {
                              "description": "The display order value.",
                              "type": "integer"
                            },
                            "error_message": {
                              "description": "The error message value.",
                              "type": "string"
                            },
                            "id": {
                              "description": "The id value.",
                              "type": "integer"
                            },
                            "mode": {
                              "description": "The mode value.",
                              "type": "string"
                            }
                          },
                          "required": [
                            "condition_set_transition_id",
                            "condition_type",
                            "config",
                            "display_order",
                            "id",
                            "mode"
                          ],
                          "type": "object"
                        },
                        "type": "array"
                      },
                      "from_status_name": {
                        "description": "The from status name value.",
                        "type": "string"
                      },
                      "id": {
                        "description": "The id value.",
                        "type": "integer"
                      },
                      "logic_mode": {
                        "description": "The logic mode value.",
                        "type": "string"
                      },
                      "to_status_name": {
                        "description": "The to status name value.",
                        "type": "string"
                      },
                      "transition_id": {
                        "description": "The transition id value.",
                        "type": "integer"
                      }
                    },
                    "required": [
                      "condition_set_id",
                      "id",
                      "logic_mode",
                      "transition_id"
                    ],
                    "type": "object"
                  },
                  "type": "array"
                },
                "updated_at": {
                  "description": "The updated at value.",
                  "format": "date-time",
                  "type": "string"
                },
                "workflow_id": {
                  "description": "The workflow id value.",
                  "type": "integer"
                },
                "workflow_name": {
                  "description": "The workflow name value.",
                  "type": "string"
                }
              },
              "required": [
                "created_at",
                "description",
                "id",
                "name",
                "updated_at",
                "workflow_id"
              ],
              "type": "object"
            },
            "type": "array"
          },
          "pagination": {
            "$ref": "#/components/schemas/Pagination"
          }
        },
        "required": [
          "data",
          "pagination"
        ],
        "type": "object"
      },
      "GetCustomFieldsCustomFieldIdResult": {
        "additionalProperties": false,
        "properties": {
          "data": {
            "additionalProperties": false,
            "properties": {
              "applies_to_customer_organisations": {
                "description": "The applies to customer organisations value.",
                "type": "boolean"
              },
              "applies_to_portal_customers": {
                "description": "The applies to portal customers value.",
                "type": "boolean"
              },
              "asset_type_usages": {
                "description": "The asset type usages value.",
                "items": {
                  "additionalProperties": false,
                  "properties": {
                    "asset_type_name": {
                      "description": "The asset type name value.",
                      "type": "string"
                    },
                    "set_name": {
                      "description": "The set name value.",
                      "type": "string"
                    }
                  },
                  "required": [
                    "asset_type_name",
                    "set_name"
                  ],
                  "type": "object"
                },
                "type": "array"
              },
              "description": {
                "description": "The description value.",
                "type": "string"
              },
              "display_order": {
                "description": "The display order value.",
                "type": "integer"
              },
              "field_type": {
                "description": "The field type value.",
                "type": "string"
              },
              "id": {
                "description": "The id value.",
                "type": "integer"
              },
              "indexed": {
                "additionalProperties": false,
                "description": "The indexed value.",
                "properties": {
                  "assets": {
                    "description": "The assets value.",
                    "type": "boolean"
                  },
                  "items": {
                    "description": "The items value.",
                    "type": "boolean"
                  }
                },
                "required": [
                  "assets",
                  "items"
                ],
                "type": "object"
              },
              "name": {
                "description": "The name value.",
                "type": "string"
              },
              "options": {
                "additionalProperties": {
                  "description": "Arbitrary JSON extension value."
                },
                "description": "The options value.",
                "type": "object"
              },
              "required": {
                "description": "The required value.",
                "type": "boolean"
              },
              "system_default": {
                "description": "The system default value.",
                "type": "boolean"
              }
            },
            "required": [
              "applies_to_customer_organisations",
              "applies_to_portal_customers",
              "asset_type_usages",
              "description",
              "display_order",
              "field_type",
              "id",
              "indexed",
              "name",
              "options",
              "required",
              "system_default"
            ],
            "type": "object"
          }
        },
        "required": [
          "data"
        ],
        "type": "object"
      },
      "GetCustomFieldsResult": {
        "additionalProperties": false,
        "properties": {
          "data": {
            "items": {
              "additionalProperties": false,
              "properties": {
                "applies_to_customer_organisations": {
                  "description": "The applies to customer organisations value.",
                  "type": "boolean"
                },
                "applies_to_portal_customers": {
                  "description": "The applies to portal customers value.",
                  "type": "boolean"
                },
                "asset_type_usages": {
                  "description": "The asset type usages value.",
                  "items": {
                    "additionalProperties": false,
                    "properties": {
                      "asset_type_name": {
                        "description": "The asset type name value.",
                        "type": "string"
                      },
                      "set_name": {
                        "description": "The set name value.",
                        "type": "string"
                      }
                    },
                    "required": [
                      "asset_type_name",
                      "set_name"
                    ],
                    "type": "object"
                  },
                  "type": "array"
                },
                "description": {
                  "description": "The description value.",
                  "type": "string"
                },
                "display_order": {
                  "description": "The display order value.",
                  "type": "integer"
                },
                "field_type": {
                  "description": "The field type value.",
                  "type": "string"
                },
                "id": {
                  "description": "The id value.",
                  "type": "integer"
                },
                "indexed": {
                  "additionalProperties": false,
                  "description": "The indexed value.",
                  "properties": {
                    "assets": {
                      "description": "The assets value.",
                      "type": "boolean"
                    },
                    "items": {
                      "description": "The items value.",
                      "type": "boolean"
                    }
                  },
                  "required": [
                    "assets",
                    "items"
                  ],
                  "type": "object"
                },
                "name": {
                  "description": "The name value.",
                  "type": "string"
                },
                "options": {
                  "additionalProperties": {
                    "description": "Arbitrary JSON extension value."
                  },
                  "description": "The options value.",
                  "type": "object"
                },
                "required": {
                  "description": "The required value.",
                  "type": "boolean"
                },
                "system_default": {
                  "description": "The system default value.",
                  "type": "boolean"
                }
              },
              "required": [
                "applies_to_customer_organisations",
                "applies_to_portal_customers",
                "asset_type_usages",
                "description",
                "display_order",
                "field_type",
                "id",
                "indexed",
                "name",
                "options",
                "required",
                "system_default"
              ],
              "type": "object"
            },
            "type": "array"
          },
          "meta": {
            "additionalProperties": false,
            "properties": {
              "index_counts": {
                "additionalProperties": {
                  "additionalProperties": false,
                  "properties": {
                    "current": {
                      "description": "The current value.",
                      "type": "integer"
                    },
                    "max": {
                      "description": "The max value.",
                      "type": "integer"
                    }
                  },
                  "required": [
                    "current",
                    "max"
                  ],
                  "type": "object"
                },
                "description": "The index counts value.",
                "type": "object"
              }
            },
            "required": [
              "index_counts"
            ],
            "type": "object"
          }
        },
        "required": [
          "data",
          "meta"
        ],
        "type": "object"
      },
      "GetItemDiagramsDiagramIdResult": {
        "additionalProperties": false,
        "properties": {
          "data": {
            "additionalProperties": false,
            "properties": {
              "created_at": {
                "description": "The created at value.",
                "format": "date-time",
                "type": "string"
              },
              "created_by": {
                "description": "The created by value.",
                "nullable": true,
                "type": "integer"
              },
              "creator_email": {
                "description": "The creator email value.",
                "type": "string"
              },
              "creator_name": {
                "description": "The creator name value.",
                "type": "string"
              },
              "diagram_data": {
                "description": "The diagram data value.",
                "type": "string"
              },
              "id": {
                "description": "The id value.",
                "type": "integer"
              },
              "item_id": {
                "description": "The item id value.",
                "type": "integer"
              },
              "name": {
                "description": "The name value.",
                "type": "string"
              },
              "updated_at": {
                "description": "The updated at value.",
                "format": "date-time",
                "type": "string"
              },
              "updated_by": {
                "description": "The updated by value.",
                "nullable": true,
                "type": "integer"
              },
              "updated_by_email": {
                "description": "The updated by email value.",
                "type": "string"
              },
              "updated_by_name": {
                "description": "The updated by name value.",
                "type": "string"
              }
            },
            "required": [
              "created_at",
              "creator_email",
              "creator_name",
              "diagram_data",
              "id",
              "item_id",
              "name",
              "updated_at",
              "updated_by_email",
              "updated_by_name"
            ],
            "type": "object"
          }
        },
        "required": [
          "data"
        ],
        "type": "object"
      },
      "GetItemTypesItemTypeIdResult": {
        "additionalProperties": false,
        "properties": {
          "data": {
            "additionalProperties": false,
            "properties": {
              "builtin_key": {
                "description": "The builtin key value.",
                "nullable": true,
                "type": "string"
              },
              "color": {
                "description": "The color value.",
                "type": "string"
              },
              "description": {
                "description": "The description value.",
                "type": "string"
              },
              "display_description": {
                "description": "The display description value.",
                "type": "string"
              },
              "display_name": {
                "description": "The display name value.",
                "type": "string"
              },
              "hierarchy_level": {
                "description": "The hierarchy level value.",
                "type": "integer"
              },
              "icon": {
                "description": "The icon value.",
                "type": "string"
              },
              "id": {
                "description": "The id value.",
                "type": "integer"
              },
              "is_default": {
                "description": "The is default value.",
                "type": "boolean"
              },
              "name": {
                "description": "The name value.",
                "type": "string"
              },
              "sort_order": {
                "description": "The sort order value.",
                "type": "integer"
              }
            },
            "required": [
              "color",
              "description",
              "display_description",
              "display_name",
              "hierarchy_level",
              "icon",
              "id",
              "is_default",
              "name",
              "sort_order"
            ],
            "type": "object"
          }
        },
        "required": [
          "data"
        ],
        "type": "object"
      },
      "GetItemTypesResult": {
        "additionalProperties": false,
        "properties": {
          "data": {
            "items": {
              "additionalProperties": false,
              "properties": {
                "builtin_key": {
                  "description": "The builtin key value.",
                  "nullable": true,
                  "type": "string"
                },
                "color": {
                  "description": "The color value.",
                  "type": "string"
                },
                "description": {
                  "description": "The description value.",
                  "type": "string"
                },
                "display_description": {
                  "description": "The display description value.",
                  "type": "string"
                },
                "display_name": {
                  "description": "The display name value.",
                  "type": "string"
                },
                "hierarchy_level": {
                  "description": "The hierarchy level value.",
                  "type": "integer"
                },
                "icon": {
                  "description": "The icon value.",
                  "type": "string"
                },
                "id": {
                  "description": "The id value.",
                  "type": "integer"
                },
                "is_default": {
                  "description": "The is default value.",
                  "type": "boolean"
                },
                "name": {
                  "description": "The name value.",
                  "type": "string"
                },
                "sort_order": {
                  "description": "The sort order value.",
                  "type": "integer"
                }
              },
              "required": [
                "color",
                "description",
                "display_description",
                "display_name",
                "hierarchy_level",
                "icon",
                "id",
                "is_default",
                "name",
                "sort_order"
              ],
              "type": "object"
            },
            "type": "array"
          }
        },
        "required": [
          "data"
        ],
        "type": "object"
      },
      "GetItemsBacklogResult": {
        "additionalProperties": false,
        "properties": {
          "data": {
            "items": {
              "additionalProperties": false,
              "properties": {
                "assignee_avatar": {
                  "description": "The assignee avatar value.",
                  "type": "string"
                },
                "assignee_email": {
                  "description": "The assignee email value.",
                  "type": "string"
                },
                "assignee_id": {
                  "description": "The assignee id value.",
                  "nullable": true,
                  "type": "integer"
                },
                "assignee_name": {
                  "description": "The assignee name value.",
                  "type": "string"
                },
                "calendar_data": {
                  "description": "The calendar data value.",
                  "items": {
                    "additionalProperties": false,
                    "properties": {
                      "created_at": {
                        "description": "The created at value.",
                        "type": "string"
                      },
                      "duration_minutes": {
                        "description": "The duration minutes value.",
                        "type": "integer"
                      },
                      "notes": {
                        "description": "The notes value.",
                        "type": "string"
                      },
                      "scheduled_date": {
                        "description": "The scheduled date value.",
                        "type": "string"
                      },
                      "scheduled_time": {
                        "description": "The scheduled time value.",
                        "type": "string"
                      },
                      "user_id": {
                        "description": "The user id value.",
                        "type": "integer"
                      },
                      "workspace_id": {
                        "description": "The workspace id value.",
                        "type": "integer"
                      }
                    },
                    "required": [
                      "created_at",
                      "scheduled_date",
                      "user_id",
                      "workspace_id"
                    ],
                    "type": "object"
                  },
                  "type": "array"
                },
                "channel_id": {
                  "description": "The channel id value.",
                  "nullable": true,
                  "type": "integer"
                },
                "channel_name": {
                  "description": "The channel name value.",
                  "type": "string"
                },
                "children": {
                  "description": "The children value.",
                  "items": {
                    "description": "Nested resource reference.",
                    "type": "object"
                  },
                  "type": "array"
                },
                "completed_at": {
                  "description": "The completed at value.",
                  "format": "date-time",
                  "nullable": true,
                  "type": "string"
                },
                "created_at": {
                  "description": "The created at value.",
                  "format": "date-time",
                  "type": "string"
                },
                "creator_email": {
                  "description": "The creator email value.",
                  "type": "string"
                },
                "creator_id": {
                  "description": "The creator id value.",
                  "nullable": true,
                  "type": "integer"
                },
                "creator_name": {
                  "description": "The creator name value.",
                  "type": "string"
                },
                "creator_portal_customer_email": {
                  "description": "The creator portal customer email value.",
                  "type": "string"
                },
                "creator_portal_customer_id": {
                  "description": "The creator portal customer id value.",
                  "nullable": true,
                  "type": "integer"
                },
                "creator_portal_customer_name": {
                  "description": "The creator portal customer name value.",
                  "type": "string"
                },
                "custom_field_values": {
                  "additionalProperties": {
                    "description": "Arbitrary JSON extension value."
                  },
                  "description": "The custom field values value.",
                  "type": "object"
                },
                "description": {
                  "description": "The description value.",
                  "type": "string"
                },
                "description_html": {
                  "description": "The description html value.",
                  "type": "string"
                },
                "due_date": {
                  "description": "The due date value.",
                  "format": "date-time",
                  "nullable": true,
                  "type": "string"
                },
                "effective_project_id": {
                  "description": "The effective project id value.",
                  "nullable": true,
                  "type": "integer"
                },
                "effective_project_name": {
                  "description": "The effective project name value.",
                  "type": "string"
                },
                "end_date": {
                  "description": "The end date value.",
                  "format": "date-time",
                  "nullable": true,
                  "type": "string"
                },
                "estimate_minutes": {
                  "description": "The estimate minutes value.",
                  "nullable": true,
                  "type": "integer"
                },
                "frac_index": {
                  "description": "The frac index value.",
                  "nullable": true,
                  "type": "string"
                },
                "id": {
                  "description": "The id value.",
                  "type": "integer"
                },
                "inherit_project": {
                  "description": "The inherit project value.",
                  "type": "boolean"
                },
                "is_task": {
                  "description": "Whether the item is a personal task. True is valid only in the authenticated caller's personal workspace and only with the Open or Done system status.",
                  "type": "boolean"
                },
                "item_type_builtin_key": {
                  "description": "The item type builtin key value.",
                  "type": "string"
                },
                "item_type_id": {
                  "description": "The item type id value.",
                  "nullable": true,
                  "type": "integer"
                },
                "item_type_name": {
                  "description": "The item type name value.",
                  "type": "string"
                },
                "iteration_end_date": {
                  "description": "The iteration end date value.",
                  "type": "string"
                },
                "iteration_id": {
                  "description": "The iteration id value.",
                  "nullable": true,
                  "type": "integer"
                },
                "iteration_name": {
                  "description": "The iteration name value.",
                  "type": "string"
                },
                "key": {
                  "description": "The key value.",
                  "type": "string"
                },
                "labels": {
                  "description": "The labels value.",
                  "items": {
                    "additionalProperties": false,
                    "properties": {
                      "color": {
                        "description": "The color value.",
                        "type": "string"
                      },
                      "created_at": {
                        "description": "The created at value.",
                        "format": "date-time",
                        "type": "string"
                      },
                      "id": {
                        "description": "The id value.",
                        "type": "integer"
                      },
                      "name": {
                        "description": "The name value.",
                        "type": "string"
                      },
                      "updated_at": {
                        "description": "The updated at value.",
                        "format": "date-time",
                        "type": "string"
                      }
                    },
                    "required": [
                      "color",
                      "created_at",
                      "id",
                      "name",
                      "updated_at"
                    ],
                    "type": "object"
                  },
                  "type": "array"
                },
                "last_active_at": {
                  "description": "The last active at value.",
                  "format": "date-time",
                  "type": "string"
                },
                "milestones": {
                  "description": "The milestones value.",
                  "items": {
                    "additionalProperties": false,
                    "properties": {
                      "category_color": {
                        "description": "The category color value.",
                        "type": "string"
                      },
                      "category_id": {
                        "description": "The category id value.",
                        "nullable": true,
                        "type": "integer"
                      },
                      "category_name": {
                        "description": "The category name value.",
                        "type": "string"
                      },
                      "created_at": {
                        "description": "The created at value.",
                        "format": "date-time",
                        "type": "string"
                      },
                      "description": {
                        "description": "The description value.",
                        "type": "string"
                      },
                      "external_key": {
                        "description": "The external key value.",
                        "nullable": true,
                        "type": "string"
                      },
                      "id": {
                        "description": "The id value.",
                        "type": "integer"
                      },
                      "is_global": {
                        "description": "The is global value.",
                        "type": "boolean"
                      },
                      "latest_release": {
                        "additionalProperties": false,
                        "description": "The latest release value.",
                        "nullable": true,
                        "properties": {
                          "body": {
                            "description": "The body value.",
                            "type": "string"
                          },
                          "created_at": {
                            "description": "The created at value.",
                            "type": "string"
                          },
                          "created_by": {
                            "description": "The created by value.",
                            "nullable": true,
                            "type": "integer"
                          },
                          "id": {
                            "description": "The id value.",
                            "type": "integer"
                          },
                          "is_draft": {
                            "description": "The is draft value.",
                            "type": "boolean"
                          },
                          "is_prerelease": {
                            "description": "The is prerelease value.",
                            "type": "boolean"
                          },
                          "milestone_id": {
                            "description": "The milestone id value.",
                            "type": "integer"
                          },
                          "name": {
                            "description": "The name value.",
                            "type": "string"
                          },
                          "scm_connection_id": {
                            "description": "The scm connection id value.",
                            "nullable": true,
                            "type": "integer"
                          },
                          "scm_release_id": {
                            "description": "The scm release id value.",
                            "nullable": true,
                            "type": "string"
                          },
                          "scm_release_url": {
                            "description": "The scm release url value.",
                            "nullable": true,
                            "type": "string"
                          },
                          "scm_repository": {
                            "description": "The scm repository value.",
                            "nullable": true,
                            "type": "string"
                          },
                          "tag_name": {
                            "description": "The tag name value.",
                            "type": "string"
                          },
                          "target_commitish": {
                            "description": "The target commitish value.",
                            "type": "string"
                          }
                        },
                        "required": [
                          "created_at",
                          "id",
                          "is_draft",
                          "is_prerelease",
                          "milestone_id",
                          "tag_name"
                        ],
                        "type": "object"
                      },
                      "name": {
                        "description": "The name value.",
                        "type": "string"
                      },
                      "position": {
                        "description": "The position value.",
                        "type": "integer"
                      },
                      "releases": {
                        "description": "The releases value.",
                        "items": {
                          "additionalProperties": false,
                          "properties": {
                            "body": {
                              "description": "The body value.",
                              "type": "string"
                            },
                            "created_at": {
                              "description": "The created at value.",
                              "type": "string"
                            },
                            "created_by": {
                              "description": "The created by value.",
                              "nullable": true,
                              "type": "integer"
                            },
                            "id": {
                              "description": "The id value.",
                              "type": "integer"
                            },
                            "is_draft": {
                              "description": "The is draft value.",
                              "type": "boolean"
                            },
                            "is_prerelease": {
                              "description": "The is prerelease value.",
                              "type": "boolean"
                            },
                            "milestone_id": {
                              "description": "The milestone id value.",
                              "type": "integer"
                            },
                            "name": {
                              "description": "The name value.",
                              "type": "string"
                            },
                            "scm_connection_id": {
                              "description": "The scm connection id value.",
                              "nullable": true,
                              "type": "integer"
                            },
                            "scm_release_id": {
                              "description": "The scm release id value.",
                              "nullable": true,
                              "type": "string"
                            },
                            "scm_release_url": {
                              "description": "The scm release url value.",
                              "nullable": true,
                              "type": "string"
                            },
                            "scm_repository": {
                              "description": "The scm repository value.",
                              "nullable": true,
                              "type": "string"
                            },
                            "tag_name": {
                              "description": "The tag name value.",
                              "type": "string"
                            },
                            "target_commitish": {
                              "description": "The target commitish value.",
                              "type": "string"
                            }
                          },
                          "required": [
                            "created_at",
                            "id",
                            "is_draft",
                            "is_prerelease",
                            "milestone_id",
                            "tag_name"
                          ],
                          "type": "object"
                        },
                        "type": "array"
                      },
                      "status": {
                        "description": "The status value.",
                        "type": "string"
                      },
                      "target_date": {
                        "description": "The target date value.",
                        "nullable": true,
                        "type": "string"
                      },
                      "updated_at": {
                        "description": "The updated at value.",
                        "format": "date-time",
                        "type": "string"
                      },
                      "workspace_id": {
                        "description": "The workspace id value.",
                        "nullable": true,
                        "type": "integer"
                      },
                      "workspace_name": {
                        "description": "The workspace name value.",
                        "type": "string"
                      }
                    },
                    "required": [
                      "created_at",
                      "description",
                      "id",
                      "is_global",
                      "name",
                      "position",
                      "status",
                      "updated_at"
                    ],
                    "type": "object"
                  },
                  "type": "array"
                },
                "parent_id": {
                  "description": "The parent id value.",
                  "nullable": true,
                  "type": "integer"
                },
                "parent_key": {
                  "description": "The parent key value.",
                  "type": "string"
                },
                "parent_title": {
                  "description": "The parent title value.",
                  "type": "string"
                },
                "parent_workspace_item_number": {
                  "description": "The parent workspace item number value.",
                  "nullable": true,
                  "type": "integer"
                },
                "personal_labels": {
                  "description": "The personal labels value.",
                  "items": {
                    "additionalProperties": false,
                    "properties": {
                      "color": {
                        "description": "The color value.",
                        "type": "string"
                      },
                      "created_at": {
                        "description": "The created at value.",
                        "format": "date-time",
                        "type": "string"
                      },
                      "id": {
                        "description": "The id value.",
                        "type": "integer"
                      },
                      "name": {
                        "description": "The name value.",
                        "type": "string"
                      },
                      "updated_at": {
                        "description": "The updated at value.",
                        "format": "date-time",
                        "type": "string"
                      },
                      "user_id": {
                        "description": "The user id value.",
                        "nullable": true,
                        "type": "integer"
                      }
                    },
                    "required": [
                      "color",
                      "created_at",
                      "id",
                      "name",
                      "updated_at"
                    ],
                    "type": "object"
                  },
                  "type": "array"
                },
                "priority_builtin_key": {
                  "description": "The priority builtin key value.",
                  "type": "string"
                },
                "priority_color": {
                  "description": "The priority color value.",
                  "type": "string"
                },
                "priority_icon": {
                  "description": "The priority icon value.",
                  "type": "string"
                },
                "priority_id": {
                  "description": "The priority id value.",
                  "nullable": true,
                  "type": "integer"
                },
                "priority_name": {
                  "description": "The priority name value.",
                  "type": "string"
                },
                "project_id": {
                  "description": "The project id value.",
                  "nullable": true,
                  "type": "integer"
                },
                "project_inheritance_mode": {
                  "description": "The project inheritance mode value.",
                  "type": "string"
                },
                "project_name": {
                  "description": "The project name value.",
                  "type": "string"
                },
                "related_work_item_id": {
                  "description": "The related work item id value.",
                  "nullable": true,
                  "type": "integer"
                },
                "related_work_item_number": {
                  "description": "The related work item number value.",
                  "type": "integer"
                },
                "related_work_item_title": {
                  "description": "The related work item title value.",
                  "type": "string"
                },
                "related_work_item_workspace_id": {
                  "description": "The related work item workspace id value.",
                  "type": "integer"
                },
                "related_work_item_workspace_key": {
                  "description": "The related work item workspace key value.",
                  "type": "string"
                },
                "reporter_avatar": {
                  "description": "The reporter avatar value.",
                  "type": "string"
                },
                "reporter_email": {
                  "description": "The reporter email value.",
                  "type": "string"
                },
                "reporter_id": {
                  "description": "The reporter id value.",
                  "nullable": true,
                  "type": "integer"
                },
                "reporter_name": {
                  "description": "The reporter name value.",
                  "type": "string"
                },
                "request_type_id": {
                  "description": "The request type id value.",
                  "nullable": true,
                  "type": "integer"
                },
                "request_type_name": {
                  "description": "The request type name value.",
                  "type": "string"
                },
                "start_date": {
                  "description": "The start date value.",
                  "format": "date-time",
                  "nullable": true,
                  "type": "string"
                },
                "status_builtin_key": {
                  "description": "The status builtin key value.",
                  "type": "string"
                },
                "status_color": {
                  "description": "The status color value.",
                  "type": "string"
                },
                "status_id": {
                  "description": "The status id value.",
                  "nullable": true,
                  "type": "integer"
                },
                "status_name": {
                  "description": "The status name value.",
                  "type": "string"
                },
                "status_since": {
                  "description": "The status since value.",
                  "format": "date-time",
                  "nullable": true,
                  "type": "string"
                },
                "story_points": {
                  "description": "The story points value.",
                  "nullable": true,
                  "type": "number"
                },
                "time_project_id": {
                  "description": "The time project id value.",
                  "nullable": true,
                  "type": "integer"
                },
                "time_project_name": {
                  "description": "The time project name value.",
                  "type": "string"
                },
                "title": {
                  "description": "The title value.",
                  "type": "string"
                },
                "updated_at": {
                  "description": "The updated at value.",
                  "format": "date-time",
                  "type": "string"
                },
                "virtual_field_data": {
                  "additionalProperties": {
                    "description": "Arbitrary JSON extension value."
                  },
                  "description": "The virtual field data value.",
                  "type": "object"
                },
                "workspace_id": {
                  "description": "The workspace id value.",
                  "type": "integer"
                },
                "workspace_item_number": {
                  "description": "The workspace item number value.",
                  "type": "integer"
                },
                "workspace_key": {
                  "description": "The workspace key value.",
                  "type": "string"
                },
                "workspace_name": {
                  "description": "The workspace name value.",
                  "type": "string"
                }
              },
              "required": [
                "created_at",
                "description",
                "id",
                "inherit_project",
                "is_task",
                "last_active_at",
                "title",
                "updated_at",
                "workspace_id",
                "workspace_item_number"
              ],
              "type": "object"
            },
            "type": "array"
          },
          "meta": {
            "additionalProperties": false,
            "properties": {
              "next_cursor": {
                "description": "The next cursor value.",
                "type": "string"
              },
              "sortable_fields": {
                "description": "The sortable fields value.",
                "items": {
                  "type": "string"
                },
                "type": "array"
              },
              "watermark": {
                "description": "The watermark value.",
                "type": "integer"
              }
            },
            "required": [
              "sortable_fields"
            ],
            "type": "object"
          },
          "pagination": {
            "$ref": "#/components/schemas/Pagination"
          }
        },
        "required": [
          "data",
          "pagination",
          "meta"
        ],
        "type": "object"
      },
      "GetItemsChangesResult": {
        "additionalProperties": false,
        "properties": {
          "data": {
            "additionalProperties": false,
            "properties": {
              "changed_item_ids": {
                "description": "The changed item ids value.",
                "items": {
                  "type": "integer"
                },
                "type": "array"
              },
              "membership_dirty": {
                "description": "The membership dirty value.",
                "type": "boolean"
              },
              "removed_item_ids": {
                "description": "The removed item ids value.",
                "items": {
                  "type": "integer"
                },
                "type": "array"
              },
              "requires_full_reload": {
                "description": "The requires full reload value.",
                "type": "boolean"
              },
              "watermark": {
                "description": "The watermark value.",
                "type": "integer"
              }
            },
            "required": [
              "changed_item_ids",
              "membership_dirty",
              "removed_item_ids",
              "requires_full_reload",
              "watermark"
            ],
            "type": "object"
          }
        },
        "required": [
          "data"
        ],
        "type": "object"
      },
      "GetItemsItemIdAgentRunsResult": {
        "additionalProperties": false,
        "properties": {
          "data": {
            "additionalProperties": false,
            "properties": {
              "has_more": {
                "description": "The has more value.",
                "type": "boolean"
              },
              "next_cursor": {
                "description": "The next cursor value.",
                "type": "string"
              },
              "runs": {
                "description": "The runs value.",
                "items": {
                  "additionalProperties": false,
                  "nullable": true,
                  "properties": {
                    "acting_user_id": {
                      "description": "The acting user id value.",
                      "nullable": true,
                      "type": "integer"
                    },
                    "binding_id": {
                      "description": "The binding id value.",
                      "nullable": true,
                      "type": "integer"
                    },
                    "chain_depth": {
                      "description": "The chain depth value.",
                      "type": "integer"
                    },
                    "container_id": {
                      "description": "The container id value.",
                      "type": "string"
                    },
                    "created_at": {
                      "description": "The created at value.",
                      "format": "date-time",
                      "type": "string"
                    },
                    "ended_at": {
                      "description": "The ended at value.",
                      "format": "date-time",
                      "nullable": true,
                      "type": "string"
                    },
                    "error": {
                      "description": "The error value.",
                      "type": "string"
                    },
                    "grants_json": {
                      "description": "The grants json value.",
                      "type": "string"
                    },
                    "id": {
                      "description": "The id value.",
                      "type": "integer"
                    },
                    "immediate_trigger_user_id": {
                      "description": "The immediate trigger user id value.",
                      "nullable": true,
                      "type": "integer"
                    },
                    "is_ephemeral": {
                      "description": "The is ephemeral value.",
                      "type": "boolean"
                    },
                    "item_id": {
                      "description": "The item id value.",
                      "nullable": true,
                      "type": "integer"
                    },
                    "job_image": {
                      "description": "The job image value.",
                      "type": "string"
                    },
                    "job_kind": {
                      "description": "The job kind value.",
                      "type": "string"
                    },
                    "parent_run_id": {
                      "description": "The parent run id value.",
                      "nullable": true,
                      "type": "integer"
                    },
                    "profile_snapshot_json": {
                      "description": "The profile snapshot json value.",
                      "type": "string"
                    },
                    "profile_version": {
                      "description": "The profile version value.",
                      "type": "integer"
                    },
                    "queued_at": {
                      "description": "The queued at value.",
                      "format": "date-time",
                      "type": "string"
                    },
                    "root_initiator_user_id": {
                      "description": "The root initiator user id value.",
                      "nullable": true,
                      "type": "integer"
                    },
                    "runner_id": {
                      "description": "The runner id value.",
                      "nullable": true,
                      "type": "integer"
                    },
                    "session_id": {
                      "description": "The session id value.",
                      "type": "string"
                    },
                    "started_at": {
                      "description": "The started at value.",
                      "format": "date-time",
                      "nullable": true,
                      "type": "string"
                    },
                    "status": {
                      "description": "The status value.",
                      "type": "string"
                    },
                    "target_pool_id": {
                      "description": "The target pool id value.",
                      "nullable": true,
                      "type": "integer"
                    },
                    "trigger": {
                      "additionalProperties": false,
                      "description": "The trigger value.",
                      "nullable": true,
                      "properties": {
                        "author_id": {
                          "description": "The author id value.",
                          "type": "integer"
                        },
                        "comment_id": {
                          "description": "The comment id value.",
                          "type": "integer"
                        },
                        "continue_comment_id": {
                          "description": "The continue comment id value.",
                          "type": "integer"
                        },
                        "continue_event_id": {
                          "description": "The continue event id value.",
                          "type": "integer"
                        },
                        "continue_head_branch": {
                          "description": "The continue head branch value.",
                          "type": "string"
                        },
                        "continue_pr_number": {
                          "description": "The continue pr number value.",
                          "type": "integer"
                        },
                        "continue_repo_slug": {
                          "description": "The continue repo slug value.",
                          "type": "string"
                        },
                        "instruction": {
                          "description": "The instruction value.",
                          "type": "string"
                        },
                        "kind": {
                          "description": "The kind value.",
                          "type": "string"
                        }
                      },
                      "type": "object"
                    },
                    "triggered_by_user_id": {
                      "description": "The triggered by user id value.",
                      "nullable": true,
                      "type": "integer"
                    },
                    "updated_at": {
                      "description": "The updated at value.",
                      "format": "date-time",
                      "type": "string"
                    },
                    "workspace_id": {
                      "description": "The workspace id value.",
                      "type": "integer"
                    }
                  },
                  "required": [
                    "created_at",
                    "id",
                    "queued_at",
                    "status",
                    "updated_at",
                    "workspace_id"
                  ],
                  "type": "object"
                },
                "type": "array"
              }
            },
            "required": [
              "has_more",
              "runs"
            ],
            "type": "object"
          }
        },
        "required": [
          "data"
        ],
        "type": "object"
      },
      "GetItemsItemIdAncestorsResult": {
        "additionalProperties": false,
        "properties": {
          "data": {
            "items": {
              "additionalProperties": false,
              "properties": {
                "assignee_avatar": {
                  "description": "The assignee avatar value.",
                  "type": "string"
                },
                "assignee_email": {
                  "description": "The assignee email value.",
                  "type": "string"
                },
                "assignee_id": {
                  "description": "The assignee id value.",
                  "nullable": true,
                  "type": "integer"
                },
                "assignee_name": {
                  "description": "The assignee name value.",
                  "type": "string"
                },
                "calendar_data": {
                  "description": "The calendar data value.",
                  "items": {
                    "additionalProperties": false,
                    "properties": {
                      "created_at": {
                        "description": "The created at value.",
                        "type": "string"
                      },
                      "duration_minutes": {
                        "description": "The duration minutes value.",
                        "type": "integer"
                      },
                      "notes": {
                        "description": "The notes value.",
                        "type": "string"
                      },
                      "scheduled_date": {
                        "description": "The scheduled date value.",
                        "type": "string"
                      },
                      "scheduled_time": {
                        "description": "The scheduled time value.",
                        "type": "string"
                      },
                      "user_id": {
                        "description": "The user id value.",
                        "type": "integer"
                      },
                      "workspace_id": {
                        "description": "The workspace id value.",
                        "type": "integer"
                      }
                    },
                    "required": [
                      "created_at",
                      "scheduled_date",
                      "user_id",
                      "workspace_id"
                    ],
                    "type": "object"
                  },
                  "type": "array"
                },
                "channel_id": {
                  "description": "The channel id value.",
                  "nullable": true,
                  "type": "integer"
                },
                "channel_name": {
                  "description": "The channel name value.",
                  "type": "string"
                },
                "children": {
                  "description": "The children value.",
                  "items": {
                    "description": "Nested resource reference.",
                    "type": "object"
                  },
                  "type": "array"
                },
                "completed_at": {
                  "description": "The completed at value.",
                  "format": "date-time",
                  "nullable": true,
                  "type": "string"
                },
                "created_at": {
                  "description": "The created at value.",
                  "format": "date-time",
                  "type": "string"
                },
                "creator_email": {
                  "description": "The creator email value.",
                  "type": "string"
                },
                "creator_id": {
                  "description": "The creator id value.",
                  "nullable": true,
                  "type": "integer"
                },
                "creator_name": {
                  "description": "The creator name value.",
                  "type": "string"
                },
                "creator_portal_customer_email": {
                  "description": "The creator portal customer email value.",
                  "type": "string"
                },
                "creator_portal_customer_id": {
                  "description": "The creator portal customer id value.",
                  "nullable": true,
                  "type": "integer"
                },
                "creator_portal_customer_name": {
                  "description": "The creator portal customer name value.",
                  "type": "string"
                },
                "custom_field_values": {
                  "additionalProperties": {
                    "description": "Arbitrary JSON extension value."
                  },
                  "description": "The custom field values value.",
                  "type": "object"
                },
                "description": {
                  "description": "The description value.",
                  "type": "string"
                },
                "description_html": {
                  "description": "The description html value.",
                  "type": "string"
                },
                "due_date": {
                  "description": "The due date value.",
                  "format": "date-time",
                  "nullable": true,
                  "type": "string"
                },
                "effective_project_id": {
                  "description": "The effective project id value.",
                  "nullable": true,
                  "type": "integer"
                },
                "effective_project_name": {
                  "description": "The effective project name value.",
                  "type": "string"
                },
                "end_date": {
                  "description": "The end date value.",
                  "format": "date-time",
                  "nullable": true,
                  "type": "string"
                },
                "estimate_minutes": {
                  "description": "The estimate minutes value.",
                  "nullable": true,
                  "type": "integer"
                },
                "frac_index": {
                  "description": "The frac index value.",
                  "nullable": true,
                  "type": "string"
                },
                "id": {
                  "description": "The id value.",
                  "type": "integer"
                },
                "inherit_project": {
                  "description": "The inherit project value.",
                  "type": "boolean"
                },
                "is_task": {
                  "description": "Whether the item is a personal task. True is valid only in the authenticated caller's personal workspace and only with the Open or Done system status.",
                  "type": "boolean"
                },
                "item_type_builtin_key": {
                  "description": "The item type builtin key value.",
                  "type": "string"
                },
                "item_type_id": {
                  "description": "The item type id value.",
                  "nullable": true,
                  "type": "integer"
                },
                "item_type_name": {
                  "description": "The item type name value.",
                  "type": "string"
                },
                "iteration_end_date": {
                  "description": "The iteration end date value.",
                  "type": "string"
                },
                "iteration_id": {
                  "description": "The iteration id value.",
                  "nullable": true,
                  "type": "integer"
                },
                "iteration_name": {
                  "description": "The iteration name value.",
                  "type": "string"
                },
                "key": {
                  "description": "The key value.",
                  "type": "string"
                },
                "labels": {
                  "description": "The labels value.",
                  "items": {
                    "additionalProperties": false,
                    "properties": {
                      "color": {
                        "description": "The color value.",
                        "type": "string"
                      },
                      "created_at": {
                        "description": "The created at value.",
                        "format": "date-time",
                        "type": "string"
                      },
                      "id": {
                        "description": "The id value.",
                        "type": "integer"
                      },
                      "name": {
                        "description": "The name value.",
                        "type": "string"
                      },
                      "updated_at": {
                        "description": "The updated at value.",
                        "format": "date-time",
                        "type": "string"
                      }
                    },
                    "required": [
                      "color",
                      "created_at",
                      "id",
                      "name",
                      "updated_at"
                    ],
                    "type": "object"
                  },
                  "type": "array"
                },
                "last_active_at": {
                  "description": "The last active at value.",
                  "format": "date-time",
                  "type": "string"
                },
                "milestones": {
                  "description": "The milestones value.",
                  "items": {
                    "additionalProperties": false,
                    "properties": {
                      "category_color": {
                        "description": "The category color value.",
                        "type": "string"
                      },
                      "category_id": {
                        "description": "The category id value.",
                        "nullable": true,
                        "type": "integer"
                      },
                      "category_name": {
                        "description": "The category name value.",
                        "type": "string"
                      },
                      "created_at": {
                        "description": "The created at value.",
                        "format": "date-time",
                        "type": "string"
                      },
                      "description": {
                        "description": "The description value.",
                        "type": "string"
                      },
                      "external_key": {
                        "description": "The external key value.",
                        "nullable": true,
                        "type": "string"
                      },
                      "id": {
                        "description": "The id value.",
                        "type": "integer"
                      },
                      "is_global": {
                        "description": "The is global value.",
                        "type": "boolean"
                      },
                      "latest_release": {
                        "additionalProperties": false,
                        "description": "The latest release value.",
                        "nullable": true,
                        "properties": {
                          "body": {
                            "description": "The body value.",
                            "type": "string"
                          },
                          "created_at": {
                            "description": "The created at value.",
                            "type": "string"
                          },
                          "created_by": {
                            "description": "The created by value.",
                            "nullable": true,
                            "type": "integer"
                          },
                          "id": {
                            "description": "The id value.",
                            "type": "integer"
                          },
                          "is_draft": {
                            "description": "The is draft value.",
                            "type": "boolean"
                          },
                          "is_prerelease": {
                            "description": "The is prerelease value.",
                            "type": "boolean"
                          },
                          "milestone_id": {
                            "description": "The milestone id value.",
                            "type": "integer"
                          },
                          "name": {
                            "description": "The name value.",
                            "type": "string"
                          },
                          "scm_connection_id": {
                            "description": "The scm connection id value.",
                            "nullable": true,
                            "type": "integer"
                          },
                          "scm_release_id": {
                            "description": "The scm release id value.",
                            "nullable": true,
                            "type": "string"
                          },
                          "scm_release_url": {
                            "description": "The scm release url value.",
                            "nullable": true,
                            "type": "string"
                          },
                          "scm_repository": {
                            "description": "The scm repository value.",
                            "nullable": true,
                            "type": "string"
                          },
                          "tag_name": {
                            "description": "The tag name value.",
                            "type": "string"
                          },
                          "target_commitish": {
                            "description": "The target commitish value.",
                            "type": "string"
                          }
                        },
                        "required": [
                          "created_at",
                          "id",
                          "is_draft",
                          "is_prerelease",
                          "milestone_id",
                          "tag_name"
                        ],
                        "type": "object"
                      },
                      "name": {
                        "description": "The name value.",
                        "type": "string"
                      },
                      "position": {
                        "description": "The position value.",
                        "type": "integer"
                      },
                      "releases": {
                        "description": "The releases value.",
                        "items": {
                          "additionalProperties": false,
                          "properties": {
                            "body": {
                              "description": "The body value.",
                              "type": "string"
                            },
                            "created_at": {
                              "description": "The created at value.",
                              "type": "string"
                            },
                            "created_by": {
                              "description": "The created by value.",
                              "nullable": true,
                              "type": "integer"
                            },
                            "id": {
                              "description": "The id value.",
                              "type": "integer"
                            },
                            "is_draft": {
                              "description": "The is draft value.",
                              "type": "boolean"
                            },
                            "is_prerelease": {
                              "description": "The is prerelease value.",
                              "type": "boolean"
                            },
                            "milestone_id": {
                              "description": "The milestone id value.",
                              "type": "integer"
                            },
                            "name": {
                              "description": "The name value.",
                              "type": "string"
                            },
                            "scm_connection_id": {
                              "description": "The scm connection id value.",
                              "nullable": true,
                              "type": "integer"
                            },
                            "scm_release_id": {
                              "description": "The scm release id value.",
                              "nullable": true,
                              "type": "string"
                            },
                            "scm_release_url": {
                              "description": "The scm release url value.",
                              "nullable": true,
                              "type": "string"
                            },
                            "scm_repository": {
                              "description": "The scm repository value.",
                              "nullable": true,
                              "type": "string"
                            },
                            "tag_name": {
                              "description": "The tag name value.",
                              "type": "string"
                            },
                            "target_commitish": {
                              "description": "The target commitish value.",
                              "type": "string"
                            }
                          },
                          "required": [
                            "created_at",
                            "id",
                            "is_draft",
                            "is_prerelease",
                            "milestone_id",
                            "tag_name"
                          ],
                          "type": "object"
                        },
                        "type": "array"
                      },
                      "status": {
                        "description": "The status value.",
                        "type": "string"
                      },
                      "target_date": {
                        "description": "The target date value.",
                        "nullable": true,
                        "type": "string"
                      },
                      "updated_at": {
                        "description": "The updated at value.",
                        "format": "date-time",
                        "type": "string"
                      },
                      "workspace_id": {
                        "description": "The workspace id value.",
                        "nullable": true,
                        "type": "integer"
                      },
                      "workspace_name": {
                        "description": "The workspace name value.",
                        "type": "string"
                      }
                    },
                    "required": [
                      "created_at",
                      "description",
                      "id",
                      "is_global",
                      "name",
                      "position",
                      "status",
                      "updated_at"
                    ],
                    "type": "object"
                  },
                  "type": "array"
                },
                "parent_id": {
                  "description": "The parent id value.",
                  "nullable": true,
                  "type": "integer"
                },
                "parent_key": {
                  "description": "The parent key value.",
                  "type": "string"
                },
                "parent_title": {
                  "description": "The parent title value.",
                  "type": "string"
                },
                "parent_workspace_item_number": {
                  "description": "The parent workspace item number value.",
                  "nullable": true,
                  "type": "integer"
                },
                "personal_labels": {
                  "description": "The personal labels value.",
                  "items": {
                    "additionalProperties": false,
                    "properties": {
                      "color": {
                        "description": "The color value.",
                        "type": "string"
                      },
                      "created_at": {
                        "description": "The created at value.",
                        "format": "date-time",
                        "type": "string"
                      },
                      "id": {
                        "description": "The id value.",
                        "type": "integer"
                      },
                      "name": {
                        "description": "The name value.",
                        "type": "string"
                      },
                      "updated_at": {
                        "description": "The updated at value.",
                        "format": "date-time",
                        "type": "string"
                      },
                      "user_id": {
                        "description": "The user id value.",
                        "nullable": true,
                        "type": "integer"
                      }
                    },
                    "required": [
                      "color",
                      "created_at",
                      "id",
                      "name",
                      "updated_at"
                    ],
                    "type": "object"
                  },
                  "type": "array"
                },
                "priority_builtin_key": {
                  "description": "The priority builtin key value.",
                  "type": "string"
                },
                "priority_color": {
                  "description": "The priority color value.",
                  "type": "string"
                },
                "priority_icon": {
                  "description": "The priority icon value.",
                  "type": "string"
                },
                "priority_id": {
                  "description": "The priority id value.",
                  "nullable": true,
                  "type": "integer"
                },
                "priority_name": {
                  "description": "The priority name value.",
                  "type": "string"
                },
                "project_id": {
                  "description": "The project id value.",
                  "nullable": true,
                  "type": "integer"
                },
                "project_inheritance_mode": {
                  "description": "The project inheritance mode value.",
                  "type": "string"
                },
                "project_name": {
                  "description": "The project name value.",
                  "type": "string"
                },
                "related_work_item_id": {
                  "description": "The related work item id value.",
                  "nullable": true,
                  "type": "integer"
                },
                "related_work_item_number": {
                  "description": "The related work item number value.",
                  "type": "integer"
                },
                "related_work_item_title": {
                  "description": "The related work item title value.",
                  "type": "string"
                },
                "related_work_item_workspace_id": {
                  "description": "The related work item workspace id value.",
                  "type": "integer"
                },
                "related_work_item_workspace_key": {
                  "description": "The related work item workspace key value.",
                  "type": "string"
                },
                "reporter_avatar": {
                  "description": "The reporter avatar value.",
                  "type": "string"
                },
                "reporter_email": {
                  "description": "The reporter email value.",
                  "type": "string"
                },
                "reporter_id": {
                  "description": "The reporter id value.",
                  "nullable": true,
                  "type": "integer"
                },
                "reporter_name": {
                  "description": "The reporter name value.",
                  "type": "string"
                },
                "request_type_id": {
                  "description": "The request type id value.",
                  "nullable": true,
                  "type": "integer"
                },
                "request_type_name": {
                  "description": "The request type name value.",
                  "type": "string"
                },
                "start_date": {
                  "description": "The start date value.",
                  "format": "date-time",
                  "nullable": true,
                  "type": "string"
                },
                "status_builtin_key": {
                  "description": "The status builtin key value.",
                  "type": "string"
                },
                "status_color": {
                  "description": "The status color value.",
                  "type": "string"
                },
                "status_id": {
                  "description": "The status id value.",
                  "nullable": true,
                  "type": "integer"
                },
                "status_name": {
                  "description": "The status name value.",
                  "type": "string"
                },
                "status_since": {
                  "description": "The status since value.",
                  "format": "date-time",
                  "nullable": true,
                  "type": "string"
                },
                "story_points": {
                  "description": "The story points value.",
                  "nullable": true,
                  "type": "number"
                },
                "time_project_id": {
                  "description": "The time project id value.",
                  "nullable": true,
                  "type": "integer"
                },
                "time_project_name": {
                  "description": "The time project name value.",
                  "type": "string"
                },
                "title": {
                  "description": "The title value.",
                  "type": "string"
                },
                "updated_at": {
                  "description": "The updated at value.",
                  "format": "date-time",
                  "type": "string"
                },
                "virtual_field_data": {
                  "additionalProperties": {
                    "description": "Arbitrary JSON extension value."
                  },
                  "description": "The virtual field data value.",
                  "type": "object"
                },
                "workspace_id": {
                  "description": "The workspace id value.",
                  "type": "integer"
                },
                "workspace_item_number": {
                  "description": "The workspace item number value.",
                  "type": "integer"
                },
                "workspace_key": {
                  "description": "The workspace key value.",
                  "type": "string"
                },
                "workspace_name": {
                  "description": "The workspace name value.",
                  "type": "string"
                }
              },
              "required": [
                "created_at",
                "description",
                "id",
                "inherit_project",
                "is_task",
                "last_active_at",
                "title",
                "updated_at",
                "workspace_id",
                "workspace_item_number"
              ],
              "type": "object"
            },
            "type": "array"
          }
        },
        "required": [
          "data"
        ],
        "type": "object"
      },
      "GetItemsItemIdApprovalsResult": {
        "additionalProperties": false,
        "properties": {
          "data": {
            "items": {
              "additionalProperties": false,
              "nullable": true,
              "properties": {
                "approval_set_status_id": {
                  "description": "The approval set status id value.",
                  "type": "integer"
                },
                "completed_at": {
                  "description": "The completed at value.",
                  "format": "date-time",
                  "nullable": true,
                  "type": "string"
                },
                "created_at": {
                  "description": "The created at value.",
                  "format": "date-time",
                  "type": "string"
                },
                "decisions": {
                  "description": "The decisions value.",
                  "items": {
                    "additionalProperties": false,
                    "properties": {
                      "actor_portal_customer_id": {
                        "description": "The actor portal customer id value.",
                        "nullable": true,
                        "type": "integer"
                      },
                      "actor_user_id": {
                        "description": "The actor user id value.",
                        "nullable": true,
                        "type": "integer"
                      },
                      "approval_request_id": {
                        "description": "The approval request id value.",
                        "type": "integer"
                      },
                      "approval_step_instance_id": {
                        "description": "The approval step instance id value.",
                        "nullable": true,
                        "type": "integer"
                      },
                      "comment": {
                        "description": "The comment value.",
                        "type": "string"
                      },
                      "created_at": {
                        "description": "The created at value.",
                        "format": "date-time",
                        "type": "string"
                      },
                      "decision": {
                        "description": "The decision value.",
                        "type": "string"
                      },
                      "delegated_to_user_id": {
                        "description": "The delegated to user id value.",
                        "nullable": true,
                        "type": "integer"
                      },
                      "id": {
                        "description": "The id value.",
                        "type": "integer"
                      },
                      "metadata": {
                        "description": "The metadata value.",
                        "format": "byte",
                        "type": "string"
                      }
                    },
                    "required": [
                      "approval_request_id",
                      "created_at",
                      "decision",
                      "id"
                    ],
                    "type": "object"
                  },
                  "type": "array"
                },
                "from_status_id": {
                  "description": "The from status id value.",
                  "nullable": true,
                  "type": "integer"
                },
                "id": {
                  "description": "The id value.",
                  "type": "integer"
                },
                "item_id": {
                  "description": "The item id value.",
                  "type": "integer"
                },
                "status": {
                  "description": "The status value.",
                  "type": "string"
                },
                "status_id": {
                  "description": "The status id value.",
                  "type": "integer"
                },
                "step_instances": {
                  "description": "The step instances value.",
                  "items": {
                    "additionalProperties": false,
                    "properties": {
                      "approval_request_id": {
                        "description": "The approval request id value.",
                        "type": "integer"
                      },
                      "approval_step_id": {
                        "description": "The approval step id value.",
                        "type": "integer"
                      },
                      "approvers": {
                        "description": "The approvers value.",
                        "items": {
                          "additionalProperties": false,
                          "properties": {
                            "approval_step_instance_id": {
                              "description": "The approval step instance id value.",
                              "type": "integer"
                            },
                            "created_at": {
                              "description": "The created at value.",
                              "format": "date-time",
                              "type": "string"
                            },
                            "id": {
                              "description": "The id value.",
                              "type": "integer"
                            },
                            "is_active": {
                              "description": "The is active value.",
                              "type": "boolean"
                            },
                            "portal_customer_id": {
                              "description": "The portal customer id value.",
                              "nullable": true,
                              "type": "integer"
                            },
                            "source_group_id": {
                              "description": "The source group id value.",
                              "nullable": true,
                              "type": "integer"
                            },
                            "source_role_id": {
                              "description": "The source role id value.",
                              "nullable": true,
                              "type": "integer"
                            },
                            "substituted_for_user_id": {
                              "description": "The substituted for user id value.",
                              "nullable": true,
                              "type": "integer"
                            },
                            "user_id": {
                              "description": "The user id value.",
                              "nullable": true,
                              "type": "integer"
                            }
                          },
                          "required": [
                            "approval_step_instance_id",
                            "created_at",
                            "id",
                            "is_active"
                          ],
                          "type": "object"
                        },
                        "type": "array"
                      },
                      "completed_at": {
                        "description": "The completed at value.",
                        "format": "date-time",
                        "nullable": true,
                        "type": "string"
                      },
                      "display_order": {
                        "description": "The display order value.",
                        "type": "integer"
                      },
                      "escalation_count": {
                        "description": "The escalation count value.",
                        "type": "integer"
                      },
                      "escalation_due_at": {
                        "description": "The escalation due at value.",
                        "format": "date-time",
                        "nullable": true,
                        "type": "string"
                      },
                      "id": {
                        "description": "The id value.",
                        "type": "integer"
                      },
                      "last_escalated_at": {
                        "description": "The last escalated at value.",
                        "format": "date-time",
                        "nullable": true,
                        "type": "string"
                      },
                      "started_at": {
                        "description": "The started at value.",
                        "format": "date-time",
                        "nullable": true,
                        "type": "string"
                      },
                      "status": {
                        "description": "The status value.",
                        "type": "string"
                      }
                    },
                    "required": [
                      "approval_request_id",
                      "approval_step_id",
                      "display_order",
                      "escalation_count",
                      "id",
                      "status"
                    ],
                    "type": "object"
                  },
                  "type": "array"
                },
                "triggered_by_user_id": {
                  "description": "The triggered by user id value.",
                  "type": "integer"
                },
                "workspace_id": {
                  "description": "The workspace id value.",
                  "type": "integer"
                }
              },
              "required": [
                "approval_set_status_id",
                "created_at",
                "id",
                "item_id",
                "status",
                "status_id",
                "triggered_by_user_id",
                "workspace_id"
              ],
              "type": "object"
            },
            "type": "array"
          },
          "pagination": {
            "$ref": "#/components/schemas/Pagination"
          }
        },
        "required": [
          "data",
          "pagination"
        ],
        "type": "object"
      },
      "GetItemsItemIdAttachmentsResult": {
        "additionalProperties": false,
        "properties": {
          "data": {
            "items": {
              "additionalProperties": false,
              "properties": {
                "created_at": {
                  "description": "The created at value.",
                  "format": "date-time",
                  "type": "string"
                },
                "file_size": {
                  "description": "The file size value.",
                  "type": "integer"
                },
                "filename": {
                  "description": "The filename value.",
                  "type": "string"
                },
                "has_thumbnail": {
                  "description": "The has thumbnail value.",
                  "type": "boolean"
                },
                "id": {
                  "description": "The id value.",
                  "type": "integer"
                },
                "item_id": {
                  "description": "The item id value.",
                  "nullable": true,
                  "type": "integer"
                },
                "mime_type": {
                  "description": "The mime type value.",
                  "type": "string"
                },
                "original_filename": {
                  "description": "The original filename value.",
                  "type": "string"
                },
                "uploaded_by": {
                  "description": "The uploaded by value.",
                  "nullable": true,
                  "type": "integer"
                },
                "uploader_email": {
                  "description": "The uploader email value.",
                  "type": "string"
                },
                "uploader_name": {
                  "description": "The uploader name value.",
                  "type": "string"
                }
              },
              "required": [
                "created_at",
                "file_size",
                "filename",
                "has_thumbnail",
                "id",
                "mime_type",
                "original_filename"
              ],
              "type": "object"
            },
            "type": "array"
          },
          "pagination": {
            "$ref": "#/components/schemas/Pagination"
          }
        },
        "required": [
          "data",
          "pagination"
        ],
        "type": "object"
      },
      "GetItemsItemIdAvailableTransitionsResult": {
        "additionalProperties": false,
        "properties": {
          "data": {
            "additionalProperties": false,
            "properties": {
              "available_transitions": {
                "description": "The available transitions value.",
                "items": {
                  "additionalProperties": false,
                  "properties": {
                    "builtin_key": {
                      "description": "The builtin key value.",
                      "type": "string"
                    },
                    "category_color": {
                      "description": "The category color value.",
                      "type": "string"
                    },
                    "id": {
                      "description": "The id value.",
                      "type": "integer"
                    },
                    "name": {
                      "description": "The name value.",
                      "type": "string"
                    },
                    "value": {
                      "description": "The value value.",
                      "type": "string"
                    }
                  },
                  "required": [
                    "builtin_key",
                    "id",
                    "name",
                    "value"
                  ],
                  "type": "object"
                },
                "type": "array"
              },
              "current_status": {
                "description": "The current status value.",
                "type": "string"
              },
              "pending_approval": {
                "additionalProperties": false,
                "description": "The pending approval value.",
                "nullable": true,
                "properties": {
                  "id": {
                    "description": "The id value.",
                    "type": "integer"
                  },
                  "status": {
                    "description": "The status value.",
                    "type": "string"
                  },
                  "you_can_decide": {
                    "description": "The you can decide value.",
                    "type": "boolean"
                  }
                },
                "required": [
                  "id",
                  "status",
                  "you_can_decide"
                ],
                "type": "object"
              }
            },
            "required": [
              "available_transitions",
              "current_status"
            ],
            "type": "object"
          }
        },
        "required": [
          "data"
        ],
        "type": "object"
      },
      "GetItemsItemIdChildrenResult": {
        "additionalProperties": false,
        "properties": {
          "data": {
            "items": {
              "additionalProperties": false,
              "properties": {
                "assignee_avatar": {
                  "description": "The assignee avatar value.",
                  "type": "string"
                },
                "assignee_email": {
                  "description": "The assignee email value.",
                  "type": "string"
                },
                "assignee_id": {
                  "description": "The assignee id value.",
                  "nullable": true,
                  "type": "integer"
                },
                "assignee_name": {
                  "description": "The assignee name value.",
                  "type": "string"
                },
                "calendar_data": {
                  "description": "The calendar data value.",
                  "items": {
                    "additionalProperties": false,
                    "properties": {
                      "created_at": {
                        "description": "The created at value.",
                        "type": "string"
                      },
                      "duration_minutes": {
                        "description": "The duration minutes value.",
                        "type": "integer"
                      },
                      "notes": {
                        "description": "The notes value.",
                        "type": "string"
                      },
                      "scheduled_date": {
                        "description": "The scheduled date value.",
                        "type": "string"
                      },
                      "scheduled_time": {
                        "description": "The scheduled time value.",
                        "type": "string"
                      },
                      "user_id": {
                        "description": "The user id value.",
                        "type": "integer"
                      },
                      "workspace_id": {
                        "description": "The workspace id value.",
                        "type": "integer"
                      }
                    },
                    "required": [
                      "created_at",
                      "scheduled_date",
                      "user_id",
                      "workspace_id"
                    ],
                    "type": "object"
                  },
                  "type": "array"
                },
                "channel_id": {
                  "description": "The channel id value.",
                  "nullable": true,
                  "type": "integer"
                },
                "channel_name": {
                  "description": "The channel name value.",
                  "type": "string"
                },
                "children": {
                  "description": "The children value.",
                  "items": {
                    "description": "Nested resource reference.",
                    "type": "object"
                  },
                  "type": "array"
                },
                "completed_at": {
                  "description": "The completed at value.",
                  "format": "date-time",
                  "nullable": true,
                  "type": "string"
                },
                "created_at": {
                  "description": "The created at value.",
                  "format": "date-time",
                  "type": "string"
                },
                "creator_email": {
                  "description": "The creator email value.",
                  "type": "string"
                },
                "creator_id": {
                  "description": "The creator id value.",
                  "nullable": true,
                  "type": "integer"
                },
                "creator_name": {
                  "description": "The creator name value.",
                  "type": "string"
                },
                "creator_portal_customer_email": {
                  "description": "The creator portal customer email value.",
                  "type": "string"
                },
                "creator_portal_customer_id": {
                  "description": "The creator portal customer id value.",
                  "nullable": true,
                  "type": "integer"
                },
                "creator_portal_customer_name": {
                  "description": "The creator portal customer name value.",
                  "type": "string"
                },
                "custom_field_values": {
                  "additionalProperties": {
                    "description": "Arbitrary JSON extension value."
                  },
                  "description": "The custom field values value.",
                  "type": "object"
                },
                "description": {
                  "description": "The description value.",
                  "type": "string"
                },
                "description_html": {
                  "description": "The description html value.",
                  "type": "string"
                },
                "due_date": {
                  "description": "The due date value.",
                  "format": "date-time",
                  "nullable": true,
                  "type": "string"
                },
                "effective_project_id": {
                  "description": "The effective project id value.",
                  "nullable": true,
                  "type": "integer"
                },
                "effective_project_name": {
                  "description": "The effective project name value.",
                  "type": "string"
                },
                "end_date": {
                  "description": "The end date value.",
                  "format": "date-time",
                  "nullable": true,
                  "type": "string"
                },
                "estimate_minutes": {
                  "description": "The estimate minutes value.",
                  "nullable": true,
                  "type": "integer"
                },
                "frac_index": {
                  "description": "The frac index value.",
                  "nullable": true,
                  "type": "string"
                },
                "id": {
                  "description": "The id value.",
                  "type": "integer"
                },
                "inherit_project": {
                  "description": "The inherit project value.",
                  "type": "boolean"
                },
                "is_task": {
                  "description": "Whether the item is a personal task. True is valid only in the authenticated caller's personal workspace and only with the Open or Done system status.",
                  "type": "boolean"
                },
                "item_type_builtin_key": {
                  "description": "The item type builtin key value.",
                  "type": "string"
                },
                "item_type_id": {
                  "description": "The item type id value.",
                  "nullable": true,
                  "type": "integer"
                },
                "item_type_name": {
                  "description": "The item type name value.",
                  "type": "string"
                },
                "iteration_end_date": {
                  "description": "The iteration end date value.",
                  "type": "string"
                },
                "iteration_id": {
                  "description": "The iteration id value.",
                  "nullable": true,
                  "type": "integer"
                },
                "iteration_name": {
                  "description": "The iteration name value.",
                  "type": "string"
                },
                "key": {
                  "description": "The key value.",
                  "type": "string"
                },
                "labels": {
                  "description": "The labels value.",
                  "items": {
                    "additionalProperties": false,
                    "properties": {
                      "color": {
                        "description": "The color value.",
                        "type": "string"
                      },
                      "created_at": {
                        "description": "The created at value.",
                        "format": "date-time",
                        "type": "string"
                      },
                      "id": {
                        "description": "The id value.",
                        "type": "integer"
                      },
                      "name": {
                        "description": "The name value.",
                        "type": "string"
                      },
                      "updated_at": {
                        "description": "The updated at value.",
                        "format": "date-time",
                        "type": "string"
                      }
                    },
                    "required": [
                      "color",
                      "created_at",
                      "id",
                      "name",
                      "updated_at"
                    ],
                    "type": "object"
                  },
                  "type": "array"
                },
                "last_active_at": {
                  "description": "The last active at value.",
                  "format": "date-time",
                  "type": "string"
                },
                "milestones": {
                  "description": "The milestones value.",
                  "items": {
                    "additionalProperties": false,
                    "properties": {
                      "category_color": {
                        "description": "The category color value.",
                        "type": "string"
                      },
                      "category_id": {
                        "description": "The category id value.",
                        "nullable": true,
                        "type": "integer"
                      },
                      "category_name": {
                        "description": "The category name value.",
                        "type": "string"
                      },
                      "created_at": {
                        "description": "The created at value.",
                        "format": "date-time",
                        "type": "string"
                      },
                      "description": {
                        "description": "The description value.",
                        "type": "string"
                      },
                      "external_key": {
                        "description": "The external key value.",
                        "nullable": true,
                        "type": "string"
                      },
                      "id": {
                        "description": "The id value.",
                        "type": "integer"
                      },
                      "is_global": {
                        "description": "The is global value.",
                        "type": "boolean"
                      },
                      "latest_release": {
                        "additionalProperties": false,
                        "description": "The latest release value.",
                        "nullable": true,
                        "properties": {
                          "body": {
                            "description": "The body value.",
                            "type": "string"
                          },
                          "created_at": {
                            "description": "The created at value.",
                            "type": "string"
                          },
                          "created_by": {
                            "description": "The created by value.",
                            "nullable": true,
                            "type": "integer"
                          },
                          "id": {
                            "description": "The id value.",
                            "type": "integer"
                          },
                          "is_draft": {
                            "description": "The is draft value.",
                            "type": "boolean"
                          },
                          "is_prerelease": {
                            "description": "The is prerelease value.",
                            "type": "boolean"
                          },
                          "milestone_id": {
                            "description": "The milestone id value.",
                            "type": "integer"
                          },
                          "name": {
                            "description": "The name value.",
                            "type": "string"
                          },
                          "scm_connection_id": {
                            "description": "The scm connection id value.",
                            "nullable": true,
                            "type": "integer"
                          },
                          "scm_release_id": {
                            "description": "The scm release id value.",
                            "nullable": true,
                            "type": "string"
                          },
                          "scm_release_url": {
                            "description": "The scm release url value.",
                            "nullable": true,
                            "type": "string"
                          },
                          "scm_repository": {
                            "description": "The scm repository value.",
                            "nullable": true,
                            "type": "string"
                          },
                          "tag_name": {
                            "description": "The tag name value.",
                            "type": "string"
                          },
                          "target_commitish": {
                            "description": "The target commitish value.",
                            "type": "string"
                          }
                        },
                        "required": [
                          "created_at",
                          "id",
                          "is_draft",
                          "is_prerelease",
                          "milestone_id",
                          "tag_name"
                        ],
                        "type": "object"
                      },
                      "name": {
                        "description": "The name value.",
                        "type": "string"
                      },
                      "position": {
                        "description": "The position value.",
                        "type": "integer"
                      },
                      "releases": {
                        "description": "The releases value.",
                        "items": {
                          "additionalProperties": false,
                          "properties": {
                            "body": {
                              "description": "The body value.",
                              "type": "string"
                            },
                            "created_at": {
                              "description": "The created at value.",
                              "type": "string"
                            },
                            "created_by": {
                              "description": "The created by value.",
                              "nullable": true,
                              "type": "integer"
                            },
                            "id": {
                              "description": "The id value.",
                              "type": "integer"
                            },
                            "is_draft": {
                              "description": "The is draft value.",
                              "type": "boolean"
                            },
                            "is_prerelease": {
                              "description": "The is prerelease value.",
                              "type": "boolean"
                            },
                            "milestone_id": {
                              "description": "The milestone id value.",
                              "type": "integer"
                            },
                            "name": {
                              "description": "The name value.",
                              "type": "string"
                            },
                            "scm_connection_id": {
                              "description": "The scm connection id value.",
                              "nullable": true,
                              "type": "integer"
                            },
                            "scm_release_id": {
                              "description": "The scm release id value.",
                              "nullable": true,
                              "type": "string"
                            },
                            "scm_release_url": {
                              "description": "The scm release url value.",
                              "nullable": true,
                              "type": "string"
                            },
                            "scm_repository": {
                              "description": "The scm repository value.",
                              "nullable": true,
                              "type": "string"
                            },
                            "tag_name": {
                              "description": "The tag name value.",
                              "type": "string"
                            },
                            "target_commitish": {
                              "description": "The target commitish value.",
                              "type": "string"
                            }
                          },
                          "required": [
                            "created_at",
                            "id",
                            "is_draft",
                            "is_prerelease",
                            "milestone_id",
                            "tag_name"
                          ],
                          "type": "object"
                        },
                        "type": "array"
                      },
                      "status": {
                        "description": "The status value.",
                        "type": "string"
                      },
                      "target_date": {
                        "description": "The target date value.",
                        "nullable": true,
                        "type": "string"
                      },
                      "updated_at": {
                        "description": "The updated at value.",
                        "format": "date-time",
                        "type": "string"
                      },
                      "workspace_id": {
                        "description": "The workspace id value.",
                        "nullable": true,
                        "type": "integer"
                      },
                      "workspace_name": {
                        "description": "The workspace name value.",
                        "type": "string"
                      }
                    },
                    "required": [
                      "created_at",
                      "description",
                      "id",
                      "is_global",
                      "name",
                      "position",
                      "status",
                      "updated_at"
                    ],
                    "type": "object"
                  },
                  "type": "array"
                },
                "parent_id": {
                  "description": "The parent id value.",
                  "nullable": true,
                  "type": "integer"
                },
                "parent_key": {
                  "description": "The parent key value.",
                  "type": "string"
                },
                "parent_title": {
                  "description": "The parent title value.",
                  "type": "string"
                },
                "parent_workspace_item_number": {
                  "description": "The parent workspace item number value.",
                  "nullable": true,
                  "type": "integer"
                },
                "personal_labels": {
                  "description": "The personal labels value.",
                  "items": {
                    "additionalProperties": false,
                    "properties": {
                      "color": {
                        "description": "The color value.",
                        "type": "string"
                      },
                      "created_at": {
                        "description": "The created at value.",
                        "format": "date-time",
                        "type": "string"
                      },
                      "id": {
                        "description": "The id value.",
                        "type": "integer"
                      },
                      "name": {
                        "description": "The name value.",
                        "type": "string"
                      },
                      "updated_at": {
                        "description": "The updated at value.",
                        "format": "date-time",
                        "type": "string"
                      },
                      "user_id": {
                        "description": "The user id value.",
                        "nullable": true,
                        "type": "integer"
                      }
                    },
                    "required": [
                      "color",
                      "created_at",
                      "id",
                      "name",
                      "updated_at"
                    ],
                    "type": "object"
                  },
                  "type": "array"
                },
                "priority_builtin_key": {
                  "description": "The priority builtin key value.",
                  "type": "string"
                },
                "priority_color": {
                  "description": "The priority color value.",
                  "type": "string"
                },
                "priority_icon": {
                  "description": "The priority icon value.",
                  "type": "string"
                },
                "priority_id": {
                  "description": "The priority id value.",
                  "nullable": true,
                  "type": "integer"
                },
                "priority_name": {
                  "description": "The priority name value.",
                  "type": "string"
                },
                "project_id": {
                  "description": "The project id value.",
                  "nullable": true,
                  "type": "integer"
                },
                "project_inheritance_mode": {
                  "description": "The project inheritance mode value.",
                  "type": "string"
                },
                "project_name": {
                  "description": "The project name value.",
                  "type": "string"
                },
                "related_work_item_id": {
                  "description": "The related work item id value.",
                  "nullable": true,
                  "type": "integer"
                },
                "related_work_item_number": {
                  "description": "The related work item number value.",
                  "type": "integer"
                },
                "related_work_item_title": {
                  "description": "The related work item title value.",
                  "type": "string"
                },
                "related_work_item_workspace_id": {
                  "description": "The related work item workspace id value.",
                  "type": "integer"
                },
                "related_work_item_workspace_key": {
                  "description": "The related work item workspace key value.",
                  "type": "string"
                },
                "reporter_avatar": {
                  "description": "The reporter avatar value.",
                  "type": "string"
                },
                "reporter_email": {
                  "description": "The reporter email value.",
                  "type": "string"
                },
                "reporter_id": {
                  "description": "The reporter id value.",
                  "nullable": true,
                  "type": "integer"
                },
                "reporter_name": {
                  "description": "The reporter name value.",
                  "type": "string"
                },
                "request_type_id": {
                  "description": "The request type id value.",
                  "nullable": true,
                  "type": "integer"
                },
                "request_type_name": {
                  "description": "The request type name value.",
                  "type": "string"
                },
                "start_date": {
                  "description": "The start date value.",
                  "format": "date-time",
                  "nullable": true,
                  "type": "string"
                },
                "status_builtin_key": {
                  "description": "The status builtin key value.",
                  "type": "string"
                },
                "status_color": {
                  "description": "The status color value.",
                  "type": "string"
                },
                "status_id": {
                  "description": "The status id value.",
                  "nullable": true,
                  "type": "integer"
                },
                "status_name": {
                  "description": "The status name value.",
                  "type": "string"
                },
                "status_since": {
                  "description": "The status since value.",
                  "format": "date-time",
                  "nullable": true,
                  "type": "string"
                },
                "story_points": {
                  "description": "The story points value.",
                  "nullable": true,
                  "type": "number"
                },
                "time_project_id": {
                  "description": "The time project id value.",
                  "nullable": true,
                  "type": "integer"
                },
                "time_project_name": {
                  "description": "The time project name value.",
                  "type": "string"
                },
                "title": {
                  "description": "The title value.",
                  "type": "string"
                },
                "updated_at": {
                  "description": "The updated at value.",
                  "format": "date-time",
                  "type": "string"
                },
                "virtual_field_data": {
                  "additionalProperties": {
                    "description": "Arbitrary JSON extension value."
                  },
                  "description": "The virtual field data value.",
                  "type": "object"
                },
                "workspace_id": {
                  "description": "The workspace id value.",
                  "type": "integer"
                },
                "workspace_item_number": {
                  "description": "The workspace item number value.",
                  "type": "integer"
                },
                "workspace_key": {
                  "description": "The workspace key value.",
                  "type": "string"
                },
                "workspace_name": {
                  "description": "The workspace name value.",
                  "type": "string"
                }
              },
              "required": [
                "created_at",
                "description",
                "id",
                "inherit_project",
                "is_task",
                "last_active_at",
                "title",
                "updated_at",
                "workspace_id",
                "workspace_item_number"
              ],
              "type": "object"
            },
            "type": "array"
          }
        },
        "required": [
          "data"
        ],
        "type": "object"
      },
      "GetItemsItemIdCommentsResult": {
        "additionalProperties": false,
        "properties": {
          "data": {
            "additionalProperties": false,
            "properties": {
              "comments": {
                "description": "The comments value.",
                "items": {
                  "additionalProperties": false,
                  "properties": {
                    "agent_owner_name": {
                      "description": "The agent owner name value.",
                      "type": "string"
                    },
                    "author_avatar": {
                      "description": "The author avatar value.",
                      "type": "string"
                    },
                    "author_email": {
                      "description": "The author email value.",
                      "type": "string"
                    },
                    "author_id": {
                      "description": "The author id value.",
                      "nullable": true,
                      "type": "integer"
                    },
                    "author_name": {
                      "description": "The author name value.",
                      "type": "string"
                    },
                    "content": {
                      "description": "The content value.",
                      "type": "string"
                    },
                    "content_html": {
                      "description": "The content html value.",
                      "type": "string"
                    },
                    "created_at": {
                      "description": "The created at value.",
                      "format": "date-time",
                      "type": "string"
                    },
                    "id": {
                      "description": "The id value.",
                      "type": "integer"
                    },
                    "is_agent": {
                      "description": "The is agent value.",
                      "type": "boolean"
                    },
                    "is_private": {
                      "description": "The is private value.",
                      "type": "boolean"
                    },
                    "item_id": {
                      "description": "The item id value.",
                      "type": "integer"
                    },
                    "portal_customer_id": {
                      "description": "The portal customer id value.",
                      "nullable": true,
                      "type": "integer"
                    },
                    "source": {
                      "description": "The source value.",
                      "type": "string"
                    },
                    "updated_at": {
                      "description": "The updated at value.",
                      "format": "date-time",
                      "type": "string"
                    }
                  },
                  "required": [
                    "content",
                    "created_at",
                    "id",
                    "is_private",
                    "item_id",
                    "source",
                    "updated_at"
                  ],
                  "type": "object"
                },
                "type": "array"
              },
              "has_more": {
                "description": "The has more value.",
                "type": "boolean"
              },
              "next_cursor": {
                "description": "The next cursor value.",
                "type": "string"
              },
              "refresh_cursor": {
                "description": "The refresh cursor value.",
                "type": "string"
              },
              "total": {
                "description": "The total value.",
                "nullable": true,
                "type": "integer"
              }
            },
            "required": [
              "comments",
              "has_more"
            ],
            "type": "object"
          }
        },
        "required": [
          "data"
        ],
        "type": "object"
      },
      "GetItemsItemIdDeleteInfoResult": {
        "additionalProperties": false,
        "properties": {
          "data": {
            "additionalProperties": false,
            "properties": {
              "descendant_count": {
                "description": "The descendant count value.",
                "type": "integer"
              },
              "has_children": {
                "description": "The has children value.",
                "type": "boolean"
              },
              "hierarchy_level": {
                "description": "The hierarchy level value.",
                "nullable": true,
                "type": "integer"
              },
              "item_type_id": {
                "description": "The item type id value.",
                "nullable": true,
                "type": "integer"
              },
              "parent_id": {
                "description": "The parent id value.",
                "nullable": true,
                "type": "integer"
              },
              "title": {
                "description": "The title value.",
                "type": "string"
              },
              "workspace_id": {
                "description": "The workspace id value.",
                "type": "integer"
              }
            },
            "required": [
              "descendant_count",
              "has_children",
              "title",
              "workspace_id"
            ],
            "type": "object"
          }
        },
        "required": [
          "data"
        ],
        "type": "object"
      },
      "GetItemsItemIdDescendantsResult": {
        "additionalProperties": false,
        "properties": {
          "data": {
            "items": {
              "additionalProperties": false,
              "properties": {
                "assignee_avatar": {
                  "description": "The assignee avatar value.",
                  "type": "string"
                },
                "assignee_email": {
                  "description": "The assignee email value.",
                  "type": "string"
                },
                "assignee_id": {
                  "description": "The assignee id value.",
                  "nullable": true,
                  "type": "integer"
                },
                "assignee_name": {
                  "description": "The assignee name value.",
                  "type": "string"
                },
                "calendar_data": {
                  "description": "The calendar data value.",
                  "items": {
                    "additionalProperties": false,
                    "properties": {
                      "created_at": {
                        "description": "The created at value.",
                        "type": "string"
                      },
                      "duration_minutes": {
                        "description": "The duration minutes value.",
                        "type": "integer"
                      },
                      "notes": {
                        "description": "The notes value.",
                        "type": "string"
                      },
                      "scheduled_date": {
                        "description": "The scheduled date value.",
                        "type": "string"
                      },
                      "scheduled_time": {
                        "description": "The scheduled time value.",
                        "type": "string"
                      },
                      "user_id": {
                        "description": "The user id value.",
                        "type": "integer"
                      },
                      "workspace_id": {
                        "description": "The workspace id value.",
                        "type": "integer"
                      }
                    },
                    "required": [
                      "created_at",
                      "scheduled_date",
                      "user_id",
                      "workspace_id"
                    ],
                    "type": "object"
                  },
                  "type": "array"
                },
                "channel_id": {
                  "description": "The channel id value.",
                  "nullable": true,
                  "type": "integer"
                },
                "channel_name": {
                  "description": "The channel name value.",
                  "type": "string"
                },
                "children": {
                  "description": "The children value.",
                  "items": {
                    "description": "Nested resource reference.",
                    "type": "object"
                  },
                  "type": "array"
                },
                "completed_at": {
                  "description": "The completed at value.",
                  "format": "date-time",
                  "nullable": true,
                  "type": "string"
                },
                "created_at": {
                  "description": "The created at value.",
                  "format": "date-time",
                  "type": "string"
                },
                "creator_email": {
                  "description": "The creator email value.",
                  "type": "string"
                },
                "creator_id": {
                  "description": "The creator id value.",
                  "nullable": true,
                  "type": "integer"
                },
                "creator_name": {
                  "description": "The creator name value.",
                  "type": "string"
                },
                "creator_portal_customer_email": {
                  "description": "The creator portal customer email value.",
                  "type": "string"
                },
                "creator_portal_customer_id": {
                  "description": "The creator portal customer id value.",
                  "nullable": true,
                  "type": "integer"
                },
                "creator_portal_customer_name": {
                  "description": "The creator portal customer name value.",
                  "type": "string"
                },
                "custom_field_values": {
                  "additionalProperties": {
                    "description": "Arbitrary JSON extension value."
                  },
                  "description": "The custom field values value.",
                  "type": "object"
                },
                "description": {
                  "description": "The description value.",
                  "type": "string"
                },
                "description_html": {
                  "description": "The description html value.",
                  "type": "string"
                },
                "due_date": {
                  "description": "The due date value.",
                  "format": "date-time",
                  "nullable": true,
                  "type": "string"
                },
                "effective_project_id": {
                  "description": "The effective project id value.",
                  "nullable": true,
                  "type": "integer"
                },
                "effective_project_name": {
                  "description": "The effective project name value.",
                  "type": "string"
                },
                "end_date": {
                  "description": "The end date value.",
                  "format": "date-time",
                  "nullable": true,
                  "type": "string"
                },
                "estimate_minutes": {
                  "description": "The estimate minutes value.",
                  "nullable": true,
                  "type": "integer"
                },
                "frac_index": {
                  "description": "The frac index value.",
                  "nullable": true,
                  "type": "string"
                },
                "id": {
                  "description": "The id value.",
                  "type": "integer"
                },
                "inherit_project": {
                  "description": "The inherit project value.",
                  "type": "boolean"
                },
                "is_task": {
                  "description": "Whether the item is a personal task. True is valid only in the authenticated caller's personal workspace and only with the Open or Done system status.",
                  "type": "boolean"
                },
                "item_type_builtin_key": {
                  "description": "The item type builtin key value.",
                  "type": "string"
                },
                "item_type_id": {
                  "description": "The item type id value.",
                  "nullable": true,
                  "type": "integer"
                },
                "item_type_name": {
                  "description": "The item type name value.",
                  "type": "string"
                },
                "iteration_end_date": {
                  "description": "The iteration end date value.",
                  "type": "string"
                },
                "iteration_id": {
                  "description": "The iteration id value.",
                  "nullable": true,
                  "type": "integer"
                },
                "iteration_name": {
                  "description": "The iteration name value.",
                  "type": "string"
                },
                "key": {
                  "description": "The key value.",
                  "type": "string"
                },
                "labels": {
                  "description": "The labels value.",
                  "items": {
                    "additionalProperties": false,
                    "properties": {
                      "color": {
                        "description": "The color value.",
                        "type": "string"
                      },
                      "created_at": {
                        "description": "The created at value.",
                        "format": "date-time",
                        "type": "string"
                      },
                      "id": {
                        "description": "The id value.",
                        "type": "integer"
                      },
                      "name": {
                        "description": "The name value.",
                        "type": "string"
                      },
                      "updated_at": {
                        "description": "The updated at value.",
                        "format": "date-time",
                        "type": "string"
                      }
                    },
                    "required": [
                      "color",
                      "created_at",
                      "id",
                      "name",
                      "updated_at"
                    ],
                    "type": "object"
                  },
                  "type": "array"
                },
                "last_active_at": {
                  "description": "The last active at value.",
                  "format": "date-time",
                  "type": "string"
                },
                "milestones": {
                  "description": "The milestones value.",
                  "items": {
                    "additionalProperties": false,
                    "properties": {
                      "category_color": {
                        "description": "The category color value.",
                        "type": "string"
                      },
                      "category_id": {
                        "description": "The category id value.",
                        "nullable": true,
                        "type": "integer"
                      },
                      "category_name": {
                        "description": "The category name value.",
                        "type": "string"
                      },
                      "created_at": {
                        "description": "The created at value.",
                        "format": "date-time",
                        "type": "string"
                      },
                      "description": {
                        "description": "The description value.",
                        "type": "string"
                      },
                      "external_key": {
                        "description": "The external key value.",
                        "nullable": true,
                        "type": "string"
                      },
                      "id": {
                        "description": "The id value.",
                        "type": "integer"
                      },
                      "is_global": {
                        "description": "The is global value.",
                        "type": "boolean"
                      },
                      "latest_release": {
                        "additionalProperties": false,
                        "description": "The latest release value.",
                        "nullable": true,
                        "properties": {
                          "body": {
                            "description": "The body value.",
                            "type": "string"
                          },
                          "created_at": {
                            "description": "The created at value.",
                            "type": "string"
                          },
                          "created_by": {
                            "description": "The created by value.",
                            "nullable": true,
                            "type": "integer"
                          },
                          "id": {
                            "description": "The id value.",
                            "type": "integer"
                          },
                          "is_draft": {
                            "description": "The is draft value.",
                            "type": "boolean"
                          },
                          "is_prerelease": {
                            "description": "The is prerelease value.",
                            "type": "boolean"
                          },
                          "milestone_id": {
                            "description": "The milestone id value.",
                            "type": "integer"
                          },
                          "name": {
                            "description": "The name value.",
                            "type": "string"
                          },
                          "scm_connection_id": {
                            "description": "The scm connection id value.",
                            "nullable": true,
                            "type": "integer"
                          },
                          "scm_release_id": {
                            "description": "The scm release id value.",
                            "nullable": true,
                            "type": "string"
                          },
                          "scm_release_url": {
                            "description": "The scm release url value.",
                            "nullable": true,
                            "type": "string"
                          },
                          "scm_repository": {
                            "description": "The scm repository value.",
                            "nullable": true,
                            "type": "string"
                          },
                          "tag_name": {
                            "description": "The tag name value.",
                            "type": "string"
                          },
                          "target_commitish": {
                            "description": "The target commitish value.",
                            "type": "string"
                          }
                        },
                        "required": [
                          "created_at",
                          "id",
                          "is_draft",
                          "is_prerelease",
                          "milestone_id",
                          "tag_name"
                        ],
                        "type": "object"
                      },
                      "name": {
                        "description": "The name value.",
                        "type": "string"
                      },
                      "position": {
                        "description": "The position value.",
                        "type": "integer"
                      },
                      "releases": {
                        "description": "The releases value.",
                        "items": {
                          "additionalProperties": false,
                          "properties": {
                            "body": {
                              "description": "The body value.",
                              "type": "string"
                            },
                            "created_at": {
                              "description": "The created at value.",
                              "type": "string"
                            },
                            "created_by": {
                              "description": "The created by value.",
                              "nullable": true,
                              "type": "integer"
                            },
                            "id": {
                              "description": "The id value.",
                              "type": "integer"
                            },
                            "is_draft": {
                              "description": "The is draft value.",
                              "type": "boolean"
                            },
                            "is_prerelease": {
                              "description": "The is prerelease value.",
                              "type": "boolean"
                            },
                            "milestone_id": {
                              "description": "The milestone id value.",
                              "type": "integer"
                            },
                            "name": {
                              "description": "The name value.",
                              "type": "string"
                            },
                            "scm_connection_id": {
                              "description": "The scm connection id value.",
                              "nullable": true,
                              "type": "integer"
                            },
                            "scm_release_id": {
                              "description": "The scm release id value.",
                              "nullable": true,
                              "type": "string"
                            },
                            "scm_release_url": {
                              "description": "The scm release url value.",
                              "nullable": true,
                              "type": "string"
                            },
                            "scm_repository": {
                              "description": "The scm repository value.",
                              "nullable": true,
                              "type": "string"
                            },
                            "tag_name": {
                              "description": "The tag name value.",
                              "type": "string"
                            },
                            "target_commitish": {
                              "description": "The target commitish value.",
                              "type": "string"
                            }
                          },
                          "required": [
                            "created_at",
                            "id",
                            "is_draft",
                            "is_prerelease",
                            "milestone_id",
                            "tag_name"
                          ],
                          "type": "object"
                        },
                        "type": "array"
                      },
                      "status": {
                        "description": "The status value.",
                        "type": "string"
                      },
                      "target_date": {
                        "description": "The target date value.",
                        "nullable": true,
                        "type": "string"
                      },
                      "updated_at": {
                        "description": "The updated at value.",
                        "format": "date-time",
                        "type": "string"
                      },
                      "workspace_id": {
                        "description": "The workspace id value.",
                        "nullable": true,
                        "type": "integer"
                      },
                      "workspace_name": {
                        "description": "The workspace name value.",
                        "type": "string"
                      }
                    },
                    "required": [
                      "created_at",
                      "description",
                      "id",
                      "is_global",
                      "name",
                      "position",
                      "status",
                      "updated_at"
                    ],
                    "type": "object"
                  },
                  "type": "array"
                },
                "parent_id": {
                  "description": "The parent id value.",
                  "nullable": true,
                  "type": "integer"
                },
                "parent_key": {
                  "description": "The parent key value.",
                  "type": "string"
                },
                "parent_title": {
                  "description": "The parent title value.",
                  "type": "string"
                },
                "parent_workspace_item_number": {
                  "description": "The parent workspace item number value.",
                  "nullable": true,
                  "type": "integer"
                },
                "personal_labels": {
                  "description": "The personal labels value.",
                  "items": {
                    "additionalProperties": false,
                    "properties": {
                      "color": {
                        "description": "The color value.",
                        "type": "string"
                      },
                      "created_at": {
                        "description": "The created at value.",
                        "format": "date-time",
                        "type": "string"
                      },
                      "id": {
                        "description": "The id value.",
                        "type": "integer"
                      },
                      "name": {
                        "description": "The name value.",
                        "type": "string"
                      },
                      "updated_at": {
                        "description": "The updated at value.",
                        "format": "date-time",
                        "type": "string"
                      },
                      "user_id": {
                        "description": "The user id value.",
                        "nullable": true,
                        "type": "integer"
                      }
                    },
                    "required": [
                      "color",
                      "created_at",
                      "id",
                      "name",
                      "updated_at"
                    ],
                    "type": "object"
                  },
                  "type": "array"
                },
                "priority_builtin_key": {
                  "description": "The priority builtin key value.",
                  "type": "string"
                },
                "priority_color": {
                  "description": "The priority color value.",
                  "type": "string"
                },
                "priority_icon": {
                  "description": "The priority icon value.",
                  "type": "string"
                },
                "priority_id": {
                  "description": "The priority id value.",
                  "nullable": true,
                  "type": "integer"
                },
                "priority_name": {
                  "description": "The priority name value.",
                  "type": "string"
                },
                "project_id": {
                  "description": "The project id value.",
                  "nullable": true,
                  "type": "integer"
                },
                "project_inheritance_mode": {
                  "description": "The project inheritance mode value.",
                  "type": "string"
                },
                "project_name": {
                  "description": "The project name value.",
                  "type": "string"
                },
                "related_work_item_id": {
                  "description": "The related work item id value.",
                  "nullable": true,
                  "type": "integer"
                },
                "related_work_item_number": {
                  "description": "The related work item number value.",
                  "type": "integer"
                },
                "related_work_item_title": {
                  "description": "The related work item title value.",
                  "type": "string"
                },
                "related_work_item_workspace_id": {
                  "description": "The related work item workspace id value.",
                  "type": "integer"
                },
                "related_work_item_workspace_key": {
                  "description": "The related work item workspace key value.",
                  "type": "string"
                },
                "reporter_avatar": {
                  "description": "The reporter avatar value.",
                  "type": "string"
                },
                "reporter_email": {
                  "description": "The reporter email value.",
                  "type": "string"
                },
                "reporter_id": {
                  "description": "The reporter id value.",
                  "nullable": true,
                  "type": "integer"
                },
                "reporter_name": {
                  "description": "The reporter name value.",
                  "type": "string"
                },
                "request_type_id": {
                  "description": "The request type id value.",
                  "nullable": true,
                  "type": "integer"
                },
                "request_type_name": {
                  "description": "The request type name value.",
                  "type": "string"
                },
                "start_date": {
                  "description": "The start date value.",
                  "format": "date-time",
                  "nullable": true,
                  "type": "string"
                },
                "status_builtin_key": {
                  "description": "The status builtin key value.",
                  "type": "string"
                },
                "status_color": {
                  "description": "The status color value.",
                  "type": "string"
                },
                "status_id": {
                  "description": "The status id value.",
                  "nullable": true,
                  "type": "integer"
                },
                "status_name": {
                  "description": "The status name value.",
                  "type": "string"
                },
                "status_since": {
                  "description": "The status since value.",
                  "format": "date-time",
                  "nullable": true,
                  "type": "string"
                },
                "story_points": {
                  "description": "The story points value.",
                  "nullable": true,
                  "type": "number"
                },
                "time_project_id": {
                  "description": "The time project id value.",
                  "nullable": true,
                  "type": "integer"
                },
                "time_project_name": {
                  "description": "The time project name value.",
                  "type": "string"
                },
                "title": {
                  "description": "The title value.",
                  "type": "string"
                },
                "updated_at": {
                  "description": "The updated at value.",
                  "format": "date-time",
                  "type": "string"
                },
                "virtual_field_data": {
                  "additionalProperties": {
                    "description": "Arbitrary JSON extension value."
                  },
                  "description": "The virtual field data value.",
                  "type": "object"
                },
                "workspace_id": {
                  "description": "The workspace id value.",
                  "type": "integer"
                },
                "workspace_item_number": {
                  "description": "The workspace item number value.",
                  "type": "integer"
                },
                "workspace_key": {
                  "description": "The workspace key value.",
                  "type": "string"
                },
                "workspace_name": {
                  "description": "The workspace name value.",
                  "type": "string"
                }
              },
              "required": [
                "created_at",
                "description",
                "id",
                "inherit_project",
                "is_task",
                "last_active_at",
                "title",
                "updated_at",
                "workspace_id",
                "workspace_item_number"
              ],
              "type": "object"
            },
            "type": "array"
          }
        },
        "required": [
          "data"
        ],
        "type": "object"
      },
      "GetItemsItemIdDetailSummaryResult": {
        "additionalProperties": false,
        "properties": {
          "data": {
            "additionalProperties": false,
            "properties": {
              "ancestors": {
                "description": "The ancestors value.",
                "items": {
                  "additionalProperties": false,
                  "properties": {
                    "assignee_avatar": {
                      "description": "The assignee avatar value.",
                      "type": "string"
                    },
                    "assignee_email": {
                      "description": "The assignee email value.",
                      "type": "string"
                    },
                    "assignee_id": {
                      "description": "The assignee id value.",
                      "nullable": true,
                      "type": "integer"
                    },
                    "assignee_name": {
                      "description": "The assignee name value.",
                      "type": "string"
                    },
                    "calendar_data": {
                      "description": "The calendar data value.",
                      "items": {
                        "additionalProperties": false,
                        "properties": {
                          "created_at": {
                            "description": "The created at value.",
                            "type": "string"
                          },
                          "duration_minutes": {
                            "description": "The duration minutes value.",
                            "type": "integer"
                          },
                          "notes": {
                            "description": "The notes value.",
                            "type": "string"
                          },
                          "scheduled_date": {
                            "description": "The scheduled date value.",
                            "type": "string"
                          },
                          "scheduled_time": {
                            "description": "The scheduled time value.",
                            "type": "string"
                          },
                          "user_id": {
                            "description": "The user id value.",
                            "type": "integer"
                          },
                          "workspace_id": {
                            "description": "The workspace id value.",
                            "type": "integer"
                          }
                        },
                        "required": [
                          "created_at",
                          "scheduled_date",
                          "user_id",
                          "workspace_id"
                        ],
                        "type": "object"
                      },
                      "type": "array"
                    },
                    "channel_id": {
                      "description": "The channel id value.",
                      "nullable": true,
                      "type": "integer"
                    },
                    "channel_name": {
                      "description": "The channel name value.",
                      "type": "string"
                    },
                    "children": {
                      "description": "The children value.",
                      "items": {
                        "description": "Nested resource reference.",
                        "type": "object"
                      },
                      "type": "array"
                    },
                    "completed_at": {
                      "description": "The completed at value.",
                      "format": "date-time",
                      "nullable": true,
                      "type": "string"
                    },
                    "created_at": {
                      "description": "The created at value.",
                      "format": "date-time",
                      "type": "string"
                    },
                    "creator_email": {
                      "description": "The creator email value.",
                      "type": "string"
                    },
                    "creator_id": {
                      "description": "The creator id value.",
                      "nullable": true,
                      "type": "integer"
                    },
                    "creator_name": {
                      "description": "The creator name value.",
                      "type": "string"
                    },
                    "creator_portal_customer_email": {
                      "description": "The creator portal customer email value.",
                      "type": "string"
                    },
                    "creator_portal_customer_id": {
                      "description": "The creator portal customer id value.",
                      "nullable": true,
                      "type": "integer"
                    },
                    "creator_portal_customer_name": {
                      "description": "The creator portal customer name value.",
                      "type": "string"
                    },
                    "custom_field_values": {
                      "additionalProperties": {
                        "description": "Arbitrary JSON extension value."
                      },
                      "description": "The custom field values value.",
                      "type": "object"
                    },
                    "description": {
                      "description": "The description value.",
                      "type": "string"
                    },
                    "description_html": {
                      "description": "The description html value.",
                      "type": "string"
                    },
                    "due_date": {
                      "description": "The due date value.",
                      "format": "date-time",
                      "nullable": true,
                      "type": "string"
                    },
                    "effective_project_id": {
                      "description": "The effective project id value.",
                      "nullable": true,
                      "type": "integer"
                    },
                    "effective_project_name": {
                      "description": "The effective project name value.",
                      "type": "string"
                    },
                    "end_date": {
                      "description": "The end date value.",
                      "format": "date-time",
                      "nullable": true,
                      "type": "string"
                    },
                    "estimate_minutes": {
                      "description": "The estimate minutes value.",
                      "nullable": true,
                      "type": "integer"
                    },
                    "frac_index": {
                      "description": "The frac index value.",
                      "nullable": true,
                      "type": "string"
                    },
                    "id": {
                      "description": "The id value.",
                      "type": "integer"
                    },
                    "inherit_project": {
                      "description": "The inherit project value.",
                      "type": "boolean"
                    },
                    "is_task": {
                      "description": "Whether the item is a personal task. True is valid only in the authenticated caller's personal workspace and only with the Open or Done system status.",
                      "type": "boolean"
                    },
                    "item_type_builtin_key": {
                      "description": "The item type builtin key value.",
                      "type": "string"
                    },
                    "item_type_id": {
                      "description": "The item type id value.",
                      "nullable": true,
                      "type": "integer"
                    },
                    "item_type_name": {
                      "description": "The item type name value.",
                      "type": "string"
                    },
                    "iteration_end_date": {
                      "description": "The iteration end date value.",
                      "type": "string"
                    },
                    "iteration_id": {
                      "description": "The iteration id value.",
                      "nullable": true,
                      "type": "integer"
                    },
                    "iteration_name": {
                      "description": "The iteration name value.",
                      "type": "string"
                    },
                    "key": {
                      "description": "The key value.",
                      "type": "string"
                    },
                    "labels": {
                      "description": "The labels value.",
                      "items": {
                        "additionalProperties": false,
                        "properties": {
                          "color": {
                            "description": "The color value.",
                            "type": "string"
                          },
                          "created_at": {
                            "description": "The created at value.",
                            "format": "date-time",
                            "type": "string"
                          },
                          "id": {
                            "description": "The id value.",
                            "type": "integer"
                          },
                          "name": {
                            "description": "The name value.",
                            "type": "string"
                          },
                          "updated_at": {
                            "description": "The updated at value.",
                            "format": "date-time",
                            "type": "string"
                          }
                        },
                        "required": [
                          "color",
                          "created_at",
                          "id",
                          "name",
                          "updated_at"
                        ],
                        "type": "object"
                      },
                      "type": "array"
                    },
                    "last_active_at": {
                      "description": "The last active at value.",
                      "format": "date-time",
                      "type": "string"
                    },
                    "milestones": {
                      "description": "The milestones value.",
                      "items": {
                        "additionalProperties": false,
                        "properties": {
                          "category_color": {
                            "description": "The category color value.",
                            "type": "string"
                          },
                          "category_id": {
                            "description": "The category id value.",
                            "nullable": true,
                            "type": "integer"
                          },
                          "category_name": {
                            "description": "The category name value.",
                            "type": "string"
                          },
                          "created_at": {
                            "description": "The created at value.",
                            "format": "date-time",
                            "type": "string"
                          },
                          "description": {
                            "description": "The description value.",
                            "type": "string"
                          },
                          "external_key": {
                            "description": "The external key value.",
                            "nullable": true,
                            "type": "string"
                          },
                          "id": {
                            "description": "The id value.",
                            "type": "integer"
                          },
                          "is_global": {
                            "description": "The is global value.",
                            "type": "boolean"
                          },
                          "latest_release": {
                            "additionalProperties": false,
                            "description": "The latest release value.",
                            "nullable": true,
                            "properties": {
                              "body": {
                                "description": "The body value.",
                                "type": "string"
                              },
                              "created_at": {
                                "description": "The created at value.",
                                "type": "string"
                              },
                              "created_by": {
                                "description": "The created by value.",
                                "nullable": true,
                                "type": "integer"
                              },
                              "id": {
                                "description": "The id value.",
                                "type": "integer"
                              },
                              "is_draft": {
                                "description": "The is draft value.",
                                "type": "boolean"
                              },
                              "is_prerelease": {
                                "description": "The is prerelease value.",
                                "type": "boolean"
                              },
                              "milestone_id": {
                                "description": "The milestone id value.",
                                "type": "integer"
                              },
                              "name": {
                                "description": "The name value.",
                                "type": "string"
                              },
                              "scm_connection_id": {
                                "description": "The scm connection id value.",
                                "nullable": true,
                                "type": "integer"
                              },
                              "scm_release_id": {
                                "description": "The scm release id value.",
                                "nullable": true,
                                "type": "string"
                              },
                              "scm_release_url": {
                                "description": "The scm release url value.",
                                "nullable": true,
                                "type": "string"
                              },
                              "scm_repository": {
                                "description": "The scm repository value.",
                                "nullable": true,
                                "type": "string"
                              },
                              "tag_name": {
                                "description": "The tag name value.",
                                "type": "string"
                              },
                              "target_commitish": {
                                "description": "The target commitish value.",
                                "type": "string"
                              }
                            },
                            "required": [
                              "created_at",
                              "id",
                              "is_draft",
                              "is_prerelease",
                              "milestone_id",
                              "tag_name"
                            ],
                            "type": "object"
                          },
                          "name": {
                            "description": "The name value.",
                            "type": "string"
                          },
                          "position": {
                            "description": "The position value.",
                            "type": "integer"
                          },
                          "releases": {
                            "description": "The releases value.",
                            "items": {
                              "additionalProperties": false,
                              "properties": {
                                "body": {
                                  "description": "The body value.",
                                  "type": "string"
                                },
                                "created_at": {
                                  "description": "The created at value.",
                                  "type": "string"
                                },
                                "created_by": {
                                  "description": "The created by value.",
                                  "nullable": true,
                                  "type": "integer"
                                },
                                "id": {
                                  "description": "The id value.",
                                  "type": "integer"
                                },
                                "is_draft": {
                                  "description": "The is draft value.",
                                  "type": "boolean"
                                },
                                "is_prerelease": {
                                  "description": "The is prerelease value.",
                                  "type": "boolean"
                                },
                                "milestone_id": {
                                  "description": "The milestone id value.",
                                  "type": "integer"
                                },
                                "name": {
                                  "description": "The name value.",
                                  "type": "string"
                                },
                                "scm_connection_id": {
                                  "description": "The scm connection id value.",
                                  "nullable": true,
                                  "type": "integer"
                                },
                                "scm_release_id": {
                                  "description": "The scm release id value.",
                                  "nullable": true,
                                  "type": "string"
                                },
                                "scm_release_url": {
                                  "description": "The scm release url value.",
                                  "nullable": true,
                                  "type": "string"
                                },
                                "scm_repository": {
                                  "description": "The scm repository value.",
                                  "nullable": true,
                                  "type": "string"
                                },
                                "tag_name": {
                                  "description": "The tag name value.",
                                  "type": "string"
                                },
                                "target_commitish": {
                                  "description": "The target commitish value.",
                                  "type": "string"
                                }
                              },
                              "required": [
                                "created_at",
                                "id",
                                "is_draft",
                                "is_prerelease",
                                "milestone_id",
                                "tag_name"
                              ],
                              "type": "object"
                            },
                            "type": "array"
                          },
                          "status": {
                            "description": "The status value.",
                            "type": "string"
                          },
                          "target_date": {
                            "description": "The target date value.",
                            "nullable": true,
                            "type": "string"
                          },
                          "updated_at": {
                            "description": "The updated at value.",
                            "format": "date-time",
                            "type": "string"
                          },
                          "workspace_id": {
                            "description": "The workspace id value.",
                            "nullable": true,
                            "type": "integer"
                          },
                          "workspace_name": {
                            "description": "The workspace name value.",
                            "type": "string"
                          }
                        },
                        "required": [
                          "created_at",
                          "description",
                          "id",
                          "is_global",
                          "name",
                          "position",
                          "status",
                          "updated_at"
                        ],
                        "type": "object"
                      },
                      "type": "array"
                    },
                    "parent_id": {
                      "description": "The parent id value.",
                      "nullable": true,
                      "type": "integer"
                    },
                    "parent_key": {
                      "description": "The parent key value.",
                      "type": "string"
                    },
                    "parent_title": {
                      "description": "The parent title value.",
                      "type": "string"
                    },
                    "parent_workspace_item_number": {
                      "description": "The parent workspace item number value.",
                      "nullable": true,
                      "type": "integer"
                    },
                    "personal_labels": {
                      "description": "The personal labels value.",
                      "items": {
                        "additionalProperties": false,
                        "properties": {
                          "color": {
                            "description": "The color value.",
                            "type": "string"
                          },
                          "created_at": {
                            "description": "The created at value.",
                            "format": "date-time",
                            "type": "string"
                          },
                          "id": {
                            "description": "The id value.",
                            "type": "integer"
                          },
                          "name": {
                            "description": "The name value.",
                            "type": "string"
                          },
                          "updated_at": {
                            "description": "The updated at value.",
                            "format": "date-time",
                            "type": "string"
                          },
                          "user_id": {
                            "description": "The user id value.",
                            "nullable": true,
                            "type": "integer"
                          }
                        },
                        "required": [
                          "color",
                          "created_at",
                          "id",
                          "name",
                          "updated_at"
                        ],
                        "type": "object"
                      },
                      "type": "array"
                    },
                    "priority_builtin_key": {
                      "description": "The priority builtin key value.",
                      "type": "string"
                    },
                    "priority_color": {
                      "description": "The priority color value.",
                      "type": "string"
                    },
                    "priority_icon": {
                      "description": "The priority icon value.",
                      "type": "string"
                    },
                    "priority_id": {
                      "description": "The priority id value.",
                      "nullable": true,
                      "type": "integer"
                    },
                    "priority_name": {
                      "description": "The priority name value.",
                      "type": "string"
                    },
                    "project_id": {
                      "description": "The project id value.",
                      "nullable": true,
                      "type": "integer"
                    },
                    "project_inheritance_mode": {
                      "description": "The project inheritance mode value.",
                      "type": "string"
                    },
                    "project_name": {
                      "description": "The project name value.",
                      "type": "string"
                    },
                    "related_work_item_id": {
                      "description": "The related work item id value.",
                      "nullable": true,
                      "type": "integer"
                    },
                    "related_work_item_number": {
                      "description": "The related work item number value.",
                      "type": "integer"
                    },
                    "related_work_item_title": {
                      "description": "The related work item title value.",
                      "type": "string"
                    },
                    "related_work_item_workspace_id": {
                      "description": "The related work item workspace id value.",
                      "type": "integer"
                    },
                    "related_work_item_workspace_key": {
                      "description": "The related work item workspace key value.",
                      "type": "string"
                    },
                    "reporter_avatar": {
                      "description": "The reporter avatar value.",
                      "type": "string"
                    },
                    "reporter_email": {
                      "description": "The reporter email value.",
                      "type": "string"
                    },
                    "reporter_id": {
                      "description": "The reporter id value.",
                      "nullable": true,
                      "type": "integer"
                    },
                    "reporter_name": {
                      "description": "The reporter name value.",
                      "type": "string"
                    },
                    "request_type_id": {
                      "description": "The request type id value.",
                      "nullable": true,
                      "type": "integer"
                    },
                    "request_type_name": {
                      "description": "The request type name value.",
                      "type": "string"
                    },
                    "start_date": {
                      "description": "The start date value.",
                      "format": "date-time",
                      "nullable": true,
                      "type": "string"
                    },
                    "status_builtin_key": {
                      "description": "The status builtin key value.",
                      "type": "string"
                    },
                    "status_color": {
                      "description": "The status color value.",
                      "type": "string"
                    },
                    "status_id": {
                      "description": "The status id value.",
                      "nullable": true,
                      "type": "integer"
                    },
                    "status_name": {
                      "description": "The status name value.",
                      "type": "string"
                    },
                    "status_since": {
                      "description": "The status since value.",
                      "format": "date-time",
                      "nullable": true,
                      "type": "string"
                    },
                    "story_points": {
                      "description": "The story points value.",
                      "nullable": true,
                      "type": "number"
                    },
                    "time_project_id": {
                      "description": "The time project id value.",
                      "nullable": true,
                      "type": "integer"
                    },
                    "time_project_name": {
                      "description": "The time project name value.",
                      "type": "string"
                    },
                    "title": {
                      "description": "The title value.",
                      "type": "string"
                    },
                    "updated_at": {
                      "description": "The updated at value.",
                      "format": "date-time",
                      "type": "string"
                    },
                    "virtual_field_data": {
                      "additionalProperties": {
                        "description": "Arbitrary JSON extension value."
                      },
                      "description": "The virtual field data value.",
                      "type": "object"
                    },
                    "workspace_id": {
                      "description": "The workspace id value.",
                      "type": "integer"
                    },
                    "workspace_item_number": {
                      "description": "The workspace item number value.",
                      "type": "integer"
                    },
                    "workspace_key": {
                      "description": "The workspace key value.",
                      "type": "string"
                    },
                    "workspace_name": {
                      "description": "The workspace name value.",
                      "type": "string"
                    }
                  },
                  "required": [
                    "created_at",
                    "description",
                    "id",
                    "inherit_project",
                    "is_task",
                    "last_active_at",
                    "title",
                    "updated_at",
                    "workspace_id",
                    "workspace_item_number"
                  ],
                  "type": "object"
                },
                "type": "array"
              },
              "available_sub_issue_types": {
                "description": "The available sub issue types value.",
                "items": {
                  "additionalProperties": false,
                  "properties": {
                    "builtin_key": {
                      "description": "The builtin key value.",
                      "type": "string"
                    },
                    "color": {
                      "description": "The color value.",
                      "type": "string"
                    },
                    "description": {
                      "description": "The description value.",
                      "type": "string"
                    },
                    "hierarchy_level": {
                      "description": "The hierarchy level value.",
                      "type": "integer"
                    },
                    "icon": {
                      "description": "The icon value.",
                      "type": "string"
                    },
                    "id": {
                      "description": "The id value.",
                      "type": "integer"
                    },
                    "is_default": {
                      "description": "The is default value.",
                      "type": "boolean"
                    },
                    "name": {
                      "description": "The name value.",
                      "type": "string"
                    },
                    "sort_order": {
                      "description": "The sort order value.",
                      "type": "integer"
                    }
                  },
                  "required": [
                    "color",
                    "description",
                    "hierarchy_level",
                    "icon",
                    "id",
                    "is_default",
                    "name",
                    "sort_order"
                  ],
                  "type": "object"
                },
                "type": "array"
              },
              "children": {
                "description": "The children value.",
                "items": {
                  "additionalProperties": false,
                  "properties": {
                    "assignee_avatar": {
                      "description": "The assignee avatar value.",
                      "type": "string"
                    },
                    "assignee_email": {
                      "description": "The assignee email value.",
                      "type": "string"
                    },
                    "assignee_id": {
                      "description": "The assignee id value.",
                      "nullable": true,
                      "type": "integer"
                    },
                    "assignee_name": {
                      "description": "The assignee name value.",
                      "type": "string"
                    },
                    "calendar_data": {
                      "description": "The calendar data value.",
                      "items": {
                        "additionalProperties": false,
                        "properties": {
                          "created_at": {
                            "description": "The created at value.",
                            "type": "string"
                          },
                          "duration_minutes": {
                            "description": "The duration minutes value.",
                            "type": "integer"
                          },
                          "notes": {
                            "description": "The notes value.",
                            "type": "string"
                          },
                          "scheduled_date": {
                            "description": "The scheduled date value.",
                            "type": "string"
                          },
                          "scheduled_time": {
                            "description": "The scheduled time value.",
                            "type": "string"
                          },
                          "user_id": {
                            "description": "The user id value.",
                            "type": "integer"
                          },
                          "workspace_id": {
                            "description": "The workspace id value.",
                            "type": "integer"
                          }
                        },
                        "required": [
                          "created_at",
                          "scheduled_date",
                          "user_id",
                          "workspace_id"
                        ],
                        "type": "object"
                      },
                      "type": "array"
                    },
                    "channel_id": {
                      "description": "The channel id value.",
                      "nullable": true,
                      "type": "integer"
                    },
                    "channel_name": {
                      "description": "The channel name value.",
                      "type": "string"
                    },
                    "children": {
                      "description": "The children value.",
                      "items": {
                        "description": "Nested resource reference.",
                        "type": "object"
                      },
                      "type": "array"
                    },
                    "completed_at": {
                      "description": "The completed at value.",
                      "format": "date-time",
                      "nullable": true,
                      "type": "string"
                    },
                    "created_at": {
                      "description": "The created at value.",
                      "format": "date-time",
                      "type": "string"
                    },
                    "creator_email": {
                      "description": "The creator email value.",
                      "type": "string"
                    },
                    "creator_id": {
                      "description": "The creator id value.",
                      "nullable": true,
                      "type": "integer"
                    },
                    "creator_name": {
                      "description": "The creator name value.",
                      "type": "string"
                    },
                    "creator_portal_customer_email": {
                      "description": "The creator portal customer email value.",
                      "type": "string"
                    },
                    "creator_portal_customer_id": {
                      "description": "The creator portal customer id value.",
                      "nullable": true,
                      "type": "integer"
                    },
                    "creator_portal_customer_name": {
                      "description": "The creator portal customer name value.",
                      "type": "string"
                    },
                    "custom_field_values": {
                      "additionalProperties": {
                        "description": "Arbitrary JSON extension value."
                      },
                      "description": "The custom field values value.",
                      "type": "object"
                    },
                    "description": {
                      "description": "The description value.",
                      "type": "string"
                    },
                    "description_html": {
                      "description": "The description html value.",
                      "type": "string"
                    },
                    "due_date": {
                      "description": "The due date value.",
                      "format": "date-time",
                      "nullable": true,
                      "type": "string"
                    },
                    "effective_project_id": {
                      "description": "The effective project id value.",
                      "nullable": true,
                      "type": "integer"
                    },
                    "effective_project_name": {
                      "description": "The effective project name value.",
                      "type": "string"
                    },
                    "end_date": {
                      "description": "The end date value.",
                      "format": "date-time",
                      "nullable": true,
                      "type": "string"
                    },
                    "estimate_minutes": {
                      "description": "The estimate minutes value.",
                      "nullable": true,
                      "type": "integer"
                    },
                    "frac_index": {
                      "description": "The frac index value.",
                      "nullable": true,
                      "type": "string"
                    },
                    "id": {
                      "description": "The id value.",
                      "type": "integer"
                    },
                    "inherit_project": {
                      "description": "The inherit project value.",
                      "type": "boolean"
                    },
                    "is_task": {
                      "description": "Whether the item is a personal task. True is valid only in the authenticated caller's personal workspace and only with the Open or Done system status.",
                      "type": "boolean"
                    },
                    "item_type_builtin_key": {
                      "description": "The item type builtin key value.",
                      "type": "string"
                    },
                    "item_type_id": {
                      "description": "The item type id value.",
                      "nullable": true,
                      "type": "integer"
                    },
                    "item_type_name": {
                      "description": "The item type name value.",
                      "type": "string"
                    },
                    "iteration_end_date": {
                      "description": "The iteration end date value.",
                      "type": "string"
                    },
                    "iteration_id": {
                      "description": "The iteration id value.",
                      "nullable": true,
                      "type": "integer"
                    },
                    "iteration_name": {
                      "description": "The iteration name value.",
                      "type": "string"
                    },
                    "key": {
                      "description": "The key value.",
                      "type": "string"
                    },
                    "labels": {
                      "description": "The labels value.",
                      "items": {
                        "additionalProperties": false,
                        "properties": {
                          "color": {
                            "description": "The color value.",
                            "type": "string"
                          },
                          "created_at": {
                            "description": "The created at value.",
                            "format": "date-time",
                            "type": "string"
                          },
                          "id": {
                            "description": "The id value.",
                            "type": "integer"
                          },
                          "name": {
                            "description": "The name value.",
                            "type": "string"
                          },
                          "updated_at": {
                            "description": "The updated at value.",
                            "format": "date-time",
                            "type": "string"
                          }
                        },
                        "required": [
                          "color",
                          "created_at",
                          "id",
                          "name",
                          "updated_at"
                        ],
                        "type": "object"
                      },
                      "type": "array"
                    },
                    "last_active_at": {
                      "description": "The last active at value.",
                      "format": "date-time",
                      "type": "string"
                    },
                    "milestones": {
                      "description": "The milestones value.",
                      "items": {
                        "additionalProperties": false,
                        "properties": {
                          "category_color": {
                            "description": "The category color value.",
                            "type": "string"
                          },
                          "category_id": {
                            "description": "The category id value.",
                            "nullable": true,
                            "type": "integer"
                          },
                          "category_name": {
                            "description": "The category name value.",
                            "type": "string"
                          },
                          "created_at": {
                            "description": "The created at value.",
                            "format": "date-time",
                            "type": "string"
                          },
                          "description": {
                            "description": "The description value.",
                            "type": "string"
                          },
                          "external_key": {
                            "description": "The external key value.",
                            "nullable": true,
                            "type": "string"
                          },
                          "id": {
                            "description": "The id value.",
                            "type": "integer"
                          },
                          "is_global": {
                            "description": "The is global value.",
                            "type": "boolean"
                          },
                          "latest_release": {
                            "additionalProperties": false,
                            "description": "The latest release value.",
                            "nullable": true,
                            "properties": {
                              "body": {
                                "description": "The body value.",
                                "type": "string"
                              },
                              "created_at": {
                                "description": "The created at value.",
                                "type": "string"
                              },
                              "created_by": {
                                "description": "The created by value.",
                                "nullable": true,
                                "type": "integer"
                              },
                              "id": {
                                "description": "The id value.",
                                "type": "integer"
                              },
                              "is_draft": {
                                "description": "The is draft value.",
                                "type": "boolean"
                              },
                              "is_prerelease": {
                                "description": "The is prerelease value.",
                                "type": "boolean"
                              },
                              "milestone_id": {
                                "description": "The milestone id value.",
                                "type": "integer"
                              },
                              "name": {
                                "description": "The name value.",
                                "type": "string"
                              },
                              "scm_connection_id": {
                                "description": "The scm connection id value.",
                                "nullable": true,
                                "type": "integer"
                              },
                              "scm_release_id": {
                                "description": "The scm release id value.",
                                "nullable": true,
                                "type": "string"
                              },
                              "scm_release_url": {
                                "description": "The scm release url value.",
                                "nullable": true,
                                "type": "string"
                              },
                              "scm_repository": {
                                "description": "The scm repository value.",
                                "nullable": true,
                                "type": "string"
                              },
                              "tag_name": {
                                "description": "The tag name value.",
                                "type": "string"
                              },
                              "target_commitish": {
                                "description": "The target commitish value.",
                                "type": "string"
                              }
                            },
                            "required": [
                              "created_at",
                              "id",
                              "is_draft",
                              "is_prerelease",
                              "milestone_id",
                              "tag_name"
                            ],
                            "type": "object"
                          },
                          "name": {
                            "description": "The name value.",
                            "type": "string"
                          },
                          "position": {
                            "description": "The position value.",
                            "type": "integer"
                          },
                          "releases": {
                            "description": "The releases value.",
                            "items": {
                              "additionalProperties": false,
                              "properties": {
                                "body": {
                                  "description": "The body value.",
                                  "type": "string"
                                },
                                "created_at": {
                                  "description": "The created at value.",
                                  "type": "string"
                                },
                                "created_by": {
                                  "description": "The created by value.",
                                  "nullable": true,
                                  "type": "integer"
                                },
                                "id": {
                                  "description": "The id value.",
                                  "type": "integer"
                                },
                                "is_draft": {
                                  "description": "The is draft value.",
                                  "type": "boolean"
                                },
                                "is_prerelease": {
                                  "description": "The is prerelease value.",
                                  "type": "boolean"
                                },
                                "milestone_id": {
                                  "description": "The milestone id value.",
                                  "type": "integer"
                                },
                                "name": {
                                  "description": "The name value.",
                                  "type": "string"
                                },
                                "scm_connection_id": {
                                  "description": "The scm connection id value.",
                                  "nullable": true,
                                  "type": "integer"
                                },
                                "scm_release_id": {
                                  "description": "The scm release id value.",
                                  "nullable": true,
                                  "type": "string"
                                },
                                "scm_release_url": {
                                  "description": "The scm release url value.",
                                  "nullable": true,
                                  "type": "string"
                                },
                                "scm_repository": {
                                  "description": "The scm repository value.",
                                  "nullable": true,
                                  "type": "string"
                                },
                                "tag_name": {
                                  "description": "The tag name value.",
                                  "type": "string"
                                },
                                "target_commitish": {
                                  "description": "The target commitish value.",
                                  "type": "string"
                                }
                              },
                              "required": [
                                "created_at",
                                "id",
                                "is_draft",
                                "is_prerelease",
                                "milestone_id",
                                "tag_name"
                              ],
                              "type": "object"
                            },
                            "type": "array"
                          },
                          "status": {
                            "description": "The status value.",
                            "type": "string"
                          },
                          "target_date": {
                            "description": "The target date value.",
                            "nullable": true,
                            "type": "string"
                          },
                          "updated_at": {
                            "description": "The updated at value.",
                            "format": "date-time",
                            "type": "string"
                          },
                          "workspace_id": {
                            "description": "The workspace id value.",
                            "nullable": true,
                            "type": "integer"
                          },
                          "workspace_name": {
                            "description": "The workspace name value.",
                            "type": "string"
                          }
                        },
                        "required": [
                          "created_at",
                          "description",
                          "id",
                          "is_global",
                          "name",
                          "position",
                          "status",
                          "updated_at"
                        ],
                        "type": "object"
                      },
                      "type": "array"
                    },
                    "parent_id": {
                      "description": "The parent id value.",
                      "nullable": true,
                      "type": "integer"
                    },
                    "parent_key": {
                      "description": "The parent key value.",
                      "type": "string"
                    },
                    "parent_title": {
                      "description": "The parent title value.",
                      "type": "string"
                    },
                    "parent_workspace_item_number": {
                      "description": "The parent workspace item number value.",
                      "nullable": true,
                      "type": "integer"
                    },
                    "personal_labels": {
                      "description": "The personal labels value.",
                      "items": {
                        "additionalProperties": false,
                        "properties": {
                          "color": {
                            "description": "The color value.",
                            "type": "string"
                          },
                          "created_at": {
                            "description": "The created at value.",
                            "format": "date-time",
                            "type": "string"
                          },
                          "id": {
                            "description": "The id value.",
                            "type": "integer"
                          },
                          "name": {
                            "description": "The name value.",
                            "type": "string"
                          },
                          "updated_at": {
                            "description": "The updated at value.",
                            "format": "date-time",
                            "type": "string"
                          },
                          "user_id": {
                            "description": "The user id value.",
                            "nullable": true,
                            "type": "integer"
                          }
                        },
                        "required": [
                          "color",
                          "created_at",
                          "id",
                          "name",
                          "updated_at"
                        ],
                        "type": "object"
                      },
                      "type": "array"
                    },
                    "priority_builtin_key": {
                      "description": "The priority builtin key value.",
                      "type": "string"
                    },
                    "priority_color": {
                      "description": "The priority color value.",
                      "type": "string"
                    },
                    "priority_icon": {
                      "description": "The priority icon value.",
                      "type": "string"
                    },
                    "priority_id": {
                      "description": "The priority id value.",
                      "nullable": true,
                      "type": "integer"
                    },
                    "priority_name": {
                      "description": "The priority name value.",
                      "type": "string"
                    },
                    "project_id": {
                      "description": "The project id value.",
                      "nullable": true,
                      "type": "integer"
                    },
                    "project_inheritance_mode": {
                      "description": "The project inheritance mode value.",
                      "type": "string"
                    },
                    "project_name": {
                      "description": "The project name value.",
                      "type": "string"
                    },
                    "related_work_item_id": {
                      "description": "The related work item id value.",
                      "nullable": true,
                      "type": "integer"
                    },
                    "related_work_item_number": {
                      "description": "The related work item number value.",
                      "type": "integer"
                    },
                    "related_work_item_title": {
                      "description": "The related work item title value.",
                      "type": "string"
                    },
                    "related_work_item_workspace_id": {
                      "description": "The related work item workspace id value.",
                      "type": "integer"
                    },
                    "related_work_item_workspace_key": {
                      "description": "The related work item workspace key value.",
                      "type": "string"
                    },
                    "reporter_avatar": {
                      "description": "The reporter avatar value.",
                      "type": "string"
                    },
                    "reporter_email": {
                      "description": "The reporter email value.",
                      "type": "string"
                    },
                    "reporter_id": {
                      "description": "The reporter id value.",
                      "nullable": true,
                      "type": "integer"
                    },
                    "reporter_name": {
                      "description": "The reporter name value.",
                      "type": "string"
                    },
                    "request_type_id": {
                      "description": "The request type id value.",
                      "nullable": true,
                      "type": "integer"
                    },
                    "request_type_name": {
                      "description": "The request type name value.",
                      "type": "string"
                    },
                    "start_date": {
                      "description": "The start date value.",
                      "format": "date-time",
                      "nullable": true,
                      "type": "string"
                    },
                    "status_builtin_key": {
                      "description": "The status builtin key value.",
                      "type": "string"
                    },
                    "status_color": {
                      "description": "The status color value.",
                      "type": "string"
                    },
                    "status_id": {
                      "description": "The status id value.",
                      "nullable": true,
                      "type": "integer"
                    },
                    "status_name": {
                      "description": "The status name value.",
                      "type": "string"
                    },
                    "status_since": {
                      "description": "The status since value.",
                      "format": "date-time",
                      "nullable": true,
                      "type": "string"
                    },
                    "story_points": {
                      "description": "The story points value.",
                      "nullable": true,
                      "type": "number"
                    },
                    "time_project_id": {
                      "description": "The time project id value.",
                      "nullable": true,
                      "type": "integer"
                    },
                    "time_project_name": {
                      "description": "The time project name value.",
                      "type": "string"
                    },
                    "title": {
                      "description": "The title value.",
                      "type": "string"
                    },
                    "updated_at": {
                      "description": "The updated at value.",
                      "format": "date-time",
                      "type": "string"
                    },
                    "virtual_field_data": {
                      "additionalProperties": {
                        "description": "Arbitrary JSON extension value."
                      },
                      "description": "The virtual field data value.",
                      "type": "object"
                    },
                    "workspace_id": {
                      "description": "The workspace id value.",
                      "type": "integer"
                    },
                    "workspace_item_number": {
                      "description": "The workspace item number value.",
                      "type": "integer"
                    },
                    "workspace_key": {
                      "description": "The workspace key value.",
                      "type": "string"
                    },
                    "workspace_name": {
                      "description": "The workspace name value.",
                      "type": "string"
                    }
                  },
                  "required": [
                    "created_at",
                    "description",
                    "id",
                    "inherit_project",
                    "is_task",
                    "last_active_at",
                    "title",
                    "updated_at",
                    "workspace_id",
                    "workspace_item_number"
                  ],
                  "type": "object"
                },
                "type": "array"
              },
              "current_hierarchy_level": {
                "additionalProperties": false,
                "description": "The current hierarchy level value.",
                "nullable": true,
                "properties": {
                  "builtin_key": {
                    "description": "The builtin key value.",
                    "type": "string"
                  },
                  "created_at": {
                    "description": "The created at value.",
                    "format": "date-time",
                    "type": "string"
                  },
                  "description": {
                    "description": "The description value.",
                    "type": "string"
                  },
                  "display_description": {
                    "description": "The display description value.",
                    "type": "string"
                  },
                  "display_name": {
                    "description": "The display name value.",
                    "type": "string"
                  },
                  "id": {
                    "description": "The id value.",
                    "type": "integer"
                  },
                  "level": {
                    "description": "The level value.",
                    "type": "integer"
                  },
                  "name": {
                    "description": "The name value.",
                    "type": "string"
                  },
                  "updated_at": {
                    "description": "The updated at value.",
                    "format": "date-time",
                    "type": "string"
                  }
                },
                "required": [
                  "created_at",
                  "description",
                  "display_name",
                  "id",
                  "level",
                  "name",
                  "updated_at"
                ],
                "type": "object"
              },
              "current_item_type": {
                "additionalProperties": false,
                "description": "The current item type value.",
                "nullable": true,
                "properties": {
                  "builtin_key": {
                    "description": "The builtin key value.",
                    "type": "string"
                  },
                  "color": {
                    "description": "The color value.",
                    "type": "string"
                  },
                  "description": {
                    "description": "The description value.",
                    "type": "string"
                  },
                  "hierarchy_level": {
                    "description": "The hierarchy level value.",
                    "type": "integer"
                  },
                  "icon": {
                    "description": "The icon value.",
                    "type": "string"
                  },
                  "id": {
                    "description": "The id value.",
                    "type": "integer"
                  },
                  "is_default": {
                    "description": "The is default value.",
                    "type": "boolean"
                  },
                  "name": {
                    "description": "The name value.",
                    "type": "string"
                  },
                  "sort_order": {
                    "description": "The sort order value.",
                    "type": "integer"
                  }
                },
                "required": [
                  "color",
                  "description",
                  "hierarchy_level",
                  "icon",
                  "id",
                  "is_default",
                  "name",
                  "sort_order"
                ],
                "type": "object"
              },
              "has_agent_runs": {
                "description": "The has agent runs value.",
                "type": "boolean"
              },
              "item": {
                "additionalProperties": false,
                "description": "The item value.",
                "nullable": true,
                "properties": {
                  "assignee_avatar": {
                    "description": "The assignee avatar value.",
                    "type": "string"
                  },
                  "assignee_email": {
                    "description": "The assignee email value.",
                    "type": "string"
                  },
                  "assignee_id": {
                    "description": "The assignee id value.",
                    "nullable": true,
                    "type": "integer"
                  },
                  "assignee_name": {
                    "description": "The assignee name value.",
                    "type": "string"
                  },
                  "calendar_data": {
                    "description": "The calendar data value.",
                    "items": {
                      "additionalProperties": false,
                      "properties": {
                        "created_at": {
                          "description": "The created at value.",
                          "type": "string"
                        },
                        "duration_minutes": {
                          "description": "The duration minutes value.",
                          "type": "integer"
                        },
                        "notes": {
                          "description": "The notes value.",
                          "type": "string"
                        },
                        "scheduled_date": {
                          "description": "The scheduled date value.",
                          "type": "string"
                        },
                        "scheduled_time": {
                          "description": "The scheduled time value.",
                          "type": "string"
                        },
                        "user_id": {
                          "description": "The user id value.",
                          "type": "integer"
                        },
                        "workspace_id": {
                          "description": "The workspace id value.",
                          "type": "integer"
                        }
                      },
                      "required": [
                        "created_at",
                        "scheduled_date",
                        "user_id",
                        "workspace_id"
                      ],
                      "type": "object"
                    },
                    "type": "array"
                  },
                  "channel_id": {
                    "description": "The channel id value.",
                    "nullable": true,
                    "type": "integer"
                  },
                  "channel_name": {
                    "description": "The channel name value.",
                    "type": "string"
                  },
                  "children": {
                    "description": "The children value.",
                    "items": {
                      "description": "Nested resource reference.",
                      "type": "object"
                    },
                    "type": "array"
                  },
                  "completed_at": {
                    "description": "The completed at value.",
                    "format": "date-time",
                    "nullable": true,
                    "type": "string"
                  },
                  "created_at": {
                    "description": "The created at value.",
                    "format": "date-time",
                    "type": "string"
                  },
                  "creator_email": {
                    "description": "The creator email value.",
                    "type": "string"
                  },
                  "creator_id": {
                    "description": "The creator id value.",
                    "nullable": true,
                    "type": "integer"
                  },
                  "creator_name": {
                    "description": "The creator name value.",
                    "type": "string"
                  },
                  "creator_portal_customer_email": {
                    "description": "The creator portal customer email value.",
                    "type": "string"
                  },
                  "creator_portal_customer_id": {
                    "description": "The creator portal customer id value.",
                    "nullable": true,
                    "type": "integer"
                  },
                  "creator_portal_customer_name": {
                    "description": "The creator portal customer name value.",
                    "type": "string"
                  },
                  "custom_field_values": {
                    "additionalProperties": {
                      "description": "Arbitrary JSON extension value."
                    },
                    "description": "The custom field values value.",
                    "type": "object"
                  },
                  "description": {
                    "description": "The description value.",
                    "type": "string"
                  },
                  "description_html": {
                    "description": "The description html value.",
                    "type": "string"
                  },
                  "due_date": {
                    "description": "The due date value.",
                    "format": "date-time",
                    "nullable": true,
                    "type": "string"
                  },
                  "effective_project_id": {
                    "description": "The effective project id value.",
                    "nullable": true,
                    "type": "integer"
                  },
                  "effective_project_name": {
                    "description": "The effective project name value.",
                    "type": "string"
                  },
                  "end_date": {
                    "description": "The end date value.",
                    "format": "date-time",
                    "nullable": true,
                    "type": "string"
                  },
                  "estimate_minutes": {
                    "description": "The estimate minutes value.",
                    "nullable": true,
                    "type": "integer"
                  },
                  "frac_index": {
                    "description": "The frac index value.",
                    "nullable": true,
                    "type": "string"
                  },
                  "id": {
                    "description": "The id value.",
                    "type": "integer"
                  },
                  "inherit_project": {
                    "description": "The inherit project value.",
                    "type": "boolean"
                  },
                  "is_task": {
                    "description": "Whether the item is a personal task. True is valid only in the authenticated caller's personal workspace and only with the Open or Done system status.",
                    "type": "boolean"
                  },
                  "item_type_builtin_key": {
                    "description": "The item type builtin key value.",
                    "type": "string"
                  },
                  "item_type_id": {
                    "description": "The item type id value.",
                    "nullable": true,
                    "type": "integer"
                  },
                  "item_type_name": {
                    "description": "The item type name value.",
                    "type": "string"
                  },
                  "iteration_end_date": {
                    "description": "The iteration end date value.",
                    "type": "string"
                  },
                  "iteration_id": {
                    "description": "The iteration id value.",
                    "nullable": true,
                    "type": "integer"
                  },
                  "iteration_name": {
                    "description": "The iteration name value.",
                    "type": "string"
                  },
                  "key": {
                    "description": "The key value.",
                    "type": "string"
                  },
                  "labels": {
                    "description": "The labels value.",
                    "items": {
                      "additionalProperties": false,
                      "properties": {
                        "color": {
                          "description": "The color value.",
                          "type": "string"
                        },
                        "created_at": {
                          "description": "The created at value.",
                          "format": "date-time",
                          "type": "string"
                        },
                        "id": {
                          "description": "The id value.",
                          "type": "integer"
                        },
                        "name": {
                          "description": "The name value.",
                          "type": "string"
                        },
                        "updated_at": {
                          "description": "The updated at value.",
                          "format": "date-time",
                          "type": "string"
                        }
                      },
                      "required": [
                        "color",
                        "created_at",
                        "id",
                        "name",
                        "updated_at"
                      ],
                      "type": "object"
                    },
                    "type": "array"
                  },
                  "last_active_at": {
                    "description": "The last active at value.",
                    "format": "date-time",
                    "type": "string"
                  },
                  "milestones": {
                    "description": "The milestones value.",
                    "items": {
                      "additionalProperties": false,
                      "properties": {
                        "category_color": {
                          "description": "The category color value.",
                          "type": "string"
                        },
                        "category_id": {
                          "description": "The category id value.",
                          "nullable": true,
                          "type": "integer"
                        },
                        "category_name": {
                          "description": "The category name value.",
                          "type": "string"
                        },
                        "created_at": {
                          "description": "The created at value.",
                          "format": "date-time",
                          "type": "string"
                        },
                        "description": {
                          "description": "The description value.",
                          "type": "string"
                        },
                        "external_key": {
                          "description": "The external key value.",
                          "nullable": true,
                          "type": "string"
                        },
                        "id": {
                          "description": "The id value.",
                          "type": "integer"
                        },
                        "is_global": {
                          "description": "The is global value.",
                          "type": "boolean"
                        },
                        "latest_release": {
                          "additionalProperties": false,
                          "description": "The latest release value.",
                          "nullable": true,
                          "properties": {
                            "body": {
                              "description": "The body value.",
                              "type": "string"
                            },
                            "created_at": {
                              "description": "The created at value.",
                              "type": "string"
                            },
                            "created_by": {
                              "description": "The created by value.",
                              "nullable": true,
                              "type": "integer"
                            },
                            "id": {
                              "description": "The id value.",
                              "type": "integer"
                            },
                            "is_draft": {
                              "description": "The is draft value.",
                              "type": "boolean"
                            },
                            "is_prerelease": {
                              "description": "The is prerelease value.",
                              "type": "boolean"
                            },
                            "milestone_id": {
                              "description": "The milestone id value.",
                              "type": "integer"
                            },
                            "name": {
                              "description": "The name value.",
                              "type": "string"
                            },
                            "scm_connection_id": {
                              "description": "The scm connection id value.",
                              "nullable": true,
                              "type": "integer"
                            },
                            "scm_release_id": {
                              "description": "The scm release id value.",
                              "nullable": true,
                              "type": "string"
                            },
                            "scm_release_url": {
                              "description": "The scm release url value.",
                              "nullable": true,
                              "type": "string"
                            },
                            "scm_repository": {
                              "description": "The scm repository value.",
                              "nullable": true,
                              "type": "string"
                            },
                            "tag_name": {
                              "description": "The tag name value.",
                              "type": "string"
                            },
                            "target_commitish": {
                              "description": "The target commitish value.",
                              "type": "string"
                            }
                          },
                          "required": [
                            "created_at",
                            "id",
                            "is_draft",
                            "is_prerelease",
                            "milestone_id",
                            "tag_name"
                          ],
                          "type": "object"
                        },
                        "name": {
                          "description": "The name value.",
                          "type": "string"
                        },
                        "position": {
                          "description": "The position value.",
                          "type": "integer"
                        },
                        "releases": {
                          "description": "The releases value.",
                          "items": {
                            "additionalProperties": false,
                            "properties": {
                              "body": {
                                "description": "The body value.",
                                "type": "string"
                              },
                              "created_at": {
                                "description": "The created at value.",
                                "type": "string"
                              },
                              "created_by": {
                                "description": "The created by value.",
                                "nullable": true,
                                "type": "integer"
                              },
                              "id": {
                                "description": "The id value.",
                                "type": "integer"
                              },
                              "is_draft": {
                                "description": "The is draft value.",
                                "type": "boolean"
                              },
                              "is_prerelease": {
                                "description": "The is prerelease value.",
                                "type": "boolean"
                              },
                              "milestone_id": {
                                "description": "The milestone id value.",
                                "type": "integer"
                              },
                              "name": {
                                "description": "The name value.",
                                "type": "string"
                              },
                              "scm_connection_id": {
                                "description": "The scm connection id value.",
                                "nullable": true,
                                "type": "integer"
                              },
                              "scm_release_id": {
                                "description": "The scm release id value.",
                                "nullable": true,
                                "type": "string"
                              },
                              "scm_release_url": {
                                "description": "The scm release url value.",
                                "nullable": true,
                                "type": "string"
                              },
                              "scm_repository": {
                                "description": "The scm repository value.",
                                "nullable": true,
                                "type": "string"
                              },
                              "tag_name": {
                                "description": "The tag name value.",
                                "type": "string"
                              },
                              "target_commitish": {
                                "description": "The target commitish value.",
                                "type": "string"
                              }
                            },
                            "required": [
                              "created_at",
                              "id",
                              "is_draft",
                              "is_prerelease",
                              "milestone_id",
                              "tag_name"
                            ],
                            "type": "object"
                          },
                          "type": "array"
                        },
                        "status": {
                          "description": "The status value.",
                          "type": "string"
                        },
                        "target_date": {
                          "description": "The target date value.",
                          "nullable": true,
                          "type": "string"
                        },
                        "updated_at": {
                          "description": "The updated at value.",
                          "format": "date-time",
                          "type": "string"
                        },
                        "workspace_id": {
                          "description": "The workspace id value.",
                          "nullable": true,
                          "type": "integer"
                        },
                        "workspace_name": {
                          "description": "The workspace name value.",
                          "type": "string"
                        }
                      },
                      "required": [
                        "created_at",
                        "description",
                        "id",
                        "is_global",
                        "name",
                        "position",
                        "status",
                        "updated_at"
                      ],
                      "type": "object"
                    },
                    "type": "array"
                  },
                  "parent_id": {
                    "description": "The parent id value.",
                    "nullable": true,
                    "type": "integer"
                  },
                  "parent_key": {
                    "description": "The parent key value.",
                    "type": "string"
                  },
                  "parent_title": {
                    "description": "The parent title value.",
                    "type": "string"
                  },
                  "parent_workspace_item_number": {
                    "description": "The parent workspace item number value.",
                    "nullable": true,
                    "type": "integer"
                  },
                  "personal_labels": {
                    "description": "The personal labels value.",
                    "items": {
                      "additionalProperties": false,
                      "properties": {
                        "color": {
                          "description": "The color value.",
                          "type": "string"
                        },
                        "created_at": {
                          "description": "The created at value.",
                          "format": "date-time",
                          "type": "string"
                        },
                        "id": {
                          "description": "The id value.",
                          "type": "integer"
                        },
                        "name": {
                          "description": "The name value.",
                          "type": "string"
                        },
                        "updated_at": {
                          "description": "The updated at value.",
                          "format": "date-time",
                          "type": "string"
                        },
                        "user_id": {
                          "description": "The user id value.",
                          "nullable": true,
                          "type": "integer"
                        }
                      },
                      "required": [
                        "color",
                        "created_at",
                        "id",
                        "name",
                        "updated_at"
                      ],
                      "type": "object"
                    },
                    "type": "array"
                  },
                  "priority_builtin_key": {
                    "description": "The priority builtin key value.",
                    "type": "string"
                  },
                  "priority_color": {
                    "description": "The priority color value.",
                    "type": "string"
                  },
                  "priority_icon": {
                    "description": "The priority icon value.",
                    "type": "string"
                  },
                  "priority_id": {
                    "description": "The priority id value.",
                    "nullable": true,
                    "type": "integer"
                  },
                  "priority_name": {
                    "description": "The priority name value.",
                    "type": "string"
                  },
                  "project_id": {
                    "description": "The project id value.",
                    "nullable": true,
                    "type": "integer"
                  },
                  "project_inheritance_mode": {
                    "description": "The project inheritance mode value.",
                    "type": "string"
                  },
                  "project_name": {
                    "description": "The project name value.",
                    "type": "string"
                  },
                  "related_work_item_id": {
                    "description": "The related work item id value.",
                    "nullable": true,
                    "type": "integer"
                  },
                  "related_work_item_number": {
                    "description": "The related work item number value.",
                    "type": "integer"
                  },
                  "related_work_item_title": {
                    "description": "The related work item title value.",
                    "type": "string"
                  },
                  "related_work_item_workspace_id": {
                    "description": "The related work item workspace id value.",
                    "type": "integer"
                  },
                  "related_work_item_workspace_key": {
                    "description": "The related work item workspace key value.",
                    "type": "string"
                  },
                  "reporter_avatar": {
                    "description": "The reporter avatar value.",
                    "type": "string"
                  },
                  "reporter_email": {
                    "description": "The reporter email value.",
                    "type": "string"
                  },
                  "reporter_id": {
                    "description": "The reporter id value.",
                    "nullable": true,
                    "type": "integer"
                  },
                  "reporter_name": {
                    "description": "The reporter name value.",
                    "type": "string"
                  },
                  "request_type_id": {
                    "description": "The request type id value.",
                    "nullable": true,
                    "type": "integer"
                  },
                  "request_type_name": {
                    "description": "The request type name value.",
                    "type": "string"
                  },
                  "start_date": {
                    "description": "The start date value.",
                    "format": "date-time",
                    "nullable": true,
                    "type": "string"
                  },
                  "status_builtin_key": {
                    "description": "The status builtin key value.",
                    "type": "string"
                  },
                  "status_color": {
                    "description": "The status color value.",
                    "type": "string"
                  },
                  "status_id": {
                    "description": "The status id value.",
                    "nullable": true,
                    "type": "integer"
                  },
                  "status_name": {
                    "description": "The status name value.",
                    "type": "string"
                  },
                  "status_since": {
                    "description": "The status since value.",
                    "format": "date-time",
                    "nullable": true,
                    "type": "string"
                  },
                  "story_points": {
                    "description": "The story points value.",
                    "nullable": true,
                    "type": "number"
                  },
                  "time_project_id": {
                    "description": "The time project id value.",
                    "nullable": true,
                    "type": "integer"
                  },
                  "time_project_name": {
                    "description": "The time project name value.",
                    "type": "string"
                  },
                  "title": {
                    "description": "The title value.",
                    "type": "string"
                  },
                  "updated_at": {
                    "description": "The updated at value.",
                    "format": "date-time",
                    "type": "string"
                  },
                  "virtual_field_data": {
                    "additionalProperties": {
                      "description": "Arbitrary JSON extension value."
                    },
                    "description": "The virtual field data value.",
                    "type": "object"
                  },
                  "workspace_id": {
                    "description": "The workspace id value.",
                    "type": "integer"
                  },
                  "workspace_item_number": {
                    "description": "The workspace item number value.",
                    "type": "integer"
                  },
                  "workspace_key": {
                    "description": "The workspace key value.",
                    "type": "string"
                  },
                  "workspace_name": {
                    "description": "The workspace name value.",
                    "type": "string"
                  }
                },
                "required": [
                  "created_at",
                  "description",
                  "id",
                  "inherit_project",
                  "is_task",
                  "last_active_at",
                  "title",
                  "updated_at",
                  "workspace_id",
                  "workspace_item_number"
                ],
                "type": "object"
              },
              "link_types": {
                "description": "The link types value.",
                "items": {
                  "additionalProperties": false,
                  "properties": {
                    "active": {
                      "description": "The active value.",
                      "type": "boolean"
                    },
                    "allowed_entity_types": {
                      "description": "The allowed entity types value.",
                      "items": {
                        "type": "string"
                      },
                      "type": "array"
                    },
                    "builtin_key": {
                      "description": "The builtin key value.",
                      "type": "string"
                    },
                    "color": {
                      "description": "The color value.",
                      "type": "string"
                    },
                    "created_at": {
                      "description": "The created at value.",
                      "format": "date-time",
                      "type": "string"
                    },
                    "description": {
                      "description": "The description value.",
                      "type": "string"
                    },
                    "display_description": {
                      "description": "The display description value.",
                      "type": "string"
                    },
                    "display_name": {
                      "description": "The display name value.",
                      "type": "string"
                    },
                    "forward_label": {
                      "description": "The forward label value.",
                      "type": "string"
                    },
                    "id": {
                      "description": "The id value.",
                      "type": "integer"
                    },
                    "is_system": {
                      "description": "The is system value.",
                      "type": "boolean"
                    },
                    "name": {
                      "description": "The name value.",
                      "type": "string"
                    },
                    "reverse_label": {
                      "description": "The reverse label value.",
                      "type": "string"
                    },
                    "updated_at": {
                      "description": "The updated at value.",
                      "format": "date-time",
                      "type": "string"
                    }
                  },
                  "required": [
                    "active",
                    "allowed_entity_types",
                    "color",
                    "created_at",
                    "description",
                    "display_name",
                    "forward_label",
                    "id",
                    "is_system",
                    "name",
                    "reverse_label",
                    "updated_at"
                  ],
                  "type": "object"
                },
                "type": "array"
              },
              "links": {
                "additionalProperties": false,
                "description": "The links value.",
                "properties": {
                  "incoming": {
                    "description": "The incoming value.",
                    "items": {
                      "additionalProperties": false,
                      "properties": {
                        "created_at": {
                          "description": "The created at value.",
                          "format": "date-time",
                          "type": "string"
                        },
                        "created_by": {
                          "description": "The created by value.",
                          "nullable": true,
                          "type": "integer"
                        },
                        "created_by_name": {
                          "description": "The created by name value.",
                          "type": "string"
                        },
                        "custom_field_id": {
                          "description": "The custom field id value.",
                          "nullable": true,
                          "type": "integer"
                        },
                        "custom_field_name": {
                          "description": "The custom field name value.",
                          "type": "string"
                        },
                        "id": {
                          "description": "The id value.",
                          "type": "integer"
                        },
                        "link_type_color": {
                          "description": "The link type color value.",
                          "type": "string"
                        },
                        "link_type_forward_label": {
                          "description": "The link type forward label value.",
                          "type": "string"
                        },
                        "link_type_id": {
                          "description": "The link type id value.",
                          "type": "integer"
                        },
                        "link_type_name": {
                          "description": "The link type name value.",
                          "type": "string"
                        },
                        "link_type_reverse_label": {
                          "description": "The link type reverse label value.",
                          "type": "string"
                        },
                        "source_id": {
                          "description": "The source id value.",
                          "type": "integer"
                        },
                        "source_item_number": {
                          "description": "The source item number value.",
                          "nullable": true,
                          "type": "integer"
                        },
                        "source_item_type_color": {
                          "description": "The source item type color value.",
                          "type": "string"
                        },
                        "source_item_type_icon": {
                          "description": "The source item type icon value.",
                          "type": "string"
                        },
                        "source_item_type_id": {
                          "description": "The source item type id value.",
                          "nullable": true,
                          "type": "integer"
                        },
                        "source_item_type_name": {
                          "description": "The source item type name value.",
                          "type": "string"
                        },
                        "source_status_color": {
                          "description": "The source status color value.",
                          "type": "string"
                        },
                        "source_status_id": {
                          "description": "The source status id value.",
                          "nullable": true,
                          "type": "integer"
                        },
                        "source_status_name": {
                          "description": "The source status name value.",
                          "type": "string"
                        },
                        "source_title": {
                          "description": "The source title value.",
                          "type": "string"
                        },
                        "source_type": {
                          "description": "The source type value.",
                          "type": "string"
                        },
                        "source_workspace_id": {
                          "description": "The source workspace id value.",
                          "nullable": true,
                          "type": "integer"
                        },
                        "source_workspace_key": {
                          "description": "The source workspace key value.",
                          "type": "string"
                        },
                        "target_id": {
                          "description": "The target id value.",
                          "type": "integer"
                        },
                        "target_item_number": {
                          "description": "The target item number value.",
                          "nullable": true,
                          "type": "integer"
                        },
                        "target_item_type_color": {
                          "description": "The target item type color value.",
                          "type": "string"
                        },
                        "target_item_type_icon": {
                          "description": "The target item type icon value.",
                          "type": "string"
                        },
                        "target_item_type_id": {
                          "description": "The target item type id value.",
                          "nullable": true,
                          "type": "integer"
                        },
                        "target_item_type_name": {
                          "description": "The target item type name value.",
                          "type": "string"
                        },
                        "target_status_color": {
                          "description": "The target status color value.",
                          "type": "string"
                        },
                        "target_status_id": {
                          "description": "The target status id value.",
                          "nullable": true,
                          "type": "integer"
                        },
                        "target_status_name": {
                          "description": "The target status name value.",
                          "type": "string"
                        },
                        "target_title": {
                          "description": "The target title value.",
                          "type": "string"
                        },
                        "target_type": {
                          "description": "The target type value.",
                          "type": "string"
                        },
                        "target_workspace_id": {
                          "description": "The target workspace id value.",
                          "nullable": true,
                          "type": "integer"
                        },
                        "target_workspace_key": {
                          "description": "The target workspace key value.",
                          "type": "string"
                        }
                      },
                      "required": [
                        "created_at",
                        "id",
                        "link_type_id",
                        "source_id",
                        "source_type",
                        "target_id",
                        "target_type"
                      ],
                      "type": "object"
                    },
                    "type": "array"
                  },
                  "outgoing": {
                    "description": "The outgoing value.",
                    "items": {
                      "additionalProperties": false,
                      "properties": {
                        "created_at": {
                          "description": "The created at value.",
                          "format": "date-time",
                          "type": "string"
                        },
                        "created_by": {
                          "description": "The created by value.",
                          "nullable": true,
                          "type": "integer"
                        },
                        "created_by_name": {
                          "description": "The created by name value.",
                          "type": "string"
                        },
                        "custom_field_id": {
                          "description": "The custom field id value.",
                          "nullable": true,
                          "type": "integer"
                        },
                        "custom_field_name": {
                          "description": "The custom field name value.",
                          "type": "string"
                        },
                        "id": {
                          "description": "The id value.",
                          "type": "integer"
                        },
                        "link_type_color": {
                          "description": "The link type color value.",
                          "type": "string"
                        },
                        "link_type_forward_label": {
                          "description": "The link type forward label value.",
                          "type": "string"
                        },
                        "link_type_id": {
                          "description": "The link type id value.",
                          "type": "integer"
                        },
                        "link_type_name": {
                          "description": "The link type name value.",
                          "type": "string"
                        },
                        "link_type_reverse_label": {
                          "description": "The link type reverse label value.",
                          "type": "string"
                        },
                        "source_id": {
                          "description": "The source id value.",
                          "type": "integer"
                        },
                        "source_item_number": {
                          "description": "The source item number value.",
                          "nullable": true,
                          "type": "integer"
                        },
                        "source_item_type_color": {
                          "description": "The source item type color value.",
                          "type": "string"
                        },
                        "source_item_type_icon": {
                          "description": "The source item type icon value.",
                          "type": "string"
                        },
                        "source_item_type_id": {
                          "description": "The source item type id value.",
                          "nullable": true,
                          "type": "integer"
                        },
                        "source_item_type_name": {
                          "description": "The source item type name value.",
                          "type": "string"
                        },
                        "source_status_color": {
                          "description": "The source status color value.",
                          "type": "string"
                        },
                        "source_status_id": {
                          "description": "The source status id value.",
                          "nullable": true,
                          "type": "integer"
                        },
                        "source_status_name": {
                          "description": "The source status name value.",
                          "type": "string"
                        },
                        "source_title": {
                          "description": "The source title value.",
                          "type": "string"
                        },
                        "source_type": {
                          "description": "The source type value.",
                          "type": "string"
                        },
                        "source_workspace_id": {
                          "description": "The source workspace id value.",
                          "nullable": true,
                          "type": "integer"
                        },
                        "source_workspace_key": {
                          "description": "The source workspace key value.",
                          "type": "string"
                        },
                        "target_id": {
                          "description": "The target id value.",
                          "type": "integer"
                        },
                        "target_item_number": {
                          "description": "The target item number value.",
                          "nullable": true,
                          "type": "integer"
                        },
                        "target_item_type_color": {
                          "description": "The target item type color value.",
                          "type": "string"
                        },
                        "target_item_type_icon": {
                          "description": "The target item type icon value.",
                          "type": "string"
                        },
                        "target_item_type_id": {
                          "description": "The target item type id value.",
                          "nullable": true,
                          "type": "integer"
                        },
                        "target_item_type_name": {
                          "description": "The target item type name value.",
                          "type": "string"
                        },
                        "target_status_color": {
                          "description": "The target status color value.",
                          "type": "string"
                        },
                        "target_status_id": {
                          "description": "The target status id value.",
                          "nullable": true,
                          "type": "integer"
                        },
                        "target_status_name": {
                          "description": "The target status name value.",
                          "type": "string"
                        },
                        "target_title": {
                          "description": "The target title value.",
                          "type": "string"
                        },
                        "target_type": {
                          "description": "The target type value.",
                          "type": "string"
                        },
                        "target_workspace_id": {
                          "description": "The target workspace id value.",
                          "nullable": true,
                          "type": "integer"
                        },
                        "target_workspace_key": {
                          "description": "The target workspace key value.",
                          "type": "string"
                        }
                      },
                      "required": [
                        "created_at",
                        "id",
                        "link_type_id",
                        "source_id",
                        "source_type",
                        "target_id",
                        "target_type"
                      ],
                      "type": "object"
                    },
                    "type": "array"
                  }
                },
                "required": [
                  "incoming",
                  "outgoing"
                ],
                "type": "object"
              },
              "manual_actions": {
                "description": "The manual actions value.",
                "items": {
                  "additionalProperties": false,
                  "nullable": true,
                  "properties": {
                    "actor_name": {
                      "description": "The actor name value.",
                      "type": "string"
                    },
                    "actor_user_id": {
                      "description": "The actor user id value.",
                      "nullable": true,
                      "type": "integer"
                    },
                    "allowed_role_ids": {
                      "description": "The allowed role ids value.",
                      "items": {
                        "type": "integer"
                      },
                      "type": "array"
                    },
                    "created_at": {
                      "description": "The created at value.",
                      "format": "date-time",
                      "type": "string"
                    },
                    "created_by": {
                      "description": "The created by value.",
                      "nullable": true,
                      "type": "integer"
                    },
                    "creator_name": {
                      "description": "The creator name value.",
                      "type": "string"
                    },
                    "description": {
                      "description": "The description value.",
                      "type": "string"
                    },
                    "edges": {
                      "description": "The edges value.",
                      "items": {
                        "additionalProperties": false,
                        "properties": {
                          "action_id": {
                            "description": "The action id value.",
                            "type": "integer"
                          },
                          "created_at": {
                            "description": "The created at value.",
                            "format": "date-time",
                            "type": "string"
                          },
                          "edge_type": {
                            "description": "The edge type value.",
                            "type": "string"
                          },
                          "id": {
                            "description": "The id value.",
                            "type": "integer"
                          },
                          "source_handle": {
                            "description": "The source handle value.",
                            "type": "string"
                          },
                          "source_node_id": {
                            "description": "The source node id value.",
                            "type": "integer"
                          },
                          "target_handle": {
                            "description": "The target handle value.",
                            "type": "string"
                          },
                          "target_node_id": {
                            "description": "The target node id value.",
                            "type": "integer"
                          }
                        },
                        "required": [
                          "action_id",
                          "created_at",
                          "edge_type",
                          "id",
                          "source_node_id",
                          "target_node_id"
                        ],
                        "type": "object"
                      },
                      "type": "array"
                    },
                    "id": {
                      "description": "The id value.",
                      "type": "integer"
                    },
                    "is_enabled": {
                      "description": "The is enabled value.",
                      "type": "boolean"
                    },
                    "name": {
                      "description": "The name value.",
                      "type": "string"
                    },
                    "nodes": {
                      "description": "The nodes value.",
                      "items": {
                        "additionalProperties": false,
                        "properties": {
                          "action_id": {
                            "description": "The action id value.",
                            "type": "integer"
                          },
                          "created_at": {
                            "description": "The created at value.",
                            "format": "date-time",
                            "type": "string"
                          },
                          "id": {
                            "description": "The id value.",
                            "type": "integer"
                          },
                          "node_config": {
                            "description": "The node config value.",
                            "type": "string"
                          },
                          "node_type": {
                            "description": "The node type value.",
                            "type": "string"
                          },
                          "position_x": {
                            "description": "The position x value.",
                            "type": "number"
                          },
                          "position_y": {
                            "description": "The position y value.",
                            "type": "number"
                          },
                          "updated_at": {
                            "description": "The updated at value.",
                            "format": "date-time",
                            "type": "string"
                          }
                        },
                        "required": [
                          "action_id",
                          "created_at",
                          "id",
                          "node_config",
                          "node_type",
                          "position_x",
                          "position_y",
                          "updated_at"
                        ],
                        "type": "object"
                      },
                      "type": "array"
                    },
                    "trigger_config": {
                      "description": "The trigger config value.",
                      "type": "string"
                    },
                    "trigger_type": {
                      "description": "The trigger type value.",
                      "type": "string"
                    },
                    "updated_at": {
                      "description": "The updated at value.",
                      "format": "date-time",
                      "type": "string"
                    },
                    "workspace_id": {
                      "description": "The workspace id value.",
                      "type": "integer"
                    }
                  },
                  "required": [
                    "allowed_role_ids",
                    "created_at",
                    "id",
                    "is_enabled",
                    "name",
                    "trigger_type",
                    "updated_at",
                    "workspace_id"
                  ],
                  "type": "object"
                },
                "type": "array"
              },
              "personal_task_count": {
                "description": "The personal task count value.",
                "type": "integer"
              },
              "priorities": {
                "description": "The priorities value.",
                "items": {
                  "additionalProperties": false,
                  "properties": {
                    "builtin_key": {
                      "description": "The builtin key value.",
                      "type": "string"
                    },
                    "color": {
                      "description": "The color value.",
                      "type": "string"
                    },
                    "icon": {
                      "description": "The icon value.",
                      "type": "string"
                    },
                    "id": {
                      "description": "The id value.",
                      "type": "integer"
                    },
                    "name": {
                      "description": "The name value.",
                      "type": "string"
                    },
                    "sort_order": {
                      "description": "The sort order value.",
                      "type": "integer"
                    }
                  },
                  "required": [
                    "color",
                    "icon",
                    "id",
                    "name",
                    "sort_order"
                  ],
                  "type": "object"
                },
                "type": "array"
              },
              "request_type_fields": {
                "description": "The request type fields value.",
                "items": {
                  "additionalProperties": false,
                  "properties": {
                    "created_at": {
                      "description": "The created at value.",
                      "format": "date-time",
                      "type": "string"
                    },
                    "description": {
                      "description": "The description value.",
                      "nullable": true,
                      "type": "string"
                    },
                    "display_name": {
                      "description": "The display name value.",
                      "nullable": true,
                      "type": "string"
                    },
                    "display_order": {
                      "description": "The display order value.",
                      "type": "integer"
                    },
                    "field_identifier": {
                      "description": "The field identifier value.",
                      "type": "string"
                    },
                    "field_label": {
                      "description": "The field label value.",
                      "type": "string"
                    },
                    "field_name": {
                      "description": "The field name value.",
                      "type": "string"
                    },
                    "field_type": {
                      "description": "The field type value.",
                      "type": "string"
                    },
                    "id": {
                      "description": "The id value.",
                      "type": "integer"
                    },
                    "is_required": {
                      "description": "The is required value.",
                      "type": "boolean"
                    },
                    "request_type_id": {
                      "description": "The request type id value.",
                      "type": "integer"
                    },
                    "step_number": {
                      "description": "The step number value.",
                      "type": "integer"
                    },
                    "updated_at": {
                      "description": "The updated at value.",
                      "format": "date-time",
                      "type": "string"
                    },
                    "virtual_field_options": {
                      "description": "The virtual field options value.",
                      "nullable": true,
                      "type": "string"
                    },
                    "virtual_field_type": {
                      "description": "The virtual field type value.",
                      "nullable": true,
                      "type": "string"
                    }
                  },
                  "required": [
                    "created_at",
                    "display_order",
                    "field_identifier",
                    "field_type",
                    "id",
                    "is_required",
                    "request_type_id",
                    "step_number",
                    "updated_at"
                  ],
                  "type": "object"
                },
                "type": "array"
              },
              "scm_available": {
                "description": "The scm available value.",
                "type": "boolean"
              },
              "screen_context": {
                "additionalProperties": false,
                "description": "The screen context value.",
                "properties": {
                  "edit": {
                    "additionalProperties": false,
                    "description": "The edit value.",
                    "nullable": true,
                    "properties": {
                      "builtin_key": {
                        "description": "The builtin key value.",
                        "type": "string"
                      },
                      "created_at": {
                        "description": "The created at value.",
                        "format": "date-time",
                        "type": "string"
                      },
                      "description": {
                        "description": "The description value.",
                        "type": "string"
                      },
                      "display_description": {
                        "description": "The display description value.",
                        "type": "string"
                      },
                      "display_name": {
                        "description": "The display name value.",
                        "type": "string"
                      },
                      "fields": {
                        "description": "The fields value.",
                        "items": {
                          "additionalProperties": false,
                          "properties": {
                            "display_order": {
                              "description": "The display order value.",
                              "type": "integer"
                            },
                            "field_config": {
                              "additionalProperties": {
                                "description": "Arbitrary JSON extension value."
                              },
                              "description": "The field config value.",
                              "type": "object"
                            },
                            "field_identifier": {
                              "description": "The field identifier value.",
                              "type": "string"
                            },
                            "field_label": {
                              "description": "The field label value.",
                              "type": "string"
                            },
                            "field_name": {
                              "description": "The field name value.",
                              "type": "string"
                            },
                            "field_type": {
                              "description": "The field type value.",
                              "type": "string"
                            },
                            "field_width": {
                              "description": "The field width value.",
                              "type": "string"
                            },
                            "id": {
                              "description": "The id value.",
                              "type": "integer"
                            },
                            "is_required": {
                              "description": "The is required value.",
                              "type": "boolean"
                            },
                            "screen_id": {
                              "description": "The screen id value.",
                              "type": "integer"
                            }
                          },
                          "required": [
                            "display_order",
                            "field_identifier",
                            "field_type",
                            "field_width",
                            "id",
                            "is_required",
                            "screen_id"
                          ],
                          "type": "object"
                        },
                        "type": "array"
                      },
                      "id": {
                        "description": "The id value.",
                        "type": "integer"
                      },
                      "name": {
                        "description": "The name value.",
                        "type": "string"
                      },
                      "system_fields": {
                        "description": "The system fields value.",
                        "items": {
                          "type": "string"
                        },
                        "type": "array"
                      },
                      "updated_at": {
                        "description": "The updated at value.",
                        "format": "date-time",
                        "type": "string"
                      }
                    },
                    "required": [
                      "created_at",
                      "description",
                      "display_name",
                      "id",
                      "name",
                      "updated_at"
                    ],
                    "type": "object"
                  },
                  "view": {
                    "additionalProperties": false,
                    "description": "The view value.",
                    "nullable": true,
                    "properties": {
                      "builtin_key": {
                        "description": "The builtin key value.",
                        "type": "string"
                      },
                      "created_at": {
                        "description": "The created at value.",
                        "format": "date-time",
                        "type": "string"
                      },
                      "description": {
                        "description": "The description value.",
                        "type": "string"
                      },
                      "display_description": {
                        "description": "The display description value.",
                        "type": "string"
                      },
                      "display_name": {
                        "description": "The display name value.",
                        "type": "string"
                      },
                      "fields": {
                        "description": "The fields value.",
                        "items": {
                          "additionalProperties": false,
                          "properties": {
                            "display_order": {
                              "description": "The display order value.",
                              "type": "integer"
                            },
                            "field_config": {
                              "additionalProperties": {
                                "description": "Arbitrary JSON extension value."
                              },
                              "description": "The field config value.",
                              "type": "object"
                            },
                            "field_identifier": {
                              "description": "The field identifier value.",
                              "type": "string"
                            },
                            "field_label": {
                              "description": "The field label value.",
                              "type": "string"
                            },
                            "field_name": {
                              "description": "The field name value.",
                              "type": "string"
                            },
                            "field_type": {
                              "description": "The field type value.",
                              "type": "string"
                            },
                            "field_width": {
                              "description": "The field width value.",
                              "type": "string"
                            },
                            "id": {
                              "description": "The id value.",
                              "type": "integer"
                            },
                            "is_required": {
                              "description": "The is required value.",
                              "type": "boolean"
                            },
                            "screen_id": {
                              "description": "The screen id value.",
                              "type": "integer"
                            }
                          },
                          "required": [
                            "display_order",
                            "field_identifier",
                            "field_type",
                            "field_width",
                            "id",
                            "is_required",
                            "screen_id"
                          ],
                          "type": "object"
                        },
                        "type": "array"
                      },
                      "id": {
                        "description": "The id value.",
                        "type": "integer"
                      },
                      "name": {
                        "description": "The name value.",
                        "type": "string"
                      },
                      "system_fields": {
                        "description": "The system fields value.",
                        "items": {
                          "type": "string"
                        },
                        "type": "array"
                      },
                      "updated_at": {
                        "description": "The updated at value.",
                        "format": "date-time",
                        "type": "string"
                      }
                    },
                    "required": [
                      "created_at",
                      "description",
                      "display_name",
                      "id",
                      "name",
                      "updated_at"
                    ],
                    "type": "object"
                  }
                },
                "type": "object"
              },
              "section_errors": {
                "description": "The section errors value.",
                "items": {
                  "additionalProperties": false,
                  "properties": {
                    "code": {
                      "description": "The code value.",
                      "type": "string"
                    },
                    "section": {
                      "description": "The section value.",
                      "type": "string"
                    }
                  },
                  "required": [
                    "code",
                    "section"
                  ],
                  "type": "object"
                },
                "type": "array"
              },
              "transitions": {
                "additionalProperties": false,
                "description": "The transitions value.",
                "properties": {
                  "available_transitions": {
                    "description": "The available transitions value.",
                    "items": {
                      "additionalProperties": false,
                      "properties": {
                        "builtin_key": {
                          "description": "The builtin key value.",
                          "type": "string"
                        },
                        "category_color": {
                          "description": "The category color value.",
                          "type": "string"
                        },
                        "id": {
                          "description": "The id value.",
                          "type": "integer"
                        },
                        "name": {
                          "description": "The name value.",
                          "type": "string"
                        },
                        "value": {
                          "description": "The value value.",
                          "type": "string"
                        }
                      },
                      "required": [
                        "builtin_key",
                        "id",
                        "name",
                        "value"
                      ],
                      "type": "object"
                    },
                    "type": "array"
                  },
                  "current_status": {
                    "description": "The current status value.",
                    "type": "string"
                  },
                  "pending_approval": {
                    "additionalProperties": false,
                    "description": "The pending approval value.",
                    "nullable": true,
                    "properties": {
                      "id": {
                        "description": "The id value.",
                        "type": "integer"
                      },
                      "status": {
                        "description": "The status value.",
                        "type": "string"
                      },
                      "you_can_decide": {
                        "description": "The you can decide value.",
                        "type": "boolean"
                      }
                    },
                    "required": [
                      "id",
                      "status",
                      "you_can_decide"
                    ],
                    "type": "object"
                  }
                },
                "required": [
                  "available_transitions",
                  "current_status"
                ],
                "type": "object"
              },
              "watching": {
                "description": "The watching value.",
                "type": "boolean"
              }
            },
            "required": [
              "ancestors",
              "available_sub_issue_types",
              "children",
              "has_agent_runs",
              "link_types",
              "links",
              "manual_actions",
              "personal_task_count",
              "priorities",
              "request_type_fields",
              "scm_available",
              "screen_context",
              "section_errors",
              "transitions",
              "watching"
            ],
            "type": "object"
          }
        },
        "required": [
          "data"
        ],
        "type": "object"
      },
      "GetItemsItemIdDiagramsResult": {
        "additionalProperties": false,
        "properties": {
          "data": {
            "items": {
              "additionalProperties": false,
              "properties": {
                "created_at": {
                  "description": "The created at value.",
                  "format": "date-time",
                  "type": "string"
                },
                "created_by": {
                  "description": "The created by value.",
                  "nullable": true,
                  "type": "integer"
                },
                "creator_email": {
                  "description": "The creator email value.",
                  "type": "string"
                },
                "creator_name": {
                  "description": "The creator name value.",
                  "type": "string"
                },
                "diagram_data": {
                  "description": "The diagram data value.",
                  "type": "string"
                },
                "id": {
                  "description": "The id value.",
                  "type": "integer"
                },
                "item_id": {
                  "description": "The item id value.",
                  "type": "integer"
                },
                "name": {
                  "description": "The name value.",
                  "type": "string"
                },
                "updated_at": {
                  "description": "The updated at value.",
                  "format": "date-time",
                  "type": "string"
                },
                "updated_by": {
                  "description": "The updated by value.",
                  "nullable": true,
                  "type": "integer"
                },
                "updated_by_email": {
                  "description": "The updated by email value.",
                  "type": "string"
                },
                "updated_by_name": {
                  "description": "The updated by name value.",
                  "type": "string"
                }
              },
              "required": [
                "created_at",
                "creator_email",
                "creator_name",
                "diagram_data",
                "id",
                "item_id",
                "name",
                "updated_at",
                "updated_by_email",
                "updated_by_name"
              ],
              "type": "object"
            },
            "type": "array"
          }
        },
        "required": [
          "data"
        ],
        "type": "object"
      },
      "GetItemsItemIdFieldsFieldIdLinksResult": {
        "additionalProperties": false,
        "properties": {
          "data": {
            "items": {
              "additionalProperties": false,
              "properties": {
                "created_at": {
                  "description": "The created at value.",
                  "format": "date-time",
                  "type": "string"
                },
                "created_by": {
                  "description": "The created by value.",
                  "nullable": true,
                  "type": "integer"
                },
                "created_by_name": {
                  "description": "The created by name value.",
                  "type": "string"
                },
                "custom_field_id": {
                  "description": "The custom field id value.",
                  "nullable": true,
                  "type": "integer"
                },
                "custom_field_name": {
                  "description": "The custom field name value.",
                  "type": "string"
                },
                "id": {
                  "description": "The id value.",
                  "type": "integer"
                },
                "link_type_color": {
                  "description": "The link type color value.",
                  "type": "string"
                },
                "link_type_forward_label": {
                  "description": "The link type forward label value.",
                  "type": "string"
                },
                "link_type_id": {
                  "description": "The link type id value.",
                  "type": "integer"
                },
                "link_type_name": {
                  "description": "The link type name value.",
                  "type": "string"
                },
                "link_type_reverse_label": {
                  "description": "The link type reverse label value.",
                  "type": "string"
                },
                "source_id": {
                  "description": "The source id value.",
                  "type": "integer"
                },
                "source_item_number": {
                  "description": "The source item number value.",
                  "nullable": true,
                  "type": "integer"
                },
                "source_item_type_color": {
                  "description": "The source item type color value.",
                  "type": "string"
                },
                "source_item_type_icon": {
                  "description": "The source item type icon value.",
                  "type": "string"
                },
                "source_item_type_id": {
                  "description": "The source item type id value.",
                  "nullable": true,
                  "type": "integer"
                },
                "source_item_type_name": {
                  "description": "The source item type name value.",
                  "type": "string"
                },
                "source_status_color": {
                  "description": "The source status color value.",
                  "type": "string"
                },
                "source_status_id": {
                  "description": "The source status id value.",
                  "nullable": true,
                  "type": "integer"
                },
                "source_status_name": {
                  "description": "The source status name value.",
                  "type": "string"
                },
                "source_title": {
                  "description": "The source title value.",
                  "type": "string"
                },
                "source_type": {
                  "description": "The source type value.",
                  "type": "string"
                },
                "source_workspace_id": {
                  "description": "The source workspace id value.",
                  "nullable": true,
                  "type": "integer"
                },
                "source_workspace_key": {
                  "description": "The source workspace key value.",
                  "type": "string"
                },
                "target_id": {
                  "description": "The target id value.",
                  "type": "integer"
                },
                "target_item_number": {
                  "description": "The target item number value.",
                  "nullable": true,
                  "type": "integer"
                },
                "target_item_type_color": {
                  "description": "The target item type color value.",
                  "type": "string"
                },
                "target_item_type_icon": {
                  "description": "The target item type icon value.",
                  "type": "string"
                },
                "target_item_type_id": {
                  "description": "The target item type id value.",
                  "nullable": true,
                  "type": "integer"
                },
                "target_item_type_name": {
                  "description": "The target item type name value.",
                  "type": "string"
                },
                "target_status_color": {
                  "description": "The target status color value.",
                  "type": "string"
                },
                "target_status_id": {
                  "description": "The target status id value.",
                  "nullable": true,
                  "type": "integer"
                },
                "target_status_name": {
                  "description": "The target status name value.",
                  "type": "string"
                },
                "target_title": {
                  "description": "The target title value.",
                  "type": "string"
                },
                "target_type": {
                  "description": "The target type value.",
                  "type": "string"
                },
                "target_workspace_id": {
                  "description": "The target workspace id value.",
                  "nullable": true,
                  "type": "integer"
                },
                "target_workspace_key": {
                  "description": "The target workspace key value.",
                  "type": "string"
                }
              },
              "required": [
                "created_at",
                "id",
                "link_type_id",
                "source_id",
                "source_type",
                "target_id",
                "target_type"
              ],
              "type": "object"
            },
            "type": "array"
          }
        },
        "required": [
          "data"
        ],
        "type": "object"
      },
      "GetItemsItemIdHistoryResult": {
        "additionalProperties": false,
        "properties": {
          "data": {
            "items": {
              "additionalProperties": false,
              "properties": {
                "agent_owner_name": {
                  "description": "The agent owner name value.",
                  "type": "string"
                },
                "changed_at": {
                  "description": "The changed at value.",
                  "format": "date-time",
                  "type": "string"
                },
                "field_name": {
                  "description": "The field name value.",
                  "type": "string"
                },
                "id": {
                  "description": "The id value.",
                  "type": "integer"
                },
                "is_agent": {
                  "description": "The is agent value.",
                  "type": "boolean"
                },
                "item_id": {
                  "description": "The item id value.",
                  "type": "integer"
                },
                "new_value": {
                  "description": "The new value value.",
                  "nullable": true,
                  "type": "string"
                },
                "old_value": {
                  "description": "The old value value.",
                  "nullable": true,
                  "type": "string"
                },
                "resolved_new_value": {
                  "description": "The resolved new value value.",
                  "nullable": true,
                  "type": "string"
                },
                "resolved_old_value": {
                  "description": "The resolved old value value.",
                  "nullable": true,
                  "type": "string"
                },
                "user_email": {
                  "description": "The user email value.",
                  "type": "string"
                },
                "user_id": {
                  "description": "The user id value.",
                  "type": "integer"
                },
                "user_name": {
                  "description": "The user name value.",
                  "type": "string"
                }
              },
              "required": [
                "changed_at",
                "field_name",
                "id",
                "is_agent",
                "item_id",
                "user_id"
              ],
              "type": "object"
            },
            "type": "array"
          }
        },
        "required": [
          "data"
        ],
        "type": "object"
      },
      "GetItemsItemIdLabelsResult": {
        "additionalProperties": false,
        "properties": {
          "data": {
            "items": {
              "additionalProperties": false,
              "properties": {
                "color": {
                  "description": "The color value.",
                  "type": "string"
                },
                "created_at": {
                  "description": "The created at value.",
                  "type": "string"
                },
                "id": {
                  "description": "The id value.",
                  "type": "integer"
                },
                "name": {
                  "description": "The name value.",
                  "type": "string"
                },
                "updated_at": {
                  "description": "The updated at value.",
                  "type": "string"
                }
              },
              "required": [
                "color",
                "created_at",
                "id",
                "name",
                "updated_at"
              ],
              "type": "object"
            },
            "type": "array"
          }
        },
        "required": [
          "data"
        ],
        "type": "object"
      },
      "GetItemsItemIdLinkedAssetsResult": {
        "additionalProperties": false,
        "properties": {
          "data": {
            "items": {
              "additionalProperties": false,
              "properties": {
                "category_name": {
                  "description": "The category name value.",
                  "type": "string"
                },
                "description": {
                  "description": "The description value.",
                  "type": "string"
                },
                "direction": {
                  "description": "The direction value.",
                  "type": "string"
                },
                "id": {
                  "description": "The id value.",
                  "type": "integer"
                },
                "link_id": {
                  "description": "The link id value.",
                  "type": "integer"
                },
                "link_label": {
                  "description": "The link label value.",
                  "type": "string"
                },
                "link_type_name": {
                  "description": "The link type name value.",
                  "type": "string"
                },
                "set_id": {
                  "description": "The set id value.",
                  "type": "integer"
                },
                "set_name": {
                  "description": "The set name value.",
                  "type": "string"
                },
                "title": {
                  "description": "The title value.",
                  "type": "string"
                },
                "type_name": {
                  "description": "The type name value.",
                  "type": "string"
                }
              },
              "required": [
                "category_name",
                "description",
                "direction",
                "id",
                "link_id",
                "link_label",
                "link_type_name",
                "set_id",
                "set_name",
                "title",
                "type_name"
              ],
              "type": "object"
            },
            "type": "array"
          }
        },
        "required": [
          "data"
        ],
        "type": "object"
      },
      "GetItemsItemIdLinksResult": {
        "additionalProperties": false,
        "properties": {
          "data": {
            "additionalProperties": false,
            "properties": {
              "incoming": {
                "description": "The incoming value.",
                "items": {
                  "additionalProperties": false,
                  "properties": {
                    "created_at": {
                      "description": "The created at value.",
                      "format": "date-time",
                      "type": "string"
                    },
                    "created_by": {
                      "description": "The created by value.",
                      "nullable": true,
                      "type": "integer"
                    },
                    "created_by_name": {
                      "description": "The created by name value.",
                      "type": "string"
                    },
                    "custom_field_id": {
                      "description": "The custom field id value.",
                      "nullable": true,
                      "type": "integer"
                    },
                    "custom_field_name": {
                      "description": "The custom field name value.",
                      "type": "string"
                    },
                    "id": {
                      "description": "The id value.",
                      "type": "integer"
                    },
                    "link_type_color": {
                      "description": "The link type color value.",
                      "type": "string"
                    },
                    "link_type_forward_label": {
                      "description": "The link type forward label value.",
                      "type": "string"
                    },
                    "link_type_id": {
                      "description": "The link type id value.",
                      "type": "integer"
                    },
                    "link_type_name": {
                      "description": "The link type name value.",
                      "type": "string"
                    },
                    "link_type_reverse_label": {
                      "description": "The link type reverse label value.",
                      "type": "string"
                    },
                    "source_id": {
                      "description": "The source id value.",
                      "type": "integer"
                    },
                    "source_item_number": {
                      "description": "The source item number value.",
                      "nullable": true,
                      "type": "integer"
                    },
                    "source_item_type_color": {
                      "description": "The source item type color value.",
                      "type": "string"
                    },
                    "source_item_type_icon": {
                      "description": "The source item type icon value.",
                      "type": "string"
                    },
                    "source_item_type_id": {
                      "description": "The source item type id value.",
                      "nullable": true,
                      "type": "integer"
                    },
                    "source_item_type_name": {
                      "description": "The source item type name value.",
                      "type": "string"
                    },
                    "source_status_color": {
                      "description": "The source status color value.",
                      "type": "string"
                    },
                    "source_status_id": {
                      "description": "The source status id value.",
                      "nullable": true,
                      "type": "integer"
                    },
                    "source_status_name": {
                      "description": "The source status name value.",
                      "type": "string"
                    },
                    "source_title": {
                      "description": "The source title value.",
                      "type": "string"
                    },
                    "source_type": {
                      "description": "The source type value.",
                      "type": "string"
                    },
                    "source_workspace_id": {
                      "description": "The source workspace id value.",
                      "nullable": true,
                      "type": "integer"
                    },
                    "source_workspace_key": {
                      "description": "The source workspace key value.",
                      "type": "string"
                    },
                    "target_id": {
                      "description": "The target id value.",
                      "type": "integer"
                    },
                    "target_item_number": {
                      "description": "The target item number value.",
                      "nullable": true,
                      "type": "integer"
                    },
                    "target_item_type_color": {
                      "description": "The target item type color value.",
                      "type": "string"
                    },
                    "target_item_type_icon": {
                      "description": "The target item type icon value.",
                      "type": "string"
                    },
                    "target_item_type_id": {
                      "description": "The target item type id value.",
                      "nullable": true,
                      "type": "integer"
                    },
                    "target_item_type_name": {
                      "description": "The target item type name value.",
                      "type": "string"
                    },
                    "target_status_color": {
                      "description": "The target status color value.",
                      "type": "string"
                    },
                    "target_status_id": {
                      "description": "The target status id value.",
                      "nullable": true,
                      "type": "integer"
                    },
                    "target_status_name": {
                      "description": "The target status name value.",
                      "type": "string"
                    },
                    "target_title": {
                      "description": "The target title value.",
                      "type": "string"
                    },
                    "target_type": {
                      "description": "The target type value.",
                      "type": "string"
                    },
                    "target_workspace_id": {
                      "description": "The target workspace id value.",
                      "nullable": true,
                      "type": "integer"
                    },
                    "target_workspace_key": {
                      "description": "The target workspace key value.",
                      "type": "string"
                    }
                  },
                  "required": [
                    "created_at",
                    "id",
                    "link_type_id",
                    "source_id",
                    "source_type",
                    "target_id",
                    "target_type"
                  ],
                  "type": "object"
                },
                "type": "array"
              },
              "outgoing": {
                "description": "The outgoing value.",
                "items": {
                  "additionalProperties": false,
                  "properties": {
                    "created_at": {
                      "description": "The created at value.",
                      "format": "date-time",
                      "type": "string"
                    },
                    "created_by": {
                      "description": "The created by value.",
                      "nullable": true,
                      "type": "integer"
                    },
                    "created_by_name": {
                      "description": "The created by name value.",
                      "type": "string"
                    },
                    "custom_field_id": {
                      "description": "The custom field id value.",
                      "nullable": true,
                      "type": "integer"
                    },
                    "custom_field_name": {
                      "description": "The custom field name value.",
                      "type": "string"
                    },
                    "id": {
                      "description": "The id value.",
                      "type": "integer"
                    },
                    "link_type_color": {
                      "description": "The link type color value.",
                      "type": "string"
                    },
                    "link_type_forward_label": {
                      "description": "The link type forward label value.",
                      "type": "string"
                    },
                    "link_type_id": {
                      "description": "The link type id value.",
                      "type": "integer"
                    },
                    "link_type_name": {
                      "description": "The link type name value.",
                      "type": "string"
                    },
                    "link_type_reverse_label": {
                      "description": "The link type reverse label value.",
                      "type": "string"
                    },
                    "source_id": {
                      "description": "The source id value.",
                      "type": "integer"
                    },
                    "source_item_number": {
                      "description": "The source item number value.",
                      "nullable": true,
                      "type": "integer"
                    },
                    "source_item_type_color": {
                      "description": "The source item type color value.",
                      "type": "string"
                    },
                    "source_item_type_icon": {
                      "description": "The source item type icon value.",
                      "type": "string"
                    },
                    "source_item_type_id": {
                      "description": "The source item type id value.",
                      "nullable": true,
                      "type": "integer"
                    },
                    "source_item_type_name": {
                      "description": "The source item type name value.",
                      "type": "string"
                    },
                    "source_status_color": {
                      "description": "The source status color value.",
                      "type": "string"
                    },
                    "source_status_id": {
                      "description": "The source status id value.",
                      "nullable": true,
                      "type": "integer"
                    },
                    "source_status_name": {
                      "description": "The source status name value.",
                      "type": "string"
                    },
                    "source_title": {
                      "description": "The source title value.",
                      "type": "string"
                    },
                    "source_type": {
                      "description": "The source type value.",
                      "type": "string"
                    },
                    "source_workspace_id": {
                      "description": "The source workspace id value.",
                      "nullable": true,
                      "type": "integer"
                    },
                    "source_workspace_key": {
                      "description": "The source workspace key value.",
                      "type": "string"
                    },
                    "target_id": {
                      "description": "The target id value.",
                      "type": "integer"
                    },
                    "target_item_number": {
                      "description": "The target item number value.",
                      "nullable": true,
                      "type": "integer"
                    },
                    "target_item_type_color": {
                      "description": "The target item type color value.",
                      "type": "string"
                    },
                    "target_item_type_icon": {
                      "description": "The target item type icon value.",
                      "type": "string"
                    },
                    "target_item_type_id": {
                      "description": "The target item type id value.",
                      "nullable": true,
                      "type": "integer"
                    },
                    "target_item_type_name": {
                      "description": "The target item type name value.",
                      "type": "string"
                    },
                    "target_status_color": {
                      "description": "The target status color value.",
                      "type": "string"
                    },
                    "target_status_id": {
                      "description": "The target status id value.",
                      "nullable": true,
                      "type": "integer"
                    },
                    "target_status_name": {
                      "description": "The target status name value.",
                      "type": "string"
                    },
                    "target_title": {
                      "description": "The target title value.",
                      "type": "string"
                    },
                    "target_type": {
                      "description": "The target type value.",
                      "type": "string"
                    },
                    "target_workspace_id": {
                      "description": "The target workspace id value.",
                      "nullable": true,
                      "type": "integer"
                    },
                    "target_workspace_key": {
                      "description": "The target workspace key value.",
                      "type": "string"
                    }
                  },
                  "required": [
                    "created_at",
                    "id",
                    "link_type_id",
                    "source_id",
                    "source_type",
                    "target_id",
                    "target_type"
                  ],
                  "type": "object"
                },
                "type": "array"
              }
            },
            "required": [
              "incoming",
              "outgoing"
            ],
            "type": "object"
          }
        },
        "required": [
          "data"
        ],
        "type": "object"
      },
      "GetItemsItemIdPersonalTasksResult": {
        "additionalProperties": false,
        "properties": {
          "data": {
            "items": {
              "additionalProperties": false,
              "properties": {
                "assignee_avatar": {
                  "description": "The assignee avatar value.",
                  "type": "string"
                },
                "assignee_email": {
                  "description": "The assignee email value.",
                  "type": "string"
                },
                "assignee_id": {
                  "description": "The assignee id value.",
                  "nullable": true,
                  "type": "integer"
                },
                "assignee_name": {
                  "description": "The assignee name value.",
                  "type": "string"
                },
                "calendar_data": {
                  "description": "The calendar data value.",
                  "items": {
                    "additionalProperties": false,
                    "properties": {
                      "created_at": {
                        "description": "The created at value.",
                        "type": "string"
                      },
                      "duration_minutes": {
                        "description": "The duration minutes value.",
                        "type": "integer"
                      },
                      "notes": {
                        "description": "The notes value.",
                        "type": "string"
                      },
                      "scheduled_date": {
                        "description": "The scheduled date value.",
                        "type": "string"
                      },
                      "scheduled_time": {
                        "description": "The scheduled time value.",
                        "type": "string"
                      },
                      "user_id": {
                        "description": "The user id value.",
                        "type": "integer"
                      },
                      "workspace_id": {
                        "description": "The workspace id value.",
                        "type": "integer"
                      }
                    },
                    "required": [
                      "created_at",
                      "scheduled_date",
                      "user_id",
                      "workspace_id"
                    ],
                    "type": "object"
                  },
                  "type": "array"
                },
                "channel_id": {
                  "description": "The channel id value.",
                  "nullable": true,
                  "type": "integer"
                },
                "channel_name": {
                  "description": "The channel name value.",
                  "type": "string"
                },
                "children": {
                  "description": "The children value.",
                  "items": {
                    "description": "Nested resource reference.",
                    "type": "object"
                  },
                  "type": "array"
                },
                "completed_at": {
                  "description": "The completed at value.",
                  "format": "date-time",
                  "nullable": true,
                  "type": "string"
                },
                "created_at": {
                  "description": "The created at value.",
                  "format": "date-time",
                  "type": "string"
                },
                "creator_email": {
                  "description": "The creator email value.",
                  "type": "string"
                },
                "creator_id": {
                  "description": "The creator id value.",
                  "nullable": true,
                  "type": "integer"
                },
                "creator_name": {
                  "description": "The creator name value.",
                  "type": "string"
                },
                "creator_portal_customer_email": {
                  "description": "The creator portal customer email value.",
                  "type": "string"
                },
                "creator_portal_customer_id": {
                  "description": "The creator portal customer id value.",
                  "nullable": true,
                  "type": "integer"
                },
                "creator_portal_customer_name": {
                  "description": "The creator portal customer name value.",
                  "type": "string"
                },
                "custom_field_values": {
                  "additionalProperties": {
                    "description": "Arbitrary JSON extension value."
                  },
                  "description": "The custom field values value.",
                  "type": "object"
                },
                "description": {
                  "description": "The description value.",
                  "type": "string"
                },
                "description_html": {
                  "description": "The description html value.",
                  "type": "string"
                },
                "due_date": {
                  "description": "The due date value.",
                  "format": "date-time",
                  "nullable": true,
                  "type": "string"
                },
                "effective_project_id": {
                  "description": "The effective project id value.",
                  "nullable": true,
                  "type": "integer"
                },
                "effective_project_name": {
                  "description": "The effective project name value.",
                  "type": "string"
                },
                "end_date": {
                  "description": "The end date value.",
                  "format": "date-time",
                  "nullable": true,
                  "type": "string"
                },
                "estimate_minutes": {
                  "description": "The estimate minutes value.",
                  "nullable": true,
                  "type": "integer"
                },
                "frac_index": {
                  "description": "The frac index value.",
                  "nullable": true,
                  "type": "string"
                },
                "id": {
                  "description": "The id value.",
                  "type": "integer"
                },
                "inherit_project": {
                  "description": "The inherit project value.",
                  "type": "boolean"
                },
                "is_task": {
                  "description": "Whether the item is a personal task. True is valid only in the authenticated caller's personal workspace and only with the Open or Done system status.",
                  "type": "boolean"
                },
                "item_type_builtin_key": {
                  "description": "The item type builtin key value.",
                  "type": "string"
                },
                "item_type_id": {
                  "description": "The item type id value.",
                  "nullable": true,
                  "type": "integer"
                },
                "item_type_name": {
                  "description": "The item type name value.",
                  "type": "string"
                },
                "iteration_end_date": {
                  "description": "The iteration end date value.",
                  "type": "string"
                },
                "iteration_id": {
                  "description": "The iteration id value.",
                  "nullable": true,
                  "type": "integer"
                },
                "iteration_name": {
                  "description": "The iteration name value.",
                  "type": "string"
                },
                "key": {
                  "description": "The key value.",
                  "type": "string"
                },
                "labels": {
                  "description": "The labels value.",
                  "items": {
                    "additionalProperties": false,
                    "properties": {
                      "color": {
                        "description": "The color value.",
                        "type": "string"
                      },
                      "created_at": {
                        "description": "The created at value.",
                        "format": "date-time",
                        "type": "string"
                      },
                      "id": {
                        "description": "The id value.",
                        "type": "integer"
                      },
                      "name": {
                        "description": "The name value.",
                        "type": "string"
                      },
                      "updated_at": {
                        "description": "The updated at value.",
                        "format": "date-time",
                        "type": "string"
                      }
                    },
                    "required": [
                      "color",
                      "created_at",
                      "id",
                      "name",
                      "updated_at"
                    ],
                    "type": "object"
                  },
                  "type": "array"
                },
                "last_active_at": {
                  "description": "The last active at value.",
                  "format": "date-time",
                  "type": "string"
                },
                "milestones": {
                  "description": "The milestones value.",
                  "items": {
                    "additionalProperties": false,
                    "properties": {
                      "category_color": {
                        "description": "The category color value.",
                        "type": "string"
                      },
                      "category_id": {
                        "description": "The category id value.",
                        "nullable": true,
                        "type": "integer"
                      },
                      "category_name": {
                        "description": "The category name value.",
                        "type": "string"
                      },
                      "created_at": {
                        "description": "The created at value.",
                        "format": "date-time",
                        "type": "string"
                      },
                      "description": {
                        "description": "The description value.",
                        "type": "string"
                      },
                      "external_key": {
                        "description": "The external key value.",
                        "nullable": true,
                        "type": "string"
                      },
                      "id": {
                        "description": "The id value.",
                        "type": "integer"
                      },
                      "is_global": {
                        "description": "The is global value.",
                        "type": "boolean"
                      },
                      "latest_release": {
                        "additionalProperties": false,
                        "description": "The latest release value.",
                        "nullable": true,
                        "properties": {
                          "body": {
                            "description": "The body value.",
                            "type": "string"
                          },
                          "created_at": {
                            "description": "The created at value.",
                            "type": "string"
                          },
                          "created_by": {
                            "description": "The created by value.",
                            "nullable": true,
                            "type": "integer"
                          },
                          "id": {
                            "description": "The id value.",
                            "type": "integer"
                          },
                          "is_draft": {
                            "description": "The is draft value.",
                            "type": "boolean"
                          },
                          "is_prerelease": {
                            "description": "The is prerelease value.",
                            "type": "boolean"
                          },
                          "milestone_id": {
                            "description": "The milestone id value.",
                            "type": "integer"
                          },
                          "name": {
                            "description": "The name value.",
                            "type": "string"
                          },
                          "scm_connection_id": {
                            "description": "The scm connection id value.",
                            "nullable": true,
                            "type": "integer"
                          },
                          "scm_release_id": {
                            "description": "The scm release id value.",
                            "nullable": true,
                            "type": "string"
                          },
                          "scm_release_url": {
                            "description": "The scm release url value.",
                            "nullable": true,
                            "type": "string"
                          },
                          "scm_repository": {
                            "description": "The scm repository value.",
                            "nullable": true,
                            "type": "string"
                          },
                          "tag_name": {
                            "description": "The tag name value.",
                            "type": "string"
                          },
                          "target_commitish": {
                            "description": "The target commitish value.",
                            "type": "string"
                          }
                        },
                        "required": [
                          "created_at",
                          "id",
                          "is_draft",
                          "is_prerelease",
                          "milestone_id",
                          "tag_name"
                        ],
                        "type": "object"
                      },
                      "name": {
                        "description": "The name value.",
                        "type": "string"
                      },
                      "position": {
                        "description": "The position value.",
                        "type": "integer"
                      },
                      "releases": {
                        "description": "The releases value.",
                        "items": {
                          "additionalProperties": false,
                          "properties": {
                            "body": {
                              "description": "The body value.",
                              "type": "string"
                            },
                            "created_at": {
                              "description": "The created at value.",
                              "type": "string"
                            },
                            "created_by": {
                              "description": "The created by value.",
                              "nullable": true,
                              "type": "integer"
                            },
                            "id": {
                              "description": "The id value.",
                              "type": "integer"
                            },
                            "is_draft": {
                              "description": "The is draft value.",
                              "type": "boolean"
                            },
                            "is_prerelease": {
                              "description": "The is prerelease value.",
                              "type": "boolean"
                            },
                            "milestone_id": {
                              "description": "The milestone id value.",
                              "type": "integer"
                            },
                            "name": {
                              "description": "The name value.",
                              "type": "string"
                            },
                            "scm_connection_id": {
                              "description": "The scm connection id value.",
                              "nullable": true,
                              "type": "integer"
                            },
                            "scm_release_id": {
                              "description": "The scm release id value.",
                              "nullable": true,
                              "type": "string"
                            },
                            "scm_release_url": {
                              "description": "The scm release url value.",
                              "nullable": true,
                              "type": "string"
                            },
                            "scm_repository": {
                              "description": "The scm repository value.",
                              "nullable": true,
                              "type": "string"
                            },
                            "tag_name": {
                              "description": "The tag name value.",
                              "type": "string"
                            },
                            "target_commitish": {
                              "description": "The target commitish value.",
                              "type": "string"
                            }
                          },
                          "required": [
                            "created_at",
                            "id",
                            "is_draft",
                            "is_prerelease",
                            "milestone_id",
                            "tag_name"
                          ],
                          "type": "object"
                        },
                        "type": "array"
                      },
                      "status": {
                        "description": "The status value.",
                        "type": "string"
                      },
                      "target_date": {
                        "description": "The target date value.",
                        "nullable": true,
                        "type": "string"
                      },
                      "updated_at": {
                        "description": "The updated at value.",
                        "format": "date-time",
                        "type": "string"
                      },
                      "workspace_id": {
                        "description": "The workspace id value.",
                        "nullable": true,
                        "type": "integer"
                      },
                      "workspace_name": {
                        "description": "The workspace name value.",
                        "type": "string"
                      }
                    },
                    "required": [
                      "created_at",
                      "description",
                      "id",
                      "is_global",
                      "name",
                      "position",
                      "status",
                      "updated_at"
                    ],
                    "type": "object"
                  },
                  "type": "array"
                },
                "parent_id": {
                  "description": "The parent id value.",
                  "nullable": true,
                  "type": "integer"
                },
                "parent_key": {
                  "description": "The parent key value.",
                  "type": "string"
                },
                "parent_title": {
                  "description": "The parent title value.",
                  "type": "string"
                },
                "parent_workspace_item_number": {
                  "description": "The parent workspace item number value.",
                  "nullable": true,
                  "type": "integer"
                },
                "personal_labels": {
                  "description": "The personal labels value.",
                  "items": {
                    "additionalProperties": false,
                    "properties": {
                      "color": {
                        "description": "The color value.",
                        "type": "string"
                      },
                      "created_at": {
                        "description": "The created at value.",
                        "format": "date-time",
                        "type": "string"
                      },
                      "id": {
                        "description": "The id value.",
                        "type": "integer"
                      },
                      "name": {
                        "description": "The name value.",
                        "type": "string"
                      },
                      "updated_at": {
                        "description": "The updated at value.",
                        "format": "date-time",
                        "type": "string"
                      },
                      "user_id": {
                        "description": "The user id value.",
                        "nullable": true,
                        "type": "integer"
                      }
                    },
                    "required": [
                      "color",
                      "created_at",
                      "id",
                      "name",
                      "updated_at"
                    ],
                    "type": "object"
                  },
                  "type": "array"
                },
                "priority_builtin_key": {
                  "description": "The priority builtin key value.",
                  "type": "string"
                },
                "priority_color": {
                  "description": "The priority color value.",
                  "type": "string"
                },
                "priority_icon": {
                  "description": "The priority icon value.",
                  "type": "string"
                },
                "priority_id": {
                  "description": "The priority id value.",
                  "nullable": true,
                  "type": "integer"
                },
                "priority_name": {
                  "description": "The priority name value.",
                  "type": "string"
                },
                "project_id": {
                  "description": "The project id value.",
                  "nullable": true,
                  "type": "integer"
                },
                "project_inheritance_mode": {
                  "description": "The project inheritance mode value.",
                  "type": "string"
                },
                "project_name": {
                  "description": "The project name value.",
                  "type": "string"
                },
                "related_work_item_id": {
                  "description": "The related work item id value.",
                  "nullable": true,
                  "type": "integer"
                },
                "related_work_item_number": {
                  "description": "The related work item number value.",
                  "type": "integer"
                },
                "related_work_item_title": {
                  "description": "The related work item title value.",
                  "type": "string"
                },
                "related_work_item_workspace_id": {
                  "description": "The related work item workspace id value.",
                  "type": "integer"
                },
                "related_work_item_workspace_key": {
                  "description": "The related work item workspace key value.",
                  "type": "string"
                },
                "reporter_avatar": {
                  "description": "The reporter avatar value.",
                  "type": "string"
                },
                "reporter_email": {
                  "description": "The reporter email value.",
                  "type": "string"
                },
                "reporter_id": {
                  "description": "The reporter id value.",
                  "nullable": true,
                  "type": "integer"
                },
                "reporter_name": {
                  "description": "The reporter name value.",
                  "type": "string"
                },
                "request_type_id": {
                  "description": "The request type id value.",
                  "nullable": true,
                  "type": "integer"
                },
                "request_type_name": {
                  "description": "The request type name value.",
                  "type": "string"
                },
                "start_date": {
                  "description": "The start date value.",
                  "format": "date-time",
                  "nullable": true,
                  "type": "string"
                },
                "status_builtin_key": {
                  "description": "The status builtin key value.",
                  "type": "string"
                },
                "status_color": {
                  "description": "The status color value.",
                  "type": "string"
                },
                "status_id": {
                  "description": "The status id value.",
                  "nullable": true,
                  "type": "integer"
                },
                "status_name": {
                  "description": "The status name value.",
                  "type": "string"
                },
                "status_since": {
                  "description": "The status since value.",
                  "format": "date-time",
                  "nullable": true,
                  "type": "string"
                },
                "story_points": {
                  "description": "The story points value.",
                  "nullable": true,
                  "type": "number"
                },
                "time_project_id": {
                  "description": "The time project id value.",
                  "nullable": true,
                  "type": "integer"
                },
                "time_project_name": {
                  "description": "The time project name value.",
                  "type": "string"
                },
                "title": {
                  "description": "The title value.",
                  "type": "string"
                },
                "updated_at": {
                  "description": "The updated at value.",
                  "format": "date-time",
                  "type": "string"
                },
                "virtual_field_data": {
                  "additionalProperties": {
                    "description": "Arbitrary JSON extension value."
                  },
                  "description": "The virtual field data value.",
                  "type": "object"
                },
                "workspace_id": {
                  "description": "The workspace id value.",
                  "type": "integer"
                },
                "workspace_item_number": {
                  "description": "The workspace item number value.",
                  "type": "integer"
                },
                "workspace_key": {
                  "description": "The workspace key value.",
                  "type": "string"
                },
                "workspace_name": {
                  "description": "The workspace name value.",
                  "type": "string"
                }
              },
              "required": [
                "created_at",
                "description",
                "id",
                "inherit_project",
                "is_task",
                "last_active_at",
                "title",
                "updated_at",
                "workspace_id",
                "workspace_item_number"
              ],
              "type": "object"
            },
            "type": "array"
          }
        },
        "required": [
          "data"
        ],
        "type": "object"
      },
      "GetItemsItemIdRecurrenceInstancesResult": {
        "additionalProperties": false,
        "properties": {
          "data": {
            "items": {
              "additionalProperties": false,
              "properties": {
                "created_at": {
                  "description": "The created at value.",
                  "format": "date-time",
                  "type": "string"
                },
                "id": {
                  "description": "The id value.",
                  "type": "integer"
                },
                "instance_item_id": {
                  "description": "The instance item id value.",
                  "type": "integer"
                },
                "item_status": {
                  "description": "The item status value.",
                  "type": "string"
                },
                "item_title": {
                  "description": "The item title value.",
                  "type": "string"
                },
                "recurrence_rule_id": {
                  "description": "The recurrence rule id value.",
                  "type": "integer"
                },
                "scheduled_date": {
                  "description": "The scheduled date value.",
                  "format": "date-time",
                  "type": "string"
                },
                "sequence_number": {
                  "description": "The sequence number value.",
                  "type": "integer"
                }
              },
              "required": [
                "created_at",
                "id",
                "instance_item_id",
                "item_status",
                "item_title",
                "recurrence_rule_id",
                "scheduled_date",
                "sequence_number"
              ],
              "type": "object"
            },
            "type": "array"
          },
          "pagination": {
            "$ref": "#/components/schemas/Pagination"
          }
        },
        "required": [
          "data",
          "pagination"
        ],
        "type": "object"
      },
      "GetItemsItemIdRecurrenceResult": {
        "additionalProperties": false,
        "properties": {
          "data": {
            "additionalProperties": false,
            "nullable": true,
            "properties": {
              "copy_assignee": {
                "description": "The copy assignee value.",
                "type": "boolean"
              },
              "copy_custom_fields": {
                "description": "The copy custom fields value.",
                "type": "boolean"
              },
              "copy_description": {
                "description": "The copy description value.",
                "type": "boolean"
              },
              "copy_priority": {
                "description": "The copy priority value.",
                "type": "boolean"
              },
              "created_at": {
                "description": "The created at value.",
                "format": "date-time",
                "type": "string"
              },
              "created_by": {
                "description": "The created by value.",
                "nullable": true,
                "type": "integer"
              },
              "creator_name": {
                "description": "The creator name value.",
                "type": "string"
              },
              "dtend": {
                "description": "The dtend value.",
                "format": "date-time",
                "nullable": true,
                "type": "string"
              },
              "dtstart": {
                "description": "The dtstart value.",
                "format": "date-time",
                "type": "string"
              },
              "id": {
                "description": "The id value.",
                "type": "integer"
              },
              "instance_count": {
                "description": "The instance count value.",
                "type": "integer"
              },
              "is_active": {
                "description": "The is active value.",
                "type": "boolean"
              },
              "last_generated_until": {
                "description": "The last generated until value.",
                "format": "date-time",
                "nullable": true,
                "type": "string"
              },
              "lead_time_days": {
                "description": "The lead time days value.",
                "type": "integer"
              },
              "next_generation_check": {
                "description": "The next generation check value.",
                "format": "date-time",
                "nullable": true,
                "type": "string"
              },
              "next_occurrence": {
                "description": "The next occurrence value.",
                "format": "date-time",
                "nullable": true,
                "type": "string"
              },
              "rrule": {
                "description": "The rrule value.",
                "type": "string"
              },
              "status_on_create": {
                "description": "The status on create value.",
                "nullable": true,
                "type": "integer"
              },
              "template_item_id": {
                "description": "The template item id value.",
                "type": "integer"
              },
              "template_title": {
                "description": "The template title value.",
                "type": "string"
              },
              "timezone": {
                "description": "The timezone value.",
                "type": "string"
              },
              "updated_at": {
                "description": "The updated at value.",
                "format": "date-time",
                "type": "string"
              },
              "workspace_id": {
                "description": "The workspace id value.",
                "type": "integer"
              },
              "workspace_key": {
                "description": "The workspace key value.",
                "type": "string"
              },
              "workspace_name": {
                "description": "The workspace name value.",
                "type": "string"
              }
            },
            "required": [
              "copy_assignee",
              "copy_custom_fields",
              "copy_description",
              "copy_priority",
              "created_at",
              "creator_name",
              "dtstart",
              "id",
              "instance_count",
              "is_active",
              "lead_time_days",
              "rrule",
              "template_item_id",
              "template_title",
              "timezone",
              "updated_at",
              "workspace_id",
              "workspace_key",
              "workspace_name"
            ],
            "type": "object"
          }
        },
        "required": [
          "data"
        ],
        "type": "object"
      },
      "GetItemsItemIdResult": {
        "additionalProperties": false,
        "properties": {
          "data": {
            "additionalProperties": false,
            "nullable": true,
            "properties": {
              "assignee_avatar": {
                "description": "The assignee avatar value.",
                "type": "string"
              },
              "assignee_email": {
                "description": "The assignee email value.",
                "type": "string"
              },
              "assignee_id": {
                "description": "The assignee id value.",
                "nullable": true,
                "type": "integer"
              },
              "assignee_name": {
                "description": "The assignee name value.",
                "type": "string"
              },
              "calendar_data": {
                "description": "The calendar data value.",
                "items": {
                  "additionalProperties": false,
                  "properties": {
                    "created_at": {
                      "description": "The created at value.",
                      "type": "string"
                    },
                    "duration_minutes": {
                      "description": "The duration minutes value.",
                      "type": "integer"
                    },
                    "notes": {
                      "description": "The notes value.",
                      "type": "string"
                    },
                    "scheduled_date": {
                      "description": "The scheduled date value.",
                      "type": "string"
                    },
                    "scheduled_time": {
                      "description": "The scheduled time value.",
                      "type": "string"
                    },
                    "user_id": {
                      "description": "The user id value.",
                      "type": "integer"
                    },
                    "workspace_id": {
                      "description": "The workspace id value.",
                      "type": "integer"
                    }
                  },
                  "required": [
                    "created_at",
                    "scheduled_date",
                    "user_id",
                    "workspace_id"
                  ],
                  "type": "object"
                },
                "type": "array"
              },
              "channel_id": {
                "description": "The channel id value.",
                "nullable": true,
                "type": "integer"
              },
              "channel_name": {
                "description": "The channel name value.",
                "type": "string"
              },
              "children": {
                "description": "The children value.",
                "items": {
                  "description": "Nested resource reference.",
                  "type": "object"
                },
                "type": "array"
              },
              "completed_at": {
                "description": "The completed at value.",
                "format": "date-time",
                "nullable": true,
                "type": "string"
              },
              "created_at": {
                "description": "The created at value.",
                "format": "date-time",
                "type": "string"
              },
              "creator_email": {
                "description": "The creator email value.",
                "type": "string"
              },
              "creator_id": {
                "description": "The creator id value.",
                "nullable": true,
                "type": "integer"
              },
              "creator_name": {
                "description": "The creator name value.",
                "type": "string"
              },
              "creator_portal_customer_email": {
                "description": "The creator portal customer email value.",
                "type": "string"
              },
              "creator_portal_customer_id": {
                "description": "The creator portal customer id value.",
                "nullable": true,
                "type": "integer"
              },
              "creator_portal_customer_name": {
                "description": "The creator portal customer name value.",
                "type": "string"
              },
              "custom_field_values": {
                "additionalProperties": {
                  "description": "Arbitrary JSON extension value."
                },
                "description": "The custom field values value.",
                "type": "object"
              },
              "description": {
                "description": "The description value.",
                "type": "string"
              },
              "description_html": {
                "description": "The description html value.",
                "type": "string"
              },
              "due_date": {
                "description": "The due date value.",
                "format": "date-time",
                "nullable": true,
                "type": "string"
              },
              "effective_project_id": {
                "description": "The effective project id value.",
                "nullable": true,
                "type": "integer"
              },
              "effective_project_name": {
                "description": "The effective project name value.",
                "type": "string"
              },
              "end_date": {
                "description": "The end date value.",
                "format": "date-time",
                "nullable": true,
                "type": "string"
              },
              "estimate_minutes": {
                "description": "The estimate minutes value.",
                "nullable": true,
                "type": "integer"
              },
              "frac_index": {
                "description": "The frac index value.",
                "nullable": true,
                "type": "string"
              },
              "id": {
                "description": "The id value.",
                "type": "integer"
              },
              "inherit_project": {
                "description": "The inherit project value.",
                "type": "boolean"
              },
              "is_task": {
                "description": "Whether the item is a personal task. True is valid only in the authenticated caller's personal workspace and only with the Open or Done system status.",
                "type": "boolean"
              },
              "item_type_builtin_key": {
                "description": "The item type builtin key value.",
                "type": "string"
              },
              "item_type_id": {
                "description": "The item type id value.",
                "nullable": true,
                "type": "integer"
              },
              "item_type_name": {
                "description": "The item type name value.",
                "type": "string"
              },
              "iteration_end_date": {
                "description": "The iteration end date value.",
                "type": "string"
              },
              "iteration_id": {
                "description": "The iteration id value.",
                "nullable": true,
                "type": "integer"
              },
              "iteration_name": {
                "description": "The iteration name value.",
                "type": "string"
              },
              "key": {
                "description": "The key value.",
                "type": "string"
              },
              "labels": {
                "description": "The labels value.",
                "items": {
                  "additionalProperties": false,
                  "properties": {
                    "color": {
                      "description": "The color value.",
                      "type": "string"
                    },
                    "created_at": {
                      "description": "The created at value.",
                      "format": "date-time",
                      "type": "string"
                    },
                    "id": {
                      "description": "The id value.",
                      "type": "integer"
                    },
                    "name": {
                      "description": "The name value.",
                      "type": "string"
                    },
                    "updated_at": {
                      "description": "The updated at value.",
                      "format": "date-time",
                      "type": "string"
                    }
                  },
                  "required": [
                    "color",
                    "created_at",
                    "id",
                    "name",
                    "updated_at"
                  ],
                  "type": "object"
                },
                "type": "array"
              },
              "last_active_at": {
                "description": "The last active at value.",
                "format": "date-time",
                "type": "string"
              },
              "milestones": {
                "description": "The milestones value.",
                "items": {
                  "additionalProperties": false,
                  "properties": {
                    "category_color": {
                      "description": "The category color value.",
                      "type": "string"
                    },
                    "category_id": {
                      "description": "The category id value.",
                      "nullable": true,
                      "type": "integer"
                    },
                    "category_name": {
                      "description": "The category name value.",
                      "type": "string"
                    },
                    "created_at": {
                      "description": "The created at value.",
                      "format": "date-time",
                      "type": "string"
                    },
                    "description": {
                      "description": "The description value.",
                      "type": "string"
                    },
                    "external_key": {
                      "description": "The external key value.",
                      "nullable": true,
                      "type": "string"
                    },
                    "id": {
                      "description": "The id value.",
                      "type": "integer"
                    },
                    "is_global": {
                      "description": "The is global value.",
                      "type": "boolean"
                    },
                    "latest_release": {
                      "additionalProperties": false,
                      "description": "The latest release value.",
                      "nullable": true,
                      "properties": {
                        "body": {
                          "description": "The body value.",
                          "type": "string"
                        },
                        "created_at": {
                          "description": "The created at value.",
                          "type": "string"
                        },
                        "created_by": {
                          "description": "The created by value.",
                          "nullable": true,
                          "type": "integer"
                        },
                        "id": {
                          "description": "The id value.",
                          "type": "integer"
                        },
                        "is_draft": {
                          "description": "The is draft value.",
                          "type": "boolean"
                        },
                        "is_prerelease": {
                          "description": "The is prerelease value.",
                          "type": "boolean"
                        },
                        "milestone_id": {
                          "description": "The milestone id value.",
                          "type": "integer"
                        },
                        "name": {
                          "description": "The name value.",
                          "type": "string"
                        },
                        "scm_connection_id": {
                          "description": "The scm connection id value.",
                          "nullable": true,
                          "type": "integer"
                        },
                        "scm_release_id": {
                          "description": "The scm release id value.",
                          "nullable": true,
                          "type": "string"
                        },
                        "scm_release_url": {
                          "description": "The scm release url value.",
                          "nullable": true,
                          "type": "string"
                        },
                        "scm_repository": {
                          "description": "The scm repository value.",
                          "nullable": true,
                          "type": "string"
                        },
                        "tag_name": {
                          "description": "The tag name value.",
                          "type": "string"
                        },
                        "target_commitish": {
                          "description": "The target commitish value.",
                          "type": "string"
                        }
                      },
                      "required": [
                        "created_at",
                        "id",
                        "is_draft",
                        "is_prerelease",
                        "milestone_id",
                        "tag_name"
                      ],
                      "type": "object"
                    },
                    "name": {
                      "description": "The name value.",
                      "type": "string"
                    },
                    "position": {
                      "description": "The position value.",
                      "type": "integer"
                    },
                    "releases": {
                      "description": "The releases value.",
                      "items": {
                        "additionalProperties": false,
                        "properties": {
                          "body": {
                            "description": "The body value.",
                            "type": "string"
                          },
                          "created_at": {
                            "description": "The created at value.",
                            "type": "string"
                          },
                          "created_by": {
                            "description": "The created by value.",
                            "nullable": true,
                            "type": "integer"
                          },
                          "id": {
                            "description": "The id value.",
                            "type": "integer"
                          },
                          "is_draft": {
                            "description": "The is draft value.",
                            "type": "boolean"
                          },
                          "is_prerelease": {
                            "description": "The is prerelease value.",
                            "type": "boolean"
                          },
                          "milestone_id": {
                            "description": "The milestone id value.",
                            "type": "integer"
                          },
                          "name": {
                            "description": "The name value.",
                            "type": "string"
                          },
                          "scm_connection_id": {
                            "description": "The scm connection id value.",
                            "nullable": true,
                            "type": "integer"
                          },
                          "scm_release_id": {
                            "description": "The scm release id value.",
                            "nullable": true,
                            "type": "string"
                          },
                          "scm_release_url": {
                            "description": "The scm release url value.",
                            "nullable": true,
                            "type": "string"
                          },
                          "scm_repository": {
                            "description": "The scm repository value.",
                            "nullable": true,
                            "type": "string"
                          },
                          "tag_name": {
                            "description": "The tag name value.",
                            "type": "string"
                          },
                          "target_commitish": {
                            "description": "The target commitish value.",
                            "type": "string"
                          }
                        },
                        "required": [
                          "created_at",
                          "id",
                          "is_draft",
                          "is_prerelease",
                          "milestone_id",
                          "tag_name"
                        ],
                        "type": "object"
                      },
                      "type": "array"
                    },
                    "status": {
                      "description": "The status value.",
                      "type": "string"
                    },
                    "target_date": {
                      "description": "The target date value.",
                      "nullable": true,
                      "type": "string"
                    },
                    "updated_at": {
                      "description": "The updated at value.",
                      "format": "date-time",
                      "type": "string"
                    },
                    "workspace_id": {
                      "description": "The workspace id value.",
                      "nullable": true,
                      "type": "integer"
                    },
                    "workspace_name": {
                      "description": "The workspace name value.",
                      "type": "string"
                    }
                  },
                  "required": [
                    "created_at",
                    "description",
                    "id",
                    "is_global",
                    "name",
                    "position",
                    "status",
                    "updated_at"
                  ],
                  "type": "object"
                },
                "type": "array"
              },
              "parent_id": {
                "description": "The parent id value.",
                "nullable": true,
                "type": "integer"
              },
              "parent_key": {
                "description": "The parent key value.",
                "type": "string"
              },
              "parent_title": {
                "description": "The parent title value.",
                "type": "string"
              },
              "parent_workspace_item_number": {
                "description": "The parent workspace item number value.",
                "nullable": true,
                "type": "integer"
              },
              "personal_labels": {
                "description": "The personal labels value.",
                "items": {
                  "additionalProperties": false,
                  "properties": {
                    "color": {
                      "description": "The color value.",
                      "type": "string"
                    },
                    "created_at": {
                      "description": "The created at value.",
                      "format": "date-time",
                      "type": "string"
                    },
                    "id": {
                      "description": "The id value.",
                      "type": "integer"
                    },
                    "name": {
                      "description": "The name value.",
                      "type": "string"
                    },
                    "updated_at": {
                      "description": "The updated at value.",
                      "format": "date-time",
                      "type": "string"
                    },
                    "user_id": {
                      "description": "The user id value.",
                      "nullable": true,
                      "type": "integer"
                    }
                  },
                  "required": [
                    "color",
                    "created_at",
                    "id",
                    "name",
                    "updated_at"
                  ],
                  "type": "object"
                },
                "type": "array"
              },
              "priority_builtin_key": {
                "description": "The priority builtin key value.",
                "type": "string"
              },
              "priority_color": {
                "description": "The priority color value.",
                "type": "string"
              },
              "priority_icon": {
                "description": "The priority icon value.",
                "type": "string"
              },
              "priority_id": {
                "description": "The priority id value.",
                "nullable": true,
                "type": "integer"
              },
              "priority_name": {
                "description": "The priority name value.",
                "type": "string"
              },
              "project_id": {
                "description": "The project id value.",
                "nullable": true,
                "type": "integer"
              },
              "project_inheritance_mode": {
                "description": "The project inheritance mode value.",
                "type": "string"
              },
              "project_name": {
                "description": "The project name value.",
                "type": "string"
              },
              "related_work_item_id": {
                "description": "The related work item id value.",
                "nullable": true,
                "type": "integer"
              },
              "related_work_item_number": {
                "description": "The related work item number value.",
                "type": "integer"
              },
              "related_work_item_title": {
                "description": "The related work item title value.",
                "type": "string"
              },
              "related_work_item_workspace_id": {
                "description": "The related work item workspace id value.",
                "type": "integer"
              },
              "related_work_item_workspace_key": {
                "description": "The related work item workspace key value.",
                "type": "string"
              },
              "reporter_avatar": {
                "description": "The reporter avatar value.",
                "type": "string"
              },
              "reporter_email": {
                "description": "The reporter email value.",
                "type": "string"
              },
              "reporter_id": {
                "description": "The reporter id value.",
                "nullable": true,
                "type": "integer"
              },
              "reporter_name": {
                "description": "The reporter name value.",
                "type": "string"
              },
              "request_type_id": {
                "description": "The request type id value.",
                "nullable": true,
                "type": "integer"
              },
              "request_type_name": {
                "description": "The request type name value.",
                "type": "string"
              },
              "start_date": {
                "description": "The start date value.",
                "format": "date-time",
                "nullable": true,
                "type": "string"
              },
              "status_builtin_key": {
                "description": "The status builtin key value.",
                "type": "string"
              },
              "status_color": {
                "description": "The status color value.",
                "type": "string"
              },
              "status_id": {
                "description": "The status id value.",
                "nullable": true,
                "type": "integer"
              },
              "status_name": {
                "description": "The status name value.",
                "type": "string"
              },
              "status_since": {
                "description": "The status since value.",
                "format": "date-time",
                "nullable": true,
                "type": "string"
              },
              "story_points": {
                "description": "The story points value.",
                "nullable": true,
                "type": "number"
              },
              "time_project_id": {
                "description": "The time project id value.",
                "nullable": true,
                "type": "integer"
              },
              "time_project_name": {
                "description": "The time project name value.",
                "type": "string"
              },
              "title": {
                "description": "The title value.",
                "type": "string"
              },
              "updated_at": {
                "description": "The updated at value.",
                "format": "date-time",
                "type": "string"
              },
              "virtual_field_data": {
                "additionalProperties": {
                  "description": "Arbitrary JSON extension value."
                },
                "description": "The virtual field data value.",
                "type": "object"
              },
              "workspace_id": {
                "description": "The workspace id value.",
                "type": "integer"
              },
              "workspace_item_number": {
                "description": "The workspace item number value.",
                "type": "integer"
              },
              "workspace_key": {
                "description": "The workspace key value.",
                "type": "string"
              },
              "workspace_name": {
                "description": "The workspace name value.",
                "type": "string"
              }
            },
            "required": [
              "created_at",
              "description",
              "id",
              "inherit_project",
              "is_task",
              "last_active_at",
              "title",
              "updated_at",
              "workspace_id",
              "workspace_item_number"
            ],
            "type": "object"
          }
        },
        "required": [
          "data"
        ],
        "type": "object"
      },
      "GetItemsItemIdStatusDurationsResult": {
        "additionalProperties": false,
        "properties": {
          "data": {
            "additionalProperties": false,
            "nullable": true,
            "properties": {
              "calculated_at": {
                "description": "The calculated at value.",
                "format": "date-time",
                "type": "string"
              },
              "statuses": {
                "description": "The statuses value.",
                "items": {
                  "additionalProperties": false,
                  "properties": {
                    "duration_seconds": {
                      "description": "The duration seconds value.",
                      "type": "integer"
                    },
                    "first_entered_at": {
                      "description": "The first entered at value.",
                      "format": "date-time",
                      "type": "string"
                    },
                    "is_current": {
                      "description": "The is current value.",
                      "type": "boolean"
                    },
                    "last_entered_at": {
                      "description": "The last entered at value.",
                      "format": "date-time",
                      "type": "string"
                    },
                    "status_id": {
                      "description": "The status id value.",
                      "type": "integer"
                    },
                    "status_name": {
                      "description": "The status name value.",
                      "type": "string"
                    }
                  },
                  "required": [
                    "duration_seconds",
                    "first_entered_at",
                    "is_current",
                    "last_entered_at",
                    "status_id",
                    "status_name"
                  ],
                  "type": "object"
                },
                "type": "array"
              }
            },
            "required": [
              "calculated_at",
              "statuses"
            ],
            "type": "object"
          }
        },
        "required": [
          "data"
        ],
        "type": "object"
      },
      "GetItemsItemIdTimeRollupResult": {
        "additionalProperties": false,
        "properties": {
          "data": {
            "additionalProperties": false,
            "nullable": true,
            "properties": {
              "item_count": {
                "description": "The item count value.",
                "type": "integer"
              },
              "total_estimate_minutes": {
                "description": "The total estimate minutes value.",
                "type": "integer"
              },
              "total_logged_minutes": {
                "description": "The total logged minutes value.",
                "type": "integer"
              },
              "truncated": {
                "description": "The truncated value.",
                "type": "boolean"
              }
            },
            "required": [
              "item_count",
              "total_estimate_minutes",
              "total_logged_minutes",
              "truncated"
            ],
            "type": "object"
          }
        },
        "required": [
          "data"
        ],
        "type": "object"
      },
      "GetItemsItemIdTypeChangeAnalysisResult": {
        "additionalProperties": false,
        "properties": {
          "data": {
            "additionalProperties": false,
            "nullable": true,
            "properties": {
              "available_statuses": {
                "description": "The available statuses value.",
                "items": {
                  "additionalProperties": false,
                  "properties": {
                    "id": {
                      "description": "The id value.",
                      "type": "integer"
                    },
                    "name": {
                      "description": "The name value.",
                      "type": "string"
                    }
                  },
                  "required": [
                    "id",
                    "name"
                  ],
                  "type": "object"
                },
                "type": "array"
              },
              "can_change_without_status": {
                "description": "The can change without status value.",
                "type": "boolean"
              },
              "current_item_type_id": {
                "description": "The current item type id value.",
                "nullable": true,
                "type": "integer"
              },
              "current_item_type_name": {
                "description": "The current item type name value.",
                "type": "string"
              },
              "current_status_id": {
                "description": "The current status id value.",
                "nullable": true,
                "type": "integer"
              },
              "current_status_name": {
                "description": "The current status name value.",
                "type": "string"
              },
              "current_workflow_id": {
                "description": "The current workflow id value.",
                "nullable": true,
                "type": "integer"
              },
              "item_id": {
                "description": "The item id value.",
                "type": "integer"
              },
              "requires_migration": {
                "description": "The requires migration value.",
                "type": "boolean"
              },
              "suggested_status_id": {
                "description": "The suggested status id value.",
                "nullable": true,
                "type": "integer"
              },
              "suggested_status_name": {
                "description": "The suggested status name value.",
                "type": "string"
              },
              "target_item_type_id": {
                "description": "The target item type id value.",
                "type": "integer"
              },
              "target_item_type_name": {
                "description": "The target item type name value.",
                "type": "string"
              },
              "target_workflow_id": {
                "description": "The target workflow id value.",
                "nullable": true,
                "type": "integer"
              }
            },
            "required": [
              "available_statuses",
              "can_change_without_status",
              "current_item_type_name",
              "current_status_name",
              "item_id",
              "requires_migration",
              "target_item_type_id",
              "target_item_type_name"
            ],
            "type": "object"
          }
        },
        "required": [
          "data"
        ],
        "type": "object"
      },
      "GetItemsItemIdWatchResult": {
        "additionalProperties": false,
        "properties": {
          "data": {
            "additionalProperties": false,
            "properties": {
              "item_id": {
                "description": "The item id value.",
                "type": "integer"
              },
              "watching": {
                "description": "The watching value.",
                "type": "boolean"
              }
            },
            "required": [
              "item_id",
              "watching"
            ],
            "type": "object"
          }
        },
        "required": [
          "data"
        ],
        "type": "object"
      },
      "GetItemsItemIdWorklogsResult": {
        "additionalProperties": false,
        "properties": {
          "data": {
            "items": {
              "additionalProperties": false,
              "properties": {
                "created_at": {
                  "description": "The created at value.",
                  "type": "integer"
                },
                "customer_id": {
                  "description": "The customer id value.",
                  "type": "integer"
                },
                "customer_name": {
                  "description": "The customer name value.",
                  "type": "string"
                },
                "date": {
                  "description": "The date value.",
                  "type": "integer"
                },
                "description": {
                  "description": "The description value.",
                  "type": "string"
                },
                "duration_minutes": {
                  "description": "The duration minutes value.",
                  "type": "integer"
                },
                "end_time": {
                  "description": "The end time value.",
                  "type": "integer"
                },
                "id": {
                  "description": "The id value.",
                  "type": "integer"
                },
                "item_id": {
                  "description": "The item id value.",
                  "nullable": true,
                  "type": "integer"
                },
                "item_title": {
                  "description": "The item title value.",
                  "type": "string"
                },
                "project_id": {
                  "description": "The project id value.",
                  "type": "integer"
                },
                "project_max_hours": {
                  "description": "The project max hours value.",
                  "nullable": true,
                  "type": "number"
                },
                "project_name": {
                  "description": "The project name value.",
                  "type": "string"
                },
                "project_total_hours": {
                  "description": "The project total hours value.",
                  "nullable": true,
                  "type": "number"
                },
                "start_time": {
                  "description": "The start time value.",
                  "type": "integer"
                },
                "updated_at": {
                  "description": "The updated at value.",
                  "type": "integer"
                },
                "user_id": {
                  "description": "The user id value.",
                  "nullable": true,
                  "type": "integer"
                },
                "user_name": {
                  "description": "The user name value.",
                  "type": "string"
                },
                "warnings": {
                  "description": "The warnings value.",
                  "items": {
                    "type": "string"
                  },
                  "type": "array"
                },
                "workspace_id": {
                  "description": "The workspace id value.",
                  "nullable": true,
                  "type": "integer"
                },
                "workspace_item_number": {
                  "description": "The workspace item number value.",
                  "type": "integer"
                },
                "workspace_key": {
                  "description": "The workspace key value.",
                  "type": "string"
                }
              },
              "required": [
                "created_at",
                "customer_id",
                "customer_name",
                "date",
                "description",
                "duration_minutes",
                "end_time",
                "id",
                "item_title",
                "project_id",
                "project_name",
                "start_time",
                "updated_at",
                "user_name",
                "workspace_item_number",
                "workspace_key"
              ],
              "type": "object"
            },
            "type": "array"
          },
          "pagination": {
            "$ref": "#/components/schemas/Pagination"
          }
        },
        "required": [
          "data",
          "pagination"
        ],
        "type": "object"
      },
      "GetItemsResult": {
        "additionalProperties": false,
        "properties": {
          "data": {
            "items": {
              "additionalProperties": false,
              "properties": {
                "assignee_avatar": {
                  "description": "The assignee avatar value.",
                  "type": "string"
                },
                "assignee_email": {
                  "description": "The assignee email value.",
                  "type": "string"
                },
                "assignee_id": {
                  "description": "The assignee id value.",
                  "nullable": true,
                  "type": "integer"
                },
                "assignee_name": {
                  "description": "The assignee name value.",
                  "type": "string"
                },
                "calendar_data": {
                  "description": "The calendar data value.",
                  "items": {
                    "additionalProperties": false,
                    "properties": {
                      "created_at": {
                        "description": "The created at value.",
                        "type": "string"
                      },
                      "duration_minutes": {
                        "description": "The duration minutes value.",
                        "type": "integer"
                      },
                      "notes": {
                        "description": "The notes value.",
                        "type": "string"
                      },
                      "scheduled_date": {
                        "description": "The scheduled date value.",
                        "type": "string"
                      },
                      "scheduled_time": {
                        "description": "The scheduled time value.",
                        "type": "string"
                      },
                      "user_id": {
                        "description": "The user id value.",
                        "type": "integer"
                      },
                      "workspace_id": {
                        "description": "The workspace id value.",
                        "type": "integer"
                      }
                    },
                    "required": [
                      "created_at",
                      "scheduled_date",
                      "user_id",
                      "workspace_id"
                    ],
                    "type": "object"
                  },
                  "type": "array"
                },
                "channel_id": {
                  "description": "The channel id value.",
                  "nullable": true,
                  "type": "integer"
                },
                "channel_name": {
                  "description": "The channel name value.",
                  "type": "string"
                },
                "children": {
                  "description": "The children value.",
                  "items": {
                    "description": "Nested resource reference.",
                    "type": "object"
                  },
                  "type": "array"
                },
                "completed_at": {
                  "description": "The completed at value.",
                  "format": "date-time",
                  "nullable": true,
                  "type": "string"
                },
                "created_at": {
                  "description": "The created at value.",
                  "format": "date-time",
                  "type": "string"
                },
                "creator_email": {
                  "description": "The creator email value.",
                  "type": "string"
                },
                "creator_id": {
                  "description": "The creator id value.",
                  "nullable": true,
                  "type": "integer"
                },
                "creator_name": {
                  "description": "The creator name value.",
                  "type": "string"
                },
                "creator_portal_customer_email": {
                  "description": "The creator portal customer email value.",
                  "type": "string"
                },
                "creator_portal_customer_id": {
                  "description": "The creator portal customer id value.",
                  "nullable": true,
                  "type": "integer"
                },
                "creator_portal_customer_name": {
                  "description": "The creator portal customer name value.",
                  "type": "string"
                },
                "custom_field_values": {
                  "additionalProperties": {
                    "description": "Arbitrary JSON extension value."
                  },
                  "description": "The custom field values value.",
                  "type": "object"
                },
                "description": {
                  "description": "The description value.",
                  "type": "string"
                },
                "description_html": {
                  "description": "The description html value.",
                  "type": "string"
                },
                "due_date": {
                  "description": "The due date value.",
                  "format": "date-time",
                  "nullable": true,
                  "type": "string"
                },
                "effective_project_id": {
                  "description": "The effective project id value.",
                  "nullable": true,
                  "type": "integer"
                },
                "effective_project_name": {
                  "description": "The effective project name value.",
                  "type": "string"
                },
                "end_date": {
                  "description": "The end date value.",
                  "format": "date-time",
                  "nullable": true,
                  "type": "string"
                },
                "estimate_minutes": {
                  "description": "The estimate minutes value.",
                  "nullable": true,
                  "type": "integer"
                },
                "frac_index": {
                  "description": "The frac index value.",
                  "nullable": true,
                  "type": "string"
                },
                "id": {
                  "description": "The id value.",
                  "type": "integer"
                },
                "inherit_project": {
                  "description": "The inherit project value.",
                  "type": "boolean"
                },
                "is_task": {
                  "description": "Whether the item is a personal task. True is valid only in the authenticated caller's personal workspace and only with the Open or Done system status.",
                  "type": "boolean"
                },
                "item_type_builtin_key": {
                  "description": "The item type builtin key value.",
                  "type": "string"
                },
                "item_type_id": {
                  "description": "The item type id value.",
                  "nullable": true,
                  "type": "integer"
                },
                "item_type_name": {
                  "description": "The item type name value.",
                  "type": "string"
                },
                "iteration_end_date": {
                  "description": "The iteration end date value.",
                  "type": "string"
                },
                "iteration_id": {
                  "description": "The iteration id value.",
                  "nullable": true,
                  "type": "integer"
                },
                "iteration_name": {
                  "description": "The iteration name value.",
                  "type": "string"
                },
                "key": {
                  "description": "The key value.",
                  "type": "string"
                },
                "labels": {
                  "description": "The labels value.",
                  "items": {
                    "additionalProperties": false,
                    "properties": {
                      "color": {
                        "description": "The color value.",
                        "type": "string"
                      },
                      "created_at": {
                        "description": "The created at value.",
                        "format": "date-time",
                        "type": "string"
                      },
                      "id": {
                        "description": "The id value.",
                        "type": "integer"
                      },
                      "name": {
                        "description": "The name value.",
                        "type": "string"
                      },
                      "updated_at": {
                        "description": "The updated at value.",
                        "format": "date-time",
                        "type": "string"
                      }
                    },
                    "required": [
                      "color",
                      "created_at",
                      "id",
                      "name",
                      "updated_at"
                    ],
                    "type": "object"
                  },
                  "type": "array"
                },
                "last_active_at": {
                  "description": "The last active at value.",
                  "format": "date-time",
                  "type": "string"
                },
                "milestones": {
                  "description": "The milestones value.",
                  "items": {
                    "additionalProperties": false,
                    "properties": {
                      "category_color": {
                        "description": "The category color value.",
                        "type": "string"
                      },
                      "category_id": {
                        "description": "The category id value.",
                        "nullable": true,
                        "type": "integer"
                      },
                      "category_name": {
                        "description": "The category name value.",
                        "type": "string"
                      },
                      "created_at": {
                        "description": "The created at value.",
                        "format": "date-time",
                        "type": "string"
                      },
                      "description": {
                        "description": "The description value.",
                        "type": "string"
                      },
                      "external_key": {
                        "description": "The external key value.",
                        "nullable": true,
                        "type": "string"
                      },
                      "id": {
                        "description": "The id value.",
                        "type": "integer"
                      },
                      "is_global": {
                        "description": "The is global value.",
                        "type": "boolean"
                      },
                      "latest_release": {
                        "additionalProperties": false,
                        "description": "The latest release value.",
                        "nullable": true,
                        "properties": {
                          "body": {
                            "description": "The body value.",
                            "type": "string"
                          },
                          "created_at": {
                            "description": "The created at value.",
                            "type": "string"
                          },
                          "created_by": {
                            "description": "The created by value.",
                            "nullable": true,
                            "type": "integer"
                          },
                          "id": {
                            "description": "The id value.",
                            "type": "integer"
                          },
                          "is_draft": {
                            "description": "The is draft value.",
                            "type": "boolean"
                          },
                          "is_prerelease": {
                            "description": "The is prerelease value.",
                            "type": "boolean"
                          },
                          "milestone_id": {
                            "description": "The milestone id value.",
                            "type": "integer"
                          },
                          "name": {
                            "description": "The name value.",
                            "type": "string"
                          },
                          "scm_connection_id": {
                            "description": "The scm connection id value.",
                            "nullable": true,
                            "type": "integer"
                          },
                          "scm_release_id": {
                            "description": "The scm release id value.",
                            "nullable": true,
                            "type": "string"
                          },
                          "scm_release_url": {
                            "description": "The scm release url value.",
                            "nullable": true,
                            "type": "string"
                          },
                          "scm_repository": {
                            "description": "The scm repository value.",
                            "nullable": true,
                            "type": "string"
                          },
                          "tag_name": {
                            "description": "The tag name value.",
                            "type": "string"
                          },
                          "target_commitish": {
                            "description": "The target commitish value.",
                            "type": "string"
                          }
                        },
                        "required": [
                          "created_at",
                          "id",
                          "is_draft",
                          "is_prerelease",
                          "milestone_id",
                          "tag_name"
                        ],
                        "type": "object"
                      },
                      "name": {
                        "description": "The name value.",
                        "type": "string"
                      },
                      "position": {
                        "description": "The position value.",
                        "type": "integer"
                      },
                      "releases": {
                        "description": "The releases value.",
                        "items": {
                          "additionalProperties": false,
                          "properties": {
                            "body": {
                              "description": "The body value.",
                              "type": "string"
                            },
                            "created_at": {
                              "description": "The created at value.",
                              "type": "string"
                            },
                            "created_by": {
                              "description": "The created by value.",
                              "nullable": true,
                              "type": "integer"
                            },
                            "id": {
                              "description": "The id value.",
                              "type": "integer"
                            },
                            "is_draft": {
                              "description": "The is draft value.",
                              "type": "boolean"
                            },
                            "is_prerelease": {
                              "description": "The is prerelease value.",
                              "type": "boolean"
                            },
                            "milestone_id": {
                              "description": "The milestone id value.",
                              "type": "integer"
                            },
                            "name": {
                              "description": "The name value.",
                              "type": "string"
                            },
                            "scm_connection_id": {
                              "description": "The scm connection id value.",
                              "nullable": true,
                              "type": "integer"
                            },
                            "scm_release_id": {
                              "description": "The scm release id value.",
                              "nullable": true,
                              "type": "string"
                            },
                            "scm_release_url": {
                              "description": "The scm release url value.",
                              "nullable": true,
                              "type": "string"
                            },
                            "scm_repository": {
                              "description": "The scm repository value.",
                              "nullable": true,
                              "type": "string"
                            },
                            "tag_name": {
                              "description": "The tag name value.",
                              "type": "string"
                            },
                            "target_commitish": {
                              "description": "The target commitish value.",
                              "type": "string"
                            }
                          },
                          "required": [
                            "created_at",
                            "id",
                            "is_draft",
                            "is_prerelease",
                            "milestone_id",
                            "tag_name"
                          ],
                          "type": "object"
                        },
                        "type": "array"
                      },
                      "status": {
                        "description": "The status value.",
                        "type": "string"
                      },
                      "target_date": {
                        "description": "The target date value.",
                        "nullable": true,
                        "type": "string"
                      },
                      "updated_at": {
                        "description": "The updated at value.",
                        "format": "date-time",
                        "type": "string"
                      },
                      "workspace_id": {
                        "description": "The workspace id value.",
                        "nullable": true,
                        "type": "integer"
                      },
                      "workspace_name": {
                        "description": "The workspace name value.",
                        "type": "string"
                      }
                    },
                    "required": [
                      "created_at",
                      "description",
                      "id",
                      "is_global",
                      "name",
                      "position",
                      "status",
                      "updated_at"
                    ],
                    "type": "object"
                  },
                  "type": "array"
                },
                "parent_id": {
                  "description": "The parent id value.",
                  "nullable": true,
                  "type": "integer"
                },
                "parent_key": {
                  "description": "The parent key value.",
                  "type": "string"
                },
                "parent_title": {
                  "description": "The parent title value.",
                  "type": "string"
                },
                "parent_workspace_item_number": {
                  "description": "The parent workspace item number value.",
                  "nullable": true,
                  "type": "integer"
                },
                "personal_labels": {
                  "description": "The personal labels value.",
                  "items": {
                    "additionalProperties": false,
                    "properties": {
                      "color": {
                        "description": "The color value.",
                        "type": "string"
                      },
                      "created_at": {
                        "description": "The created at value.",
                        "format": "date-time",
                        "type": "string"
                      },
                      "id": {
                        "description": "The id value.",
                        "type": "integer"
                      },
                      "name": {
                        "description": "The name value.",
                        "type": "string"
                      },
                      "updated_at": {
                        "description": "The updated at value.",
                        "format": "date-time",
                        "type": "string"
                      },
                      "user_id": {
                        "description": "The user id value.",
                        "nullable": true,
                        "type": "integer"
                      }
                    },
                    "required": [
                      "color",
                      "created_at",
                      "id",
                      "name",
                      "updated_at"
                    ],
                    "type": "object"
                  },
                  "type": "array"
                },
                "priority_builtin_key": {
                  "description": "The priority builtin key value.",
                  "type": "string"
                },
                "priority_color": {
                  "description": "The priority color value.",
                  "type": "string"
                },
                "priority_icon": {
                  "description": "The priority icon value.",
                  "type": "string"
                },
                "priority_id": {
                  "description": "The priority id value.",
                  "nullable": true,
                  "type": "integer"
                },
                "priority_name": {
                  "description": "The priority name value.",
                  "type": "string"
                },
                "project_id": {
                  "description": "The project id value.",
                  "nullable": true,
                  "type": "integer"
                },
                "project_inheritance_mode": {
                  "description": "The project inheritance mode value.",
                  "type": "string"
                },
                "project_name": {
                  "description": "The project name value.",
                  "type": "string"
                },
                "related_work_item_id": {
                  "description": "The related work item id value.",
                  "nullable": true,
                  "type": "integer"
                },
                "related_work_item_number": {
                  "description": "The related work item number value.",
                  "type": "integer"
                },
                "related_work_item_title": {
                  "description": "The related work item title value.",
                  "type": "string"
                },
                "related_work_item_workspace_id": {
                  "description": "The related work item workspace id value.",
                  "type": "integer"
                },
                "related_work_item_workspace_key": {
                  "description": "The related work item workspace key value.",
                  "type": "string"
                },
                "reporter_avatar": {
                  "description": "The reporter avatar value.",
                  "type": "string"
                },
                "reporter_email": {
                  "description": "The reporter email value.",
                  "type": "string"
                },
                "reporter_id": {
                  "description": "The reporter id value.",
                  "nullable": true,
                  "type": "integer"
                },
                "reporter_name": {
                  "description": "The reporter name value.",
                  "type": "string"
                },
                "request_type_id": {
                  "description": "The request type id value.",
                  "nullable": true,
                  "type": "integer"
                },
                "request_type_name": {
                  "description": "The request type name value.",
                  "type": "string"
                },
                "start_date": {
                  "description": "The start date value.",
                  "format": "date-time",
                  "nullable": true,
                  "type": "string"
                },
                "status_builtin_key": {
                  "description": "The status builtin key value.",
                  "type": "string"
                },
                "status_color": {
                  "description": "The status color value.",
                  "type": "string"
                },
                "status_id": {
                  "description": "The status id value.",
                  "nullable": true,
                  "type": "integer"
                },
                "status_name": {
                  "description": "The status name value.",
                  "type": "string"
                },
                "status_since": {
                  "description": "The status since value.",
                  "format": "date-time",
                  "nullable": true,
                  "type": "string"
                },
                "story_points": {
                  "description": "The story points value.",
                  "nullable": true,
                  "type": "number"
                },
                "time_project_id": {
                  "description": "The time project id value.",
                  "nullable": true,
                  "type": "integer"
                },
                "time_project_name": {
                  "description": "The time project name value.",
                  "type": "string"
                },
                "title": {
                  "description": "The title value.",
                  "type": "string"
                },
                "updated_at": {
                  "description": "The updated at value.",
                  "format": "date-time",
                  "type": "string"
                },
                "virtual_field_data": {
                  "additionalProperties": {
                    "description": "Arbitrary JSON extension value."
                  },
                  "description": "The virtual field data value.",
                  "type": "object"
                },
                "workspace_id": {
                  "description": "The workspace id value.",
                  "type": "integer"
                },
                "workspace_item_number": {
                  "description": "The workspace item number value.",
                  "type": "integer"
                },
                "workspace_key": {
                  "description": "The workspace key value.",
                  "type": "string"
                },
                "workspace_name": {
                  "description": "The workspace name value.",
                  "type": "string"
                }
              },
              "required": [
                "created_at",
                "description",
                "id",
                "inherit_project",
                "is_task",
                "last_active_at",
                "title",
                "updated_at",
                "workspace_id",
                "workspace_item_number"
              ],
              "type": "object"
            },
            "type": "array"
          },
          "meta": {
            "additionalProperties": false,
            "properties": {
              "next_cursor": {
                "description": "The next cursor value.",
                "type": "string"
              },
              "sortable_fields": {
                "description": "The sortable fields value.",
                "items": {
                  "type": "string"
                },
                "type": "array"
              },
              "watermark": {
                "description": "The watermark value.",
                "type": "integer"
              }
            },
            "required": [
              "sortable_fields"
            ],
            "type": "object"
          },
          "pagination": {
            "$ref": "#/components/schemas/Pagination"
          }
        },
        "required": [
          "data",
          "pagination",
          "meta"
        ],
        "type": "object"
      },
      "GetIterationsIterationIdBurndownResult": {
        "additionalProperties": false,
        "properties": {
          "data": {
            "additionalProperties": false,
            "nullable": true,
            "properties": {
              "data_points": {
                "description": "The data points value.",
                "items": {
                  "additionalProperties": false,
                  "properties": {
                    "completed": {
                      "description": "The completed value.",
                      "type": "integer"
                    },
                    "date": {
                      "description": "The date value.",
                      "type": "string"
                    },
                    "ideal": {
                      "description": "The ideal value.",
                      "type": "integer"
                    },
                    "remaining": {
                      "description": "The remaining value.",
                      "type": "integer"
                    }
                  },
                  "required": [
                    "completed",
                    "date",
                    "ideal",
                    "remaining"
                  ],
                  "type": "object"
                },
                "type": "array"
              },
              "end_date": {
                "description": "The end date value.",
                "type": "string"
              },
              "iteration_id": {
                "description": "The iteration id value.",
                "type": "integer"
              },
              "start_date": {
                "description": "The start date value.",
                "type": "string"
              },
              "total_items": {
                "description": "The total items value.",
                "type": "integer"
              }
            },
            "required": [
              "data_points",
              "end_date",
              "iteration_id",
              "start_date",
              "total_items"
            ],
            "type": "object"
          }
        },
        "required": [
          "data"
        ],
        "type": "object"
      },
      "GetIterationsIterationIdProgressResult": {
        "additionalProperties": false,
        "properties": {
          "data": {
            "additionalProperties": false,
            "nullable": true,
            "properties": {
              "completed_items": {
                "description": "The completed items value.",
                "type": "integer"
              },
              "description": {
                "description": "The description value.",
                "type": "string"
              },
              "end_date": {
                "description": "The end date value.",
                "type": "string"
              },
              "items_by_category": {
                "additionalProperties": {
                  "items": {
                    "additionalProperties": false,
                    "properties": {
                      "assignee_avatar": {
                        "description": "The assignee avatar value.",
                        "type": "string"
                      },
                      "assignee_name": {
                        "description": "The assignee name value.",
                        "type": "string"
                      },
                      "id": {
                        "description": "The id value.",
                        "type": "integer"
                      },
                      "item_number": {
                        "description": "The item number value.",
                        "type": "integer"
                      },
                      "priority_builtin_key": {
                        "description": "The priority builtin key value.",
                        "type": "string"
                      },
                      "priority_color": {
                        "description": "The priority color value.",
                        "type": "string"
                      },
                      "priority_name": {
                        "description": "The priority name value.",
                        "type": "string"
                      },
                      "status_builtin_key": {
                        "description": "The status builtin key value.",
                        "type": "string"
                      },
                      "status_color": {
                        "description": "The status color value.",
                        "type": "string"
                      },
                      "status_name": {
                        "description": "The status name value.",
                        "type": "string"
                      },
                      "title": {
                        "description": "The title value.",
                        "type": "string"
                      },
                      "workspace_id": {
                        "description": "The workspace id value.",
                        "type": "integer"
                      },
                      "workspace_key": {
                        "description": "The workspace key value.",
                        "type": "string"
                      }
                    },
                    "required": [
                      "id",
                      "item_number",
                      "title",
                      "workspace_id",
                      "workspace_key"
                    ],
                    "type": "object"
                  },
                  "type": "array"
                },
                "description": "The items by category value.",
                "type": "object"
              },
              "iteration_id": {
                "description": "The iteration id value.",
                "type": "integer"
              },
              "iteration_name": {
                "description": "The iteration name value.",
                "type": "string"
              },
              "percent_complete": {
                "description": "The percent complete value.",
                "type": "number"
              },
              "start_date": {
                "description": "The start date value.",
                "type": "string"
              },
              "status": {
                "description": "The status value.",
                "type": "string"
              },
              "status_breakdown": {
                "description": "The status breakdown value.",
                "items": {
                  "additionalProperties": false,
                  "properties": {
                    "category_builtin_key": {
                      "description": "The category builtin key value.",
                      "type": "string"
                    },
                    "category_color": {
                      "description": "The category color value.",
                      "type": "string"
                    },
                    "category_name": {
                      "description": "The category name value.",
                      "type": "string"
                    },
                    "is_completed": {
                      "description": "The is completed value.",
                      "type": "boolean"
                    },
                    "item_count": {
                      "description": "The item count value.",
                      "type": "integer"
                    }
                  },
                  "required": [
                    "category_name",
                    "is_completed",
                    "item_count"
                  ],
                  "type": "object"
                },
                "type": "array"
              },
              "total_items": {
                "description": "The total items value.",
                "type": "integer"
              },
              "type_color": {
                "description": "The type color value.",
                "type": "string"
              }
            },
            "required": [
              "completed_items",
              "end_date",
              "items_by_category",
              "iteration_id",
              "iteration_name",
              "percent_complete",
              "start_date",
              "status",
              "status_breakdown",
              "total_items"
            ],
            "type": "object"
          }
        },
        "required": [
          "data"
        ],
        "type": "object"
      },
      "GetIterationsIterationIdResult": {
        "additionalProperties": false,
        "properties": {
          "data": {
            "additionalProperties": false,
            "properties": {
              "created_at": {
                "description": "The created at value.",
                "format": "date-time",
                "type": "string"
              },
              "description": {
                "description": "The description value.",
                "type": "string"
              },
              "end_date": {
                "description": "The end date value.",
                "type": "string"
              },
              "id": {
                "description": "The id value.",
                "type": "integer"
              },
              "is_global": {
                "description": "The is global value.",
                "type": "boolean"
              },
              "name": {
                "description": "The name value.",
                "type": "string"
              },
              "start_date": {
                "description": "The start date value.",
                "type": "string"
              },
              "status": {
                "description": "The status value.",
                "type": "string"
              },
              "type_color": {
                "description": "The type color value.",
                "type": "string"
              },
              "type_id": {
                "description": "The type id value.",
                "nullable": true,
                "type": "integer"
              },
              "type_name": {
                "description": "The type name value.",
                "type": "string"
              },
              "updated_at": {
                "description": "The updated at value.",
                "format": "date-time",
                "type": "string"
              },
              "workspace_id": {
                "description": "The workspace id value.",
                "nullable": true,
                "type": "integer"
              },
              "workspace_name": {
                "description": "The workspace name value.",
                "type": "string"
              }
            },
            "required": [
              "created_at",
              "description",
              "end_date",
              "id",
              "is_global",
              "name",
              "start_date",
              "status",
              "updated_at"
            ],
            "type": "object"
          }
        },
        "required": [
          "data"
        ],
        "type": "object"
      },
      "GetIterationsResult": {
        "additionalProperties": false,
        "properties": {
          "data": {
            "items": {
              "additionalProperties": false,
              "properties": {
                "created_at": {
                  "description": "The created at value.",
                  "format": "date-time",
                  "type": "string"
                },
                "description": {
                  "description": "The description value.",
                  "type": "string"
                },
                "end_date": {
                  "description": "The end date value.",
                  "type": "string"
                },
                "id": {
                  "description": "The id value.",
                  "type": "integer"
                },
                "is_global": {
                  "description": "The is global value.",
                  "type": "boolean"
                },
                "name": {
                  "description": "The name value.",
                  "type": "string"
                },
                "start_date": {
                  "description": "The start date value.",
                  "type": "string"
                },
                "status": {
                  "description": "The status value.",
                  "type": "string"
                },
                "type_color": {
                  "description": "The type color value.",
                  "type": "string"
                },
                "type_id": {
                  "description": "The type id value.",
                  "nullable": true,
                  "type": "integer"
                },
                "type_name": {
                  "description": "The type name value.",
                  "type": "string"
                },
                "updated_at": {
                  "description": "The updated at value.",
                  "format": "date-time",
                  "type": "string"
                },
                "workspace_id": {
                  "description": "The workspace id value.",
                  "nullable": true,
                  "type": "integer"
                },
                "workspace_name": {
                  "description": "The workspace name value.",
                  "type": "string"
                }
              },
              "required": [
                "created_at",
                "description",
                "end_date",
                "id",
                "is_global",
                "name",
                "start_date",
                "status",
                "updated_at"
              ],
              "type": "object"
            },
            "type": "array"
          },
          "pagination": {
            "$ref": "#/components/schemas/Pagination"
          }
        },
        "required": [
          "data",
          "pagination"
        ],
        "type": "object"
      },
      "GetLinkTypesLinkTypeIdResult": {
        "additionalProperties": false,
        "properties": {
          "data": {
            "additionalProperties": false,
            "properties": {
              "active": {
                "description": "The active value.",
                "type": "boolean"
              },
              "allowed_entity_types": {
                "description": "The allowed entity types value.",
                "items": {
                  "type": "string"
                },
                "type": "array"
              },
              "builtin_key": {
                "description": "The builtin key value.",
                "type": "string"
              },
              "color": {
                "description": "The color value.",
                "type": "string"
              },
              "created_at": {
                "description": "The created at value.",
                "format": "date-time",
                "type": "string"
              },
              "description": {
                "description": "The description value.",
                "type": "string"
              },
              "display_description": {
                "description": "The display description value.",
                "type": "string"
              },
              "display_name": {
                "description": "The display name value.",
                "type": "string"
              },
              "forward_label": {
                "description": "The forward label value.",
                "type": "string"
              },
              "id": {
                "description": "The id value.",
                "type": "integer"
              },
              "is_system": {
                "description": "The is system value.",
                "type": "boolean"
              },
              "name": {
                "description": "The name value.",
                "type": "string"
              },
              "reverse_label": {
                "description": "The reverse label value.",
                "type": "string"
              },
              "updated_at": {
                "description": "The updated at value.",
                "format": "date-time",
                "type": "string"
              }
            },
            "required": [
              "active",
              "allowed_entity_types",
              "color",
              "created_at",
              "description",
              "display_name",
              "forward_label",
              "id",
              "is_system",
              "name",
              "reverse_label",
              "updated_at"
            ],
            "type": "object"
          }
        },
        "required": [
          "data"
        ],
        "type": "object"
      },
      "GetLinkTypesResult": {
        "additionalProperties": false,
        "properties": {
          "data": {
            "items": {
              "additionalProperties": false,
              "properties": {
                "active": {
                  "description": "The active value.",
                  "type": "boolean"
                },
                "allowed_entity_types": {
                  "description": "The allowed entity types value.",
                  "items": {
                    "type": "string"
                  },
                  "type": "array"
                },
                "builtin_key": {
                  "description": "The builtin key value.",
                  "type": "string"
                },
                "color": {
                  "description": "The color value.",
                  "type": "string"
                },
                "created_at": {
                  "description": "The created at value.",
                  "format": "date-time",
                  "type": "string"
                },
                "description": {
                  "description": "The description value.",
                  "type": "string"
                },
                "display_description": {
                  "description": "The display description value.",
                  "type": "string"
                },
                "display_name": {
                  "description": "The display name value.",
                  "type": "string"
                },
                "forward_label": {
                  "description": "The forward label value.",
                  "type": "string"
                },
                "id": {
                  "description": "The id value.",
                  "type": "integer"
                },
                "is_system": {
                  "description": "The is system value.",
                  "type": "boolean"
                },
                "name": {
                  "description": "The name value.",
                  "type": "string"
                },
                "reverse_label": {
                  "description": "The reverse label value.",
                  "type": "string"
                },
                "updated_at": {
                  "description": "The updated at value.",
                  "format": "date-time",
                  "type": "string"
                }
              },
              "required": [
                "active",
                "allowed_entity_types",
                "color",
                "created_at",
                "description",
                "display_name",
                "forward_label",
                "id",
                "is_system",
                "name",
                "reverse_label",
                "updated_at"
              ],
              "type": "object"
            },
            "type": "array"
          }
        },
        "required": [
          "data"
        ],
        "type": "object"
      },
      "GetLinksBatchResult": {
        "additionalProperties": false,
        "properties": {
          "data": {
            "items": {
              "additionalProperties": false,
              "properties": {
                "has_more_links": {
                  "description": "The has more links value.",
                  "type": "boolean"
                },
                "incoming": {
                  "description": "The incoming value.",
                  "items": {
                    "additionalProperties": false,
                    "properties": {
                      "created_at": {
                        "description": "The created at value.",
                        "format": "date-time",
                        "type": "string"
                      },
                      "created_by": {
                        "description": "The created by value.",
                        "nullable": true,
                        "type": "integer"
                      },
                      "created_by_name": {
                        "description": "The created by name value.",
                        "type": "string"
                      },
                      "custom_field_id": {
                        "description": "The custom field id value.",
                        "nullable": true,
                        "type": "integer"
                      },
                      "custom_field_name": {
                        "description": "The custom field name value.",
                        "type": "string"
                      },
                      "id": {
                        "description": "The id value.",
                        "type": "integer"
                      },
                      "link_type_color": {
                        "description": "The link type color value.",
                        "type": "string"
                      },
                      "link_type_forward_label": {
                        "description": "The link type forward label value.",
                        "type": "string"
                      },
                      "link_type_id": {
                        "description": "The link type id value.",
                        "type": "integer"
                      },
                      "link_type_name": {
                        "description": "The link type name value.",
                        "type": "string"
                      },
                      "link_type_reverse_label": {
                        "description": "The link type reverse label value.",
                        "type": "string"
                      },
                      "source_id": {
                        "description": "The source id value.",
                        "type": "integer"
                      },
                      "source_item_number": {
                        "description": "The source item number value.",
                        "nullable": true,
                        "type": "integer"
                      },
                      "source_item_type_color": {
                        "description": "The source item type color value.",
                        "type": "string"
                      },
                      "source_item_type_icon": {
                        "description": "The source item type icon value.",
                        "type": "string"
                      },
                      "source_item_type_id": {
                        "description": "The source item type id value.",
                        "nullable": true,
                        "type": "integer"
                      },
                      "source_item_type_name": {
                        "description": "The source item type name value.",
                        "type": "string"
                      },
                      "source_status_color": {
                        "description": "The source status color value.",
                        "type": "string"
                      },
                      "source_status_id": {
                        "description": "The source status id value.",
                        "nullable": true,
                        "type": "integer"
                      },
                      "source_status_name": {
                        "description": "The source status name value.",
                        "type": "string"
                      },
                      "source_title": {
                        "description": "The source title value.",
                        "type": "string"
                      },
                      "source_type": {
                        "description": "The source type value.",
                        "type": "string"
                      },
                      "source_workspace_id": {
                        "description": "The source workspace id value.",
                        "nullable": true,
                        "type": "integer"
                      },
                      "source_workspace_key": {
                        "description": "The source workspace key value.",
                        "type": "string"
                      },
                      "target_id": {
                        "description": "The target id value.",
                        "type": "integer"
                      },
                      "target_item_number": {
                        "description": "The target item number value.",
                        "nullable": true,
                        "type": "integer"
                      },
                      "target_item_type_color": {
                        "description": "The target item type color value.",
                        "type": "string"
                      },
                      "target_item_type_icon": {
                        "description": "The target item type icon value.",
                        "type": "string"
                      },
                      "target_item_type_id": {
                        "description": "The target item type id value.",
                        "nullable": true,
                        "type": "integer"
                      },
                      "target_item_type_name": {
                        "description": "The target item type name value.",
                        "type": "string"
                      },
                      "target_status_color": {
                        "description": "The target status color value.",
                        "type": "string"
                      },
                      "target_status_id": {
                        "description": "The target status id value.",
                        "nullable": true,
                        "type": "integer"
                      },
                      "target_status_name": {
                        "description": "The target status name value.",
                        "type": "string"
                      },
                      "target_title": {
                        "description": "The target title value.",
                        "type": "string"
                      },
                      "target_type": {
                        "description": "The target type value.",
                        "type": "string"
                      },
                      "target_workspace_id": {
                        "description": "The target workspace id value.",
                        "nullable": true,
                        "type": "integer"
                      },
                      "target_workspace_key": {
                        "description": "The target workspace key value.",
                        "type": "string"
                      }
                    },
                    "required": [
                      "created_at",
                      "id",
                      "link_type_id",
                      "source_id",
                      "source_type",
                      "target_id",
                      "target_type"
                    ],
                    "type": "object"
                  },
                  "type": "array"
                },
                "item_id": {
                  "description": "The item id value.",
                  "type": "integer"
                },
                "next_cursor": {
                  "description": "The next cursor value.",
                  "type": "string"
                },
                "outgoing": {
                  "description": "The outgoing value.",
                  "items": {
                    "additionalProperties": false,
                    "properties": {
                      "created_at": {
                        "description": "The created at value.",
                        "format": "date-time",
                        "type": "string"
                      },
                      "created_by": {
                        "description": "The created by value.",
                        "nullable": true,
                        "type": "integer"
                      },
                      "created_by_name": {
                        "description": "The created by name value.",
                        "type": "string"
                      },
                      "custom_field_id": {
                        "description": "The custom field id value.",
                        "nullable": true,
                        "type": "integer"
                      },
                      "custom_field_name": {
                        "description": "The custom field name value.",
                        "type": "string"
                      },
                      "id": {
                        "description": "The id value.",
                        "type": "integer"
                      },
                      "link_type_color": {
                        "description": "The link type color value.",
                        "type": "string"
                      },
                      "link_type_forward_label": {
                        "description": "The link type forward label value.",
                        "type": "string"
                      },
                      "link_type_id": {
                        "description": "The link type id value.",
                        "type": "integer"
                      },
                      "link_type_name": {
                        "description": "The link type name value.",
                        "type": "string"
                      },
                      "link_type_reverse_label": {
                        "description": "The link type reverse label value.",
                        "type": "string"
                      },
                      "source_id": {
                        "description": "The source id value.",
                        "type": "integer"
                      },
                      "source_item_number": {
                        "description": "The source item number value.",
                        "nullable": true,
                        "type": "integer"
                      },
                      "source_item_type_color": {
                        "description": "The source item type color value.",
                        "type": "string"
                      },
                      "source_item_type_icon": {
                        "description": "The source item type icon value.",
                        "type": "string"
                      },
                      "source_item_type_id": {
                        "description": "The source item type id value.",
                        "nullable": true,
                        "type": "integer"
                      },
                      "source_item_type_name": {
                        "description": "The source item type name value.",
                        "type": "string"
                      },
                      "source_status_color": {
                        "description": "The source status color value.",
                        "type": "string"
                      },
                      "source_status_id": {
                        "description": "The source status id value.",
                        "nullable": true,
                        "type": "integer"
                      },
                      "source_status_name": {
                        "description": "The source status name value.",
                        "type": "string"
                      },
                      "source_title": {
                        "description": "The source title value.",
                        "type": "string"
                      },
                      "source_type": {
                        "description": "The source type value.",
                        "type": "string"
                      },
                      "source_workspace_id": {
                        "description": "The source workspace id value.",
                        "nullable": true,
                        "type": "integer"
                      },
                      "source_workspace_key": {
                        "description": "The source workspace key value.",
                        "type": "string"
                      },
                      "target_id": {
                        "description": "The target id value.",
                        "type": "integer"
                      },
                      "target_item_number": {
                        "description": "The target item number value.",
                        "nullable": true,
                        "type": "integer"
                      },
                      "target_item_type_color": {
                        "description": "The target item type color value.",
                        "type": "string"
                      },
                      "target_item_type_icon": {
                        "description": "The target item type icon value.",
                        "type": "string"
                      },
                      "target_item_type_id": {
                        "description": "The target item type id value.",
                        "nullable": true,
                        "type": "integer"
                      },
                      "target_item_type_name": {
                        "description": "The target item type name value.",
                        "type": "string"
                      },
                      "target_status_color": {
                        "description": "The target status color value.",
                        "type": "string"
                      },
                      "target_status_id": {
                        "description": "The target status id value.",
                        "nullable": true,
                        "type": "integer"
                      },
                      "target_status_name": {
                        "description": "The target status name value.",
                        "type": "string"
                      },
                      "target_title": {
                        "description": "The target title value.",
                        "type": "string"
                      },
                      "target_type": {
                        "description": "The target type value.",
                        "type": "string"
                      },
                      "target_workspace_id": {
                        "description": "The target workspace id value.",
                        "nullable": true,
                        "type": "integer"
                      },
                      "target_workspace_key": {
                        "description": "The target workspace key value.",
                        "type": "string"
                      }
                    },
                    "required": [
                      "created_at",
                      "id",
                      "link_type_id",
                      "source_id",
                      "source_type",
                      "target_id",
                      "target_type"
                    ],
                    "type": "object"
                  },
                  "type": "array"
                }
              },
              "required": [
                "has_more_links",
                "incoming",
                "item_id",
                "outgoing"
              ],
              "type": "object"
            },
            "type": "array"
          },
          "pagination": {
            "$ref": "#/components/schemas/Pagination"
          }
        },
        "required": [
          "data",
          "pagination"
        ],
        "type": "object"
      },
      "GetLinksSearchResult": {
        "additionalProperties": false,
        "properties": {
          "data": {
            "items": {
              "additionalProperties": false,
              "properties": {
                "asset_category_name": {
                  "description": "The asset category name value.",
                  "type": "string"
                },
                "asset_set_id": {
                  "description": "The asset set id value.",
                  "nullable": true,
                  "type": "integer"
                },
                "asset_set_name": {
                  "description": "The asset set name value.",
                  "type": "string"
                },
                "asset_type_name": {
                  "description": "The asset type name value.",
                  "type": "string"
                },
                "description": {
                  "description": "The description value.",
                  "type": "string"
                },
                "id": {
                  "description": "The id value.",
                  "type": "integer"
                },
                "item_type_color": {
                  "description": "The item type color value.",
                  "type": "string"
                },
                "item_type_icon": {
                  "description": "The item type icon value.",
                  "type": "string"
                },
                "item_type_id": {
                  "description": "The item type id value.",
                  "nullable": true,
                  "type": "integer"
                },
                "item_type_name": {
                  "description": "The item type name value.",
                  "type": "string"
                },
                "priority": {
                  "description": "The priority value.",
                  "type": "string"
                },
                "status": {
                  "description": "The status value.",
                  "type": "string"
                },
                "title": {
                  "description": "The title value.",
                  "type": "string"
                },
                "type": {
                  "description": "The type value.",
                  "type": "string"
                },
                "workspace_id": {
                  "description": "The workspace id value.",
                  "nullable": true,
                  "type": "integer"
                },
                "workspace_item_number": {
                  "description": "The workspace item number value.",
                  "nullable": true,
                  "type": "integer"
                },
                "workspace_key": {
                  "description": "The workspace key value.",
                  "type": "string"
                },
                "workspace_name": {
                  "description": "The workspace name value.",
                  "type": "string"
                }
              },
              "required": [
                "description",
                "id",
                "title",
                "type"
              ],
              "type": "object"
            },
            "type": "array"
          }
        },
        "required": [
          "data"
        ],
        "type": "object"
      },
      "GetMilestonesMilestoneIdProgressResult": {
        "additionalProperties": false,
        "properties": {
          "data": {
            "additionalProperties": false,
            "nullable": true,
            "properties": {
              "category_color": {
                "description": "The category color value.",
                "type": "string"
              },
              "completed_items": {
                "description": "The completed items value.",
                "type": "integer"
              },
              "description": {
                "description": "The description value.",
                "type": "string"
              },
              "items_by_category": {
                "additionalProperties": {
                  "items": {
                    "additionalProperties": false,
                    "properties": {
                      "assignee_avatar": {
                        "description": "The assignee avatar value.",
                        "type": "string"
                      },
                      "assignee_name": {
                        "description": "The assignee name value.",
                        "type": "string"
                      },
                      "id": {
                        "description": "The id value.",
                        "type": "integer"
                      },
                      "item_number": {
                        "description": "The item number value.",
                        "type": "integer"
                      },
                      "priority_builtin_key": {
                        "description": "The priority builtin key value.",
                        "type": "string"
                      },
                      "priority_color": {
                        "description": "The priority color value.",
                        "type": "string"
                      },
                      "priority_name": {
                        "description": "The priority name value.",
                        "type": "string"
                      },
                      "status_builtin_key": {
                        "description": "The status builtin key value.",
                        "type": "string"
                      },
                      "status_color": {
                        "description": "The status color value.",
                        "type": "string"
                      },
                      "status_name": {
                        "description": "The status name value.",
                        "type": "string"
                      },
                      "title": {
                        "description": "The title value.",
                        "type": "string"
                      },
                      "workspace_id": {
                        "description": "The workspace id value.",
                        "type": "integer"
                      },
                      "workspace_key": {
                        "description": "The workspace key value.",
                        "type": "string"
                      }
                    },
                    "required": [
                      "id",
                      "item_number",
                      "title",
                      "workspace_id",
                      "workspace_key"
                    ],
                    "type": "object"
                  },
                  "type": "array"
                },
                "description": "The items by category value.",
                "type": "object"
              },
              "milestone_id": {
                "description": "The milestone id value.",
                "type": "integer"
              },
              "milestone_name": {
                "description": "The milestone name value.",
                "type": "string"
              },
              "percent_complete": {
                "description": "The percent complete value.",
                "type": "number"
              },
              "status": {
                "description": "The status value.",
                "type": "string"
              },
              "status_breakdown": {
                "description": "The status breakdown value.",
                "items": {
                  "additionalProperties": false,
                  "properties": {
                    "category_builtin_key": {
                      "description": "The category builtin key value.",
                      "type": "string"
                    },
                    "category_color": {
                      "description": "The category color value.",
                      "type": "string"
                    },
                    "category_name": {
                      "description": "The category name value.",
                      "type": "string"
                    },
                    "is_completed": {
                      "description": "The is completed value.",
                      "type": "boolean"
                    },
                    "item_count": {
                      "description": "The item count value.",
                      "type": "integer"
                    }
                  },
                  "required": [
                    "category_name",
                    "is_completed",
                    "item_count"
                  ],
                  "type": "object"
                },
                "type": "array"
              },
              "target_date": {
                "description": "The target date value.",
                "nullable": true,
                "type": "string"
              },
              "total_items": {
                "description": "The total items value.",
                "type": "integer"
              }
            },
            "required": [
              "completed_items",
              "items_by_category",
              "milestone_id",
              "milestone_name",
              "percent_complete",
              "status",
              "status_breakdown",
              "total_items"
            ],
            "type": "object"
          }
        },
        "required": [
          "data"
        ],
        "type": "object"
      },
      "GetMilestonesMilestoneIdResult": {
        "additionalProperties": false,
        "properties": {
          "data": {
            "additionalProperties": false,
            "properties": {
              "category_color": {
                "description": "The category color value.",
                "type": "string"
              },
              "category_id": {
                "description": "The category id value.",
                "nullable": true,
                "type": "integer"
              },
              "category_name": {
                "description": "The category name value.",
                "type": "string"
              },
              "created_at": {
                "description": "The created at value.",
                "format": "date-time",
                "type": "string"
              },
              "description": {
                "description": "The description value.",
                "type": "string"
              },
              "external_key": {
                "description": "The external key value.",
                "nullable": true,
                "type": "string"
              },
              "id": {
                "description": "The id value.",
                "type": "integer"
              },
              "is_global": {
                "description": "The is global value.",
                "type": "boolean"
              },
              "latest_release": {
                "additionalProperties": false,
                "description": "The latest release value.",
                "nullable": true,
                "properties": {
                  "body": {
                    "description": "The body value.",
                    "type": "string"
                  },
                  "created_at": {
                    "description": "The created at value.",
                    "type": "string"
                  },
                  "created_by": {
                    "description": "The created by value.",
                    "nullable": true,
                    "type": "integer"
                  },
                  "id": {
                    "description": "The id value.",
                    "type": "integer"
                  },
                  "is_draft": {
                    "description": "The is draft value.",
                    "type": "boolean"
                  },
                  "is_prerelease": {
                    "description": "The is prerelease value.",
                    "type": "boolean"
                  },
                  "milestone_id": {
                    "description": "The milestone id value.",
                    "type": "integer"
                  },
                  "name": {
                    "description": "The name value.",
                    "type": "string"
                  },
                  "scm_connection_id": {
                    "description": "The scm connection id value.",
                    "nullable": true,
                    "type": "integer"
                  },
                  "scm_release_id": {
                    "description": "The scm release id value.",
                    "nullable": true,
                    "type": "string"
                  },
                  "scm_release_url": {
                    "description": "The scm release url value.",
                    "nullable": true,
                    "type": "string"
                  },
                  "scm_repository": {
                    "description": "The scm repository value.",
                    "nullable": true,
                    "type": "string"
                  },
                  "tag_name": {
                    "description": "The tag name value.",
                    "type": "string"
                  },
                  "target_commitish": {
                    "description": "The target commitish value.",
                    "type": "string"
                  }
                },
                "required": [
                  "created_at",
                  "id",
                  "is_draft",
                  "is_prerelease",
                  "milestone_id",
                  "tag_name"
                ],
                "type": "object"
              },
              "name": {
                "description": "The name value.",
                "type": "string"
              },
              "position": {
                "description": "The position value.",
                "type": "integer"
              },
              "releases": {
                "description": "The releases value.",
                "items": {
                  "additionalProperties": false,
                  "properties": {
                    "body": {
                      "description": "The body value.",
                      "type": "string"
                    },
                    "created_at": {
                      "description": "The created at value.",
                      "type": "string"
                    },
                    "created_by": {
                      "description": "The created by value.",
                      "nullable": true,
                      "type": "integer"
                    },
                    "id": {
                      "description": "The id value.",
                      "type": "integer"
                    },
                    "is_draft": {
                      "description": "The is draft value.",
                      "type": "boolean"
                    },
                    "is_prerelease": {
                      "description": "The is prerelease value.",
                      "type": "boolean"
                    },
                    "milestone_id": {
                      "description": "The milestone id value.",
                      "type": "integer"
                    },
                    "name": {
                      "description": "The name value.",
                      "type": "string"
                    },
                    "scm_connection_id": {
                      "description": "The scm connection id value.",
                      "nullable": true,
                      "type": "integer"
                    },
                    "scm_release_id": {
                      "description": "The scm release id value.",
                      "nullable": true,
                      "type": "string"
                    },
                    "scm_release_url": {
                      "description": "The scm release url value.",
                      "nullable": true,
                      "type": "string"
                    },
                    "scm_repository": {
                      "description": "The scm repository value.",
                      "nullable": true,
                      "type": "string"
                    },
                    "tag_name": {
                      "description": "The tag name value.",
                      "type": "string"
                    },
                    "target_commitish": {
                      "description": "The target commitish value.",
                      "type": "string"
                    }
                  },
                  "required": [
                    "created_at",
                    "id",
                    "is_draft",
                    "is_prerelease",
                    "milestone_id",
                    "tag_name"
                  ],
                  "type": "object"
                },
                "type": "array"
              },
              "status": {
                "description": "The status value.",
                "type": "string"
              },
              "target_date": {
                "description": "The target date value.",
                "nullable": true,
                "type": "string"
              },
              "updated_at": {
                "description": "The updated at value.",
                "format": "date-time",
                "type": "string"
              },
              "workspace_id": {
                "description": "The workspace id value.",
                "nullable": true,
                "type": "integer"
              },
              "workspace_name": {
                "description": "The workspace name value.",
                "type": "string"
              }
            },
            "required": [
              "created_at",
              "description",
              "id",
              "is_global",
              "name",
              "position",
              "status",
              "updated_at"
            ],
            "type": "object"
          }
        },
        "required": [
          "data"
        ],
        "type": "object"
      },
      "GetMilestonesMilestoneIdTestStatisticsResult": {
        "additionalProperties": false,
        "properties": {
          "data": {
            "additionalProperties": false,
            "nullable": true,
            "properties": {
              "failed_test_runs": {
                "description": "The failed test runs value.",
                "type": "integer"
              },
              "in_progress_test_runs": {
                "description": "The in progress test runs value.",
                "type": "integer"
              },
              "successful_test_runs": {
                "description": "The successful test runs value.",
                "type": "integer"
              },
              "total_test_cases": {
                "description": "The total test cases value.",
                "type": "integer"
              },
              "total_test_plans": {
                "description": "The total test plans value.",
                "type": "integer"
              },
              "total_test_runs": {
                "description": "The total test runs value.",
                "type": "integer"
              }
            },
            "required": [
              "failed_test_runs",
              "in_progress_test_runs",
              "successful_test_runs",
              "total_test_cases",
              "total_test_plans",
              "total_test_runs"
            ],
            "type": "object"
          }
        },
        "required": [
          "data"
        ],
        "type": "object"
      },
      "GetMilestonesResult": {
        "additionalProperties": false,
        "properties": {
          "data": {
            "items": {
              "additionalProperties": false,
              "properties": {
                "category_color": {
                  "description": "The category color value.",
                  "type": "string"
                },
                "category_id": {
                  "description": "The category id value.",
                  "nullable": true,
                  "type": "integer"
                },
                "category_name": {
                  "description": "The category name value.",
                  "type": "string"
                },
                "created_at": {
                  "description": "The created at value.",
                  "format": "date-time",
                  "type": "string"
                },
                "description": {
                  "description": "The description value.",
                  "type": "string"
                },
                "external_key": {
                  "description": "The external key value.",
                  "nullable": true,
                  "type": "string"
                },
                "id": {
                  "description": "The id value.",
                  "type": "integer"
                },
                "is_global": {
                  "description": "The is global value.",
                  "type": "boolean"
                },
                "latest_release": {
                  "additionalProperties": false,
                  "description": "The latest release value.",
                  "nullable": true,
                  "properties": {
                    "body": {
                      "description": "The body value.",
                      "type": "string"
                    },
                    "created_at": {
                      "description": "The created at value.",
                      "type": "string"
                    },
                    "created_by": {
                      "description": "The created by value.",
                      "nullable": true,
                      "type": "integer"
                    },
                    "id": {
                      "description": "The id value.",
                      "type": "integer"
                    },
                    "is_draft": {
                      "description": "The is draft value.",
                      "type": "boolean"
                    },
                    "is_prerelease": {
                      "description": "The is prerelease value.",
                      "type": "boolean"
                    },
                    "milestone_id": {
                      "description": "The milestone id value.",
                      "type": "integer"
                    },
                    "name": {
                      "description": "The name value.",
                      "type": "string"
                    },
                    "scm_connection_id": {
                      "description": "The scm connection id value.",
                      "nullable": true,
                      "type": "integer"
                    },
                    "scm_release_id": {
                      "description": "The scm release id value.",
                      "nullable": true,
                      "type": "string"
                    },
                    "scm_release_url": {
                      "description": "The scm release url value.",
                      "nullable": true,
                      "type": "string"
                    },
                    "scm_repository": {
                      "description": "The scm repository value.",
                      "nullable": true,
                      "type": "string"
                    },
                    "tag_name": {
                      "description": "The tag name value.",
                      "type": "string"
                    },
                    "target_commitish": {
                      "description": "The target commitish value.",
                      "type": "string"
                    }
                  },
                  "required": [
                    "created_at",
                    "id",
                    "is_draft",
                    "is_prerelease",
                    "milestone_id",
                    "tag_name"
                  ],
                  "type": "object"
                },
                "name": {
                  "description": "The name value.",
                  "type": "string"
                },
                "position": {
                  "description": "The position value.",
                  "type": "integer"
                },
                "releases": {
                  "description": "The releases value.",
                  "items": {
                    "additionalProperties": false,
                    "properties": {
                      "body": {
                        "description": "The body value.",
                        "type": "string"
                      },
                      "created_at": {
                        "description": "The created at value.",
                        "type": "string"
                      },
                      "created_by": {
                        "description": "The created by value.",
                        "nullable": true,
                        "type": "integer"
                      },
                      "id": {
                        "description": "The id value.",
                        "type": "integer"
                      },
                      "is_draft": {
                        "description": "The is draft value.",
                        "type": "boolean"
                      },
                      "is_prerelease": {
                        "description": "The is prerelease value.",
                        "type": "boolean"
                      },
                      "milestone_id": {
                        "description": "The milestone id value.",
                        "type": "integer"
                      },
                      "name": {
                        "description": "The name value.",
                        "type": "string"
                      },
                      "scm_connection_id": {
                        "description": "The scm connection id value.",
                        "nullable": true,
                        "type": "integer"
                      },
                      "scm_release_id": {
                        "description": "The scm release id value.",
                        "nullable": true,
                        "type": "string"
                      },
                      "scm_release_url": {
                        "description": "The scm release url value.",
                        "nullable": true,
                        "type": "string"
                      },
                      "scm_repository": {
                        "description": "The scm repository value.",
                        "nullable": true,
                        "type": "string"
                      },
                      "tag_name": {
                        "description": "The tag name value.",
                        "type": "string"
                      },
                      "target_commitish": {
                        "description": "The target commitish value.",
                        "type": "string"
                      }
                    },
                    "required": [
                      "created_at",
                      "id",
                      "is_draft",
                      "is_prerelease",
                      "milestone_id",
                      "tag_name"
                    ],
                    "type": "object"
                  },
                  "type": "array"
                },
                "status": {
                  "description": "The status value.",
                  "type": "string"
                },
                "target_date": {
                  "description": "The target date value.",
                  "nullable": true,
                  "type": "string"
                },
                "updated_at": {
                  "description": "The updated at value.",
                  "format": "date-time",
                  "type": "string"
                },
                "workspace_id": {
                  "description": "The workspace id value.",
                  "nullable": true,
                  "type": "integer"
                },
                "workspace_name": {
                  "description": "The workspace name value.",
                  "type": "string"
                }
              },
              "required": [
                "created_at",
                "description",
                "id",
                "is_global",
                "name",
                "position",
                "status",
                "updated_at"
              ],
              "type": "object"
            },
            "type": "array"
          },
          "pagination": {
            "$ref": "#/components/schemas/Pagination"
          }
        },
        "required": [
          "data",
          "pagination"
        ],
        "type": "object"
      },
      "GetOpenapi.jsonResult": {
        "additionalProperties": {
          "description": "Arbitrary JSON extension value."
        },
        "type": "object"
      },
      "GetPagesPageIdLinksResult": {
        "additionalProperties": false,
        "properties": {
          "data": {
            "additionalProperties": false,
            "properties": {
              "incoming": {
                "description": "The incoming value.",
                "items": {
                  "additionalProperties": false,
                  "properties": {
                    "created_at": {
                      "description": "The created at value.",
                      "format": "date-time",
                      "type": "string"
                    },
                    "created_by": {
                      "description": "The created by value.",
                      "nullable": true,
                      "type": "integer"
                    },
                    "created_by_name": {
                      "description": "The created by name value.",
                      "type": "string"
                    },
                    "custom_field_id": {
                      "description": "The custom field id value.",
                      "nullable": true,
                      "type": "integer"
                    },
                    "custom_field_name": {
                      "description": "The custom field name value.",
                      "type": "string"
                    },
                    "id": {
                      "description": "The id value.",
                      "type": "integer"
                    },
                    "link_type_color": {
                      "description": "The link type color value.",
                      "type": "string"
                    },
                    "link_type_forward_label": {
                      "description": "The link type forward label value.",
                      "type": "string"
                    },
                    "link_type_id": {
                      "description": "The link type id value.",
                      "type": "integer"
                    },
                    "link_type_name": {
                      "description": "The link type name value.",
                      "type": "string"
                    },
                    "link_type_reverse_label": {
                      "description": "The link type reverse label value.",
                      "type": "string"
                    },
                    "source_id": {
                      "description": "The source id value.",
                      "type": "integer"
                    },
                    "source_item_number": {
                      "description": "The source item number value.",
                      "nullable": true,
                      "type": "integer"
                    },
                    "source_item_type_color": {
                      "description": "The source item type color value.",
                      "type": "string"
                    },
                    "source_item_type_icon": {
                      "description": "The source item type icon value.",
                      "type": "string"
                    },
                    "source_item_type_id": {
                      "description": "The source item type id value.",
                      "nullable": true,
                      "type": "integer"
                    },
                    "source_item_type_name": {
                      "description": "The source item type name value.",
                      "type": "string"
                    },
                    "source_status_color": {
                      "description": "The source status color value.",
                      "type": "string"
                    },
                    "source_status_id": {
                      "description": "The source status id value.",
                      "nullable": true,
                      "type": "integer"
                    },
                    "source_status_name": {
                      "description": "The source status name value.",
                      "type": "string"
                    },
                    "source_title": {
                      "description": "The source title value.",
                      "type": "string"
                    },
                    "source_type": {
                      "description": "The source type value.",
                      "type": "string"
                    },
                    "source_workspace_id": {
                      "description": "The source workspace id value.",
                      "nullable": true,
                      "type": "integer"
                    },
                    "source_workspace_key": {
                      "description": "The source workspace key value.",
                      "type": "string"
                    },
                    "target_id": {
                      "description": "The target id value.",
                      "type": "integer"
                    },
                    "target_item_number": {
                      "description": "The target item number value.",
                      "nullable": true,
                      "type": "integer"
                    },
                    "target_item_type_color": {
                      "description": "The target item type color value.",
                      "type": "string"
                    },
                    "target_item_type_icon": {
                      "description": "The target item type icon value.",
                      "type": "string"
                    },
                    "target_item_type_id": {
                      "description": "The target item type id value.",
                      "nullable": true,
                      "type": "integer"
                    },
                    "target_item_type_name": {
                      "description": "The target item type name value.",
                      "type": "string"
                    },
                    "target_status_color": {
                      "description": "The target status color value.",
                      "type": "string"
                    },
                    "target_status_id": {
                      "description": "The target status id value.",
                      "nullable": true,
                      "type": "integer"
                    },
                    "target_status_name": {
                      "description": "The target status name value.",
                      "type": "string"
                    },
                    "target_title": {
                      "description": "The target title value.",
                      "type": "string"
                    },
                    "target_type": {
                      "description": "The target type value.",
                      "type": "string"
                    },
                    "target_workspace_id": {
                      "description": "The target workspace id value.",
                      "nullable": true,
                      "type": "integer"
                    },
                    "target_workspace_key": {
                      "description": "The target workspace key value.",
                      "type": "string"
                    }
                  },
                  "required": [
                    "created_at",
                    "id",
                    "link_type_id",
                    "source_id",
                    "source_type",
                    "target_id",
                    "target_type"
                  ],
                  "type": "object"
                },
                "type": "array"
              },
              "outgoing": {
                "description": "The outgoing value.",
                "items": {
                  "additionalProperties": false,
                  "properties": {
                    "created_at": {
                      "description": "The created at value.",
                      "format": "date-time",
                      "type": "string"
                    },
                    "created_by": {
                      "description": "The created by value.",
                      "nullable": true,
                      "type": "integer"
                    },
                    "created_by_name": {
                      "description": "The created by name value.",
                      "type": "string"
                    },
                    "custom_field_id": {
                      "description": "The custom field id value.",
                      "nullable": true,
                      "type": "integer"
                    },
                    "custom_field_name": {
                      "description": "The custom field name value.",
                      "type": "string"
                    },
                    "id": {
                      "description": "The id value.",
                      "type": "integer"
                    },
                    "link_type_color": {
                      "description": "The link type color value.",
                      "type": "string"
                    },
                    "link_type_forward_label": {
                      "description": "The link type forward label value.",
                      "type": "string"
                    },
                    "link_type_id": {
                      "description": "The link type id value.",
                      "type": "integer"
                    },
                    "link_type_name": {
                      "description": "The link type name value.",
                      "type": "string"
                    },
                    "link_type_reverse_label": {
                      "description": "The link type reverse label value.",
                      "type": "string"
                    },
                    "source_id": {
                      "description": "The source id value.",
                      "type": "integer"
                    },
                    "source_item_number": {
                      "description": "The source item number value.",
                      "nullable": true,
                      "type": "integer"
                    },
                    "source_item_type_color": {
                      "description": "The source item type color value.",
                      "type": "string"
                    },
                    "source_item_type_icon": {
                      "description": "The source item type icon value.",
                      "type": "string"
                    },
                    "source_item_type_id": {
                      "description": "The source item type id value.",
                      "nullable": true,
                      "type": "integer"
                    },
                    "source_item_type_name": {
                      "description": "The source item type name value.",
                      "type": "string"
                    },
                    "source_status_color": {
                      "description": "The source status color value.",
                      "type": "string"
                    },
                    "source_status_id": {
                      "description": "The source status id value.",
                      "nullable": true,
                      "type": "integer"
                    },
                    "source_status_name": {
                      "description": "The source status name value.",
                      "type": "string"
                    },
                    "source_title": {
                      "description": "The source title value.",
                      "type": "string"
                    },
                    "source_type": {
                      "description": "The source type value.",
                      "type": "string"
                    },
                    "source_workspace_id": {
                      "description": "The source workspace id value.",
                      "nullable": true,
                      "type": "integer"
                    },
                    "source_workspace_key": {
                      "description": "The source workspace key value.",
                      "type": "string"
                    },
                    "target_id": {
                      "description": "The target id value.",
                      "type": "integer"
                    },
                    "target_item_number": {
                      "description": "The target item number value.",
                      "nullable": true,
                      "type": "integer"
                    },
                    "target_item_type_color": {
                      "description": "The target item type color value.",
                      "type": "string"
                    },
                    "target_item_type_icon": {
                      "description": "The target item type icon value.",
                      "type": "string"
                    },
                    "target_item_type_id": {
                      "description": "The target item type id value.",
                      "nullable": true,
                      "type": "integer"
                    },
                    "target_item_type_name": {
                      "description": "The target item type name value.",
                      "type": "string"
                    },
                    "target_status_color": {
                      "description": "The target status color value.",
                      "type": "string"
                    },
                    "target_status_id": {
                      "description": "The target status id value.",
                      "nullable": true,
                      "type": "integer"
                    },
                    "target_status_name": {
                      "description": "The target status name value.",
                      "type": "string"
                    },
                    "target_title": {
                      "description": "The target title value.",
                      "type": "string"
                    },
                    "target_type": {
                      "description": "The target type value.",
                      "type": "string"
                    },
                    "target_workspace_id": {
                      "description": "The target workspace id value.",
                      "nullable": true,
                      "type": "integer"
                    },
                    "target_workspace_key": {
                      "description": "The target workspace key value.",
                      "type": "string"
                    }
                  },
                  "required": [
                    "created_at",
                    "id",
                    "link_type_id",
                    "source_id",
                    "source_type",
                    "target_id",
                    "target_type"
                  ],
                  "type": "object"
                },
                "type": "array"
              }
            },
            "required": [
              "incoming",
              "outgoing"
            ],
            "type": "object"
          }
        },
        "required": [
          "data"
        ],
        "type": "object"
      },
      "GetPrioritiesPriorityIdResult": {
        "additionalProperties": false,
        "properties": {
          "data": {
            "additionalProperties": false,
            "properties": {
              "builtin_key": {
                "description": "The builtin key value.",
                "nullable": true,
                "type": "string"
              },
              "color": {
                "description": "The color value.",
                "type": "string"
              },
              "description": {
                "description": "The description value.",
                "type": "string"
              },
              "display_description": {
                "description": "The display description value.",
                "type": "string"
              },
              "display_name": {
                "description": "The display name value.",
                "type": "string"
              },
              "icon": {
                "description": "The icon value.",
                "type": "string"
              },
              "id": {
                "description": "The id value.",
                "type": "integer"
              },
              "is_default": {
                "description": "The is default value.",
                "type": "boolean"
              },
              "name": {
                "description": "The name value.",
                "type": "string"
              },
              "sort_order": {
                "description": "The sort order value.",
                "type": "integer"
              }
            },
            "required": [
              "color",
              "description",
              "display_description",
              "display_name",
              "icon",
              "id",
              "is_default",
              "name",
              "sort_order"
            ],
            "type": "object"
          }
        },
        "required": [
          "data"
        ],
        "type": "object"
      },
      "GetPrioritiesResult": {
        "additionalProperties": false,
        "properties": {
          "data": {
            "items": {
              "additionalProperties": false,
              "properties": {
                "builtin_key": {
                  "description": "The builtin key value.",
                  "nullable": true,
                  "type": "string"
                },
                "color": {
                  "description": "The color value.",
                  "type": "string"
                },
                "description": {
                  "description": "The description value.",
                  "type": "string"
                },
                "display_description": {
                  "description": "The display description value.",
                  "type": "string"
                },
                "display_name": {
                  "description": "The display name value.",
                  "type": "string"
                },
                "icon": {
                  "description": "The icon value.",
                  "type": "string"
                },
                "id": {
                  "description": "The id value.",
                  "type": "integer"
                },
                "is_default": {
                  "description": "The is default value.",
                  "type": "boolean"
                },
                "name": {
                  "description": "The name value.",
                  "type": "string"
                },
                "sort_order": {
                  "description": "The sort order value.",
                  "type": "integer"
                }
              },
              "required": [
                "color",
                "description",
                "display_description",
                "display_name",
                "icon",
                "id",
                "is_default",
                "name",
                "sort_order"
              ],
              "type": "object"
            },
            "type": "array"
          }
        },
        "required": [
          "data"
        ],
        "type": "object"
      },
      "GetQueryLanguageCatalogResult": {
        "additionalProperties": false,
        "properties": {
          "data": {
            "additionalProperties": false,
            "properties": {
              "fields": {
                "description": "The fields value.",
                "items": {
                  "additionalProperties": false,
                  "properties": {
                    "aliases": {
                      "description": "The aliases value.",
                      "items": {
                        "type": "string"
                      },
                      "type": "array"
                    },
                    "description": {
                      "description": "The description value.",
                      "type": "string"
                    },
                    "field_type": {
                      "description": "The field type value.",
                      "type": "string"
                    },
                    "label": {
                      "description": "The label value.",
                      "type": "string"
                    },
                    "name": {
                      "description": "The name value.",
                      "type": "string"
                    },
                    "operators": {
                      "description": "The operators value.",
                      "items": {
                        "type": "string"
                      },
                      "type": "array"
                    },
                    "value_help": {
                      "additionalProperties": false,
                      "description": "The value help value.",
                      "nullable": true,
                      "properties": {
                        "source": {
                          "description": "The source value.",
                          "type": "string"
                        },
                        "value_field": {
                          "description": "The value field value.",
                          "type": "string"
                        }
                      },
                      "required": [
                        "source",
                        "value_field"
                      ],
                      "type": "object"
                    },
                    "value_type": {
                      "description": "The value type value.",
                      "type": "string"
                    },
                    "values": {
                      "description": "The values value.",
                      "items": {
                        "additionalProperties": false,
                        "properties": {
                          "description": {
                            "description": "The description value.",
                            "type": "string"
                          },
                          "label": {
                            "description": "The label value.",
                            "type": "string"
                          },
                          "value": {
                            "description": "The value value."
                          }
                        },
                        "required": [
                          "label",
                          "value"
                        ],
                        "type": "object"
                      },
                      "type": "array"
                    }
                  },
                  "required": [
                    "aliases",
                    "label",
                    "name",
                    "operators",
                    "value_type"
                  ],
                  "type": "object"
                },
                "type": "array"
              },
              "logical_operators": {
                "description": "The logical operators value.",
                "items": {
                  "type": "string"
                },
                "type": "array"
              }
            },
            "required": [
              "fields",
              "logical_operators"
            ],
            "type": "object"
          }
        },
        "required": [
          "data"
        ],
        "type": "object"
      },
      "GetQueryLanguageValuesResult": {
        "additionalProperties": false,
        "properties": {
          "data": {
            "items": {
              "additionalProperties": false,
              "properties": {
                "description": {
                  "description": "The description value.",
                  "type": "string"
                },
                "label": {
                  "description": "The label value.",
                  "type": "string"
                },
                "value": {
                  "description": "The value value."
                }
              },
              "required": [
                "label",
                "value"
              ],
              "type": "object"
            },
            "type": "array"
          }
        },
        "required": [
          "data"
        ],
        "type": "object"
      },
      "GetStatusCategoriesCategoryIdResult": {
        "additionalProperties": false,
        "properties": {
          "data": {
            "additionalProperties": false,
            "properties": {
              "builtin_key": {
                "description": "The builtin key value.",
                "nullable": true,
                "type": "string"
              },
              "color": {
                "description": "The color value.",
                "type": "string"
              },
              "description": {
                "description": "The description value.",
                "type": "string"
              },
              "display_description": {
                "description": "The display description value.",
                "type": "string"
              },
              "display_name": {
                "description": "The display name value.",
                "type": "string"
              },
              "id": {
                "description": "The id value.",
                "type": "integer"
              },
              "is_completed": {
                "description": "The is completed value.",
                "type": "boolean"
              },
              "is_default": {
                "description": "The is default value.",
                "type": "boolean"
              },
              "name": {
                "description": "The name value.",
                "type": "string"
              }
            },
            "required": [
              "color",
              "description",
              "display_description",
              "display_name",
              "id",
              "is_completed",
              "is_default",
              "name"
            ],
            "type": "object"
          }
        },
        "required": [
          "data"
        ],
        "type": "object"
      },
      "GetStatusCategoriesResult": {
        "additionalProperties": false,
        "properties": {
          "data": {
            "items": {
              "additionalProperties": false,
              "properties": {
                "builtin_key": {
                  "description": "The builtin key value.",
                  "nullable": true,
                  "type": "string"
                },
                "color": {
                  "description": "The color value.",
                  "type": "string"
                },
                "description": {
                  "description": "The description value.",
                  "type": "string"
                },
                "display_description": {
                  "description": "The display description value.",
                  "type": "string"
                },
                "display_name": {
                  "description": "The display name value.",
                  "type": "string"
                },
                "id": {
                  "description": "The id value.",
                  "type": "integer"
                },
                "is_completed": {
                  "description": "The is completed value.",
                  "type": "boolean"
                },
                "is_default": {
                  "description": "The is default value.",
                  "type": "boolean"
                },
                "name": {
                  "description": "The name value.",
                  "type": "string"
                }
              },
              "required": [
                "color",
                "description",
                "display_description",
                "display_name",
                "id",
                "is_completed",
                "is_default",
                "name"
              ],
              "type": "object"
            },
            "type": "array"
          }
        },
        "required": [
          "data"
        ],
        "type": "object"
      },
      "GetStatusesResult": {
        "additionalProperties": false,
        "properties": {
          "data": {
            "items": {
              "additionalProperties": false,
              "properties": {
                "builtin_key": {
                  "description": "The builtin key value.",
                  "nullable": true,
                  "type": "string"
                },
                "category": {
                  "additionalProperties": false,
                  "description": "The category value.",
                  "properties": {
                    "builtin_key": {
                      "description": "The builtin key value.",
                      "nullable": true,
                      "type": "string"
                    },
                    "color": {
                      "description": "The color value.",
                      "type": "string"
                    },
                    "description": {
                      "description": "The description value.",
                      "type": "string"
                    },
                    "display_description": {
                      "description": "The display description value.",
                      "type": "string"
                    },
                    "display_name": {
                      "description": "The display name value.",
                      "type": "string"
                    },
                    "id": {
                      "description": "The id value.",
                      "type": "integer"
                    },
                    "is_completed": {
                      "description": "The is completed value.",
                      "type": "boolean"
                    },
                    "is_default": {
                      "description": "The is default value.",
                      "type": "boolean"
                    },
                    "name": {
                      "description": "The name value.",
                      "type": "string"
                    }
                  },
                  "required": [
                    "color",
                    "description",
                    "display_description",
                    "display_name",
                    "id",
                    "is_completed",
                    "is_default",
                    "name"
                  ],
                  "type": "object"
                },
                "description": {
                  "description": "The description value.",
                  "type": "string"
                },
                "display_description": {
                  "description": "The display description value.",
                  "type": "string"
                },
                "display_name": {
                  "description": "The display name value.",
                  "type": "string"
                },
                "id": {
                  "description": "The id value.",
                  "type": "integer"
                },
                "is_default": {
                  "description": "The is default value.",
                  "type": "boolean"
                },
                "name": {
                  "description": "The name value.",
                  "type": "string"
                }
              },
              "required": [
                "category",
                "description",
                "display_description",
                "display_name",
                "id",
                "is_default",
                "name"
              ],
              "type": "object"
            },
            "type": "array"
          }
        },
        "required": [
          "data"
        ],
        "type": "object"
      },
      "GetStatusesStatusIdResult": {
        "additionalProperties": false,
        "properties": {
          "data": {
            "additionalProperties": false,
            "properties": {
              "builtin_key": {
                "description": "The builtin key value.",
                "nullable": true,
                "type": "string"
              },
              "category": {
                "additionalProperties": false,
                "description": "The category value.",
                "properties": {
                  "builtin_key": {
                    "description": "The builtin key value.",
                    "nullable": true,
                    "type": "string"
                  },
                  "color": {
                    "description": "The color value.",
                    "type": "string"
                  },
                  "description": {
                    "description": "The description value.",
                    "type": "string"
                  },
                  "display_description": {
                    "description": "The display description value.",
                    "type": "string"
                  },
                  "display_name": {
                    "description": "The display name value.",
                    "type": "string"
                  },
                  "id": {
                    "description": "The id value.",
                    "type": "integer"
                  },
                  "is_completed": {
                    "description": "The is completed value.",
                    "type": "boolean"
                  },
                  "is_default": {
                    "description": "The is default value.",
                    "type": "boolean"
                  },
                  "name": {
                    "description": "The name value.",
                    "type": "string"
                  }
                },
                "required": [
                  "color",
                  "description",
                  "display_description",
                  "display_name",
                  "id",
                  "is_completed",
                  "is_default",
                  "name"
                ],
                "type": "object"
              },
              "description": {
                "description": "The description value.",
                "type": "string"
              },
              "display_description": {
                "description": "The display description value.",
                "type": "string"
              },
              "display_name": {
                "description": "The display name value.",
                "type": "string"
              },
              "id": {
                "description": "The id value.",
                "type": "integer"
              },
              "is_default": {
                "description": "The is default value.",
                "type": "boolean"
              },
              "name": {
                "description": "The name value.",
                "type": "string"
              }
            },
            "required": [
              "category",
              "description",
              "display_description",
              "display_name",
              "id",
              "is_default",
              "name"
            ],
            "type": "object"
          }
        },
        "required": [
          "data"
        ],
        "type": "object"
      },
      "GetTestCasesTestCaseIdLinksResult": {
        "additionalProperties": false,
        "properties": {
          "data": {
            "additionalProperties": false,
            "properties": {
              "incoming": {
                "description": "The incoming value.",
                "items": {
                  "additionalProperties": false,
                  "properties": {
                    "created_at": {
                      "description": "The created at value.",
                      "format": "date-time",
                      "type": "string"
                    },
                    "created_by": {
                      "description": "The created by value.",
                      "nullable": true,
                      "type": "integer"
                    },
                    "created_by_name": {
                      "description": "The created by name value.",
                      "type": "string"
                    },
                    "custom_field_id": {
                      "description": "The custom field id value.",
                      "nullable": true,
                      "type": "integer"
                    },
                    "custom_field_name": {
                      "description": "The custom field name value.",
                      "type": "string"
                    },
                    "id": {
                      "description": "The id value.",
                      "type": "integer"
                    },
                    "link_type_color": {
                      "description": "The link type color value.",
                      "type": "string"
                    },
                    "link_type_forward_label": {
                      "description": "The link type forward label value.",
                      "type": "string"
                    },
                    "link_type_id": {
                      "description": "The link type id value.",
                      "type": "integer"
                    },
                    "link_type_name": {
                      "description": "The link type name value.",
                      "type": "string"
                    },
                    "link_type_reverse_label": {
                      "description": "The link type reverse label value.",
                      "type": "string"
                    },
                    "source_id": {
                      "description": "The source id value.",
                      "type": "integer"
                    },
                    "source_item_number": {
                      "description": "The source item number value.",
                      "nullable": true,
                      "type": "integer"
                    },
                    "source_item_type_color": {
                      "description": "The source item type color value.",
                      "type": "string"
                    },
                    "source_item_type_icon": {
                      "description": "The source item type icon value.",
                      "type": "string"
                    },
                    "source_item_type_id": {
                      "description": "The source item type id value.",
                      "nullable": true,
                      "type": "integer"
                    },
                    "source_item_type_name": {
                      "description": "The source item type name value.",
                      "type": "string"
                    },
                    "source_status_color": {
                      "description": "The source status color value.",
                      "type": "string"
                    },
                    "source_status_id": {
                      "description": "The source status id value.",
                      "nullable": true,
                      "type": "integer"
                    },
                    "source_status_name": {
                      "description": "The source status name value.",
                      "type": "string"
                    },
                    "source_title": {
                      "description": "The source title value.",
                      "type": "string"
                    },
                    "source_type": {
                      "description": "The source type value.",
                      "type": "string"
                    },
                    "source_workspace_id": {
                      "description": "The source workspace id value.",
                      "nullable": true,
                      "type": "integer"
                    },
                    "source_workspace_key": {
                      "description": "The source workspace key value.",
                      "type": "string"
                    },
                    "target_id": {
                      "description": "The target id value.",
                      "type": "integer"
                    },
                    "target_item_number": {
                      "description": "The target item number value.",
                      "nullable": true,
                      "type": "integer"
                    },
                    "target_item_type_color": {
                      "description": "The target item type color value.",
                      "type": "string"
                    },
                    "target_item_type_icon": {
                      "description": "The target item type icon value.",
                      "type": "string"
                    },
                    "target_item_type_id": {
                      "description": "The target item type id value.",
                      "nullable": true,
                      "type": "integer"
                    },
                    "target_item_type_name": {
                      "description": "The target item type name value.",
                      "type": "string"
                    },
                    "target_status_color": {
                      "description": "The target status color value.",
                      "type": "string"
                    },
                    "target_status_id": {
                      "description": "The target status id value.",
                      "nullable": true,
                      "type": "integer"
                    },
                    "target_status_name": {
                      "description": "The target status name value.",
                      "type": "string"
                    },
                    "target_title": {
                      "description": "The target title value.",
                      "type": "string"
                    },
                    "target_type": {
                      "description": "The target type value.",
                      "type": "string"
                    },
                    "target_workspace_id": {
                      "description": "The target workspace id value.",
                      "nullable": true,
                      "type": "integer"
                    },
                    "target_workspace_key": {
                      "description": "The target workspace key value.",
                      "type": "string"
                    }
                  },
                  "required": [
                    "created_at",
                    "id",
                    "link_type_id",
                    "source_id",
                    "source_type",
                    "target_id",
                    "target_type"
                  ],
                  "type": "object"
                },
                "type": "array"
              },
              "outgoing": {
                "description": "The outgoing value.",
                "items": {
                  "additionalProperties": false,
                  "properties": {
                    "created_at": {
                      "description": "The created at value.",
                      "format": "date-time",
                      "type": "string"
                    },
                    "created_by": {
                      "description": "The created by value.",
                      "nullable": true,
                      "type": "integer"
                    },
                    "created_by_name": {
                      "description": "The created by name value.",
                      "type": "string"
                    },
                    "custom_field_id": {
                      "description": "The custom field id value.",
                      "nullable": true,
                      "type": "integer"
                    },
                    "custom_field_name": {
                      "description": "The custom field name value.",
                      "type": "string"
                    },
                    "id": {
                      "description": "The id value.",
                      "type": "integer"
                    },
                    "link_type_color": {
                      "description": "The link type color value.",
                      "type": "string"
                    },
                    "link_type_forward_label": {
                      "description": "The link type forward label value.",
                      "type": "string"
                    },
                    "link_type_id": {
                      "description": "The link type id value.",
                      "type": "integer"
                    },
                    "link_type_name": {
                      "description": "The link type name value.",
                      "type": "string"
                    },
                    "link_type_reverse_label": {
                      "description": "The link type reverse label value.",
                      "type": "string"
                    },
                    "source_id": {
                      "description": "The source id value.",
                      "type": "integer"
                    },
                    "source_item_number": {
                      "description": "The source item number value.",
                      "nullable": true,
                      "type": "integer"
                    },
                    "source_item_type_color": {
                      "description": "The source item type color value.",
                      "type": "string"
                    },
                    "source_item_type_icon": {
                      "description": "The source item type icon value.",
                      "type": "string"
                    },
                    "source_item_type_id": {
                      "description": "The source item type id value.",
                      "nullable": true,
                      "type": "integer"
                    },
                    "source_item_type_name": {
                      "description": "The source item type name value.",
                      "type": "string"
                    },
                    "source_status_color": {
                      "description": "The source status color value.",
                      "type": "string"
                    },
                    "source_status_id": {
                      "description": "The source status id value.",
                      "nullable": true,
                      "type": "integer"
                    },
                    "source_status_name": {
                      "description": "The source status name value.",
                      "type": "string"
                    },
                    "source_title": {
                      "description": "The source title value.",
                      "type": "string"
                    },
                    "source_type": {
                      "description": "The source type value.",
                      "type": "string"
                    },
                    "source_workspace_id": {
                      "description": "The source workspace id value.",
                      "nullable": true,
                      "type": "integer"
                    },
                    "source_workspace_key": {
                      "description": "The source workspace key value.",
                      "type": "string"
                    },
                    "target_id": {
                      "description": "The target id value.",
                      "type": "integer"
                    },
                    "target_item_number": {
                      "description": "The target item number value.",
                      "nullable": true,
                      "type": "integer"
                    },
                    "target_item_type_color": {
                      "description": "The target item type color value.",
                      "type": "string"
                    },
                    "target_item_type_icon": {
                      "description": "The target item type icon value.",
                      "type": "string"
                    },
                    "target_item_type_id": {
                      "description": "The target item type id value.",
                      "nullable": true,
                      "type": "integer"
                    },
                    "target_item_type_name": {
                      "description": "The target item type name value.",
                      "type": "string"
                    },
                    "target_status_color": {
                      "description": "The target status color value.",
                      "type": "string"
                    },
                    "target_status_id": {
                      "description": "The target status id value.",
                      "nullable": true,
                      "type": "integer"
                    },
                    "target_status_name": {
                      "description": "The target status name value.",
                      "type": "string"
                    },
                    "target_title": {
                      "description": "The target title value.",
                      "type": "string"
                    },
                    "target_type": {
                      "description": "The target type value.",
                      "type": "string"
                    },
                    "target_workspace_id": {
                      "description": "The target workspace id value.",
                      "nullable": true,
                      "type": "integer"
                    },
                    "target_workspace_key": {
                      "description": "The target workspace key value.",
                      "type": "string"
                    }
                  },
                  "required": [
                    "created_at",
                    "id",
                    "link_type_id",
                    "source_id",
                    "source_type",
                    "target_id",
                    "target_type"
                  ],
                  "type": "object"
                },
                "type": "array"
              }
            },
            "required": [
              "incoming",
              "outgoing"
            ],
            "type": "object"
          }
        },
        "required": [
          "data"
        ],
        "type": "object"
      },
      "GetTimeProjectCategoriesCategoryIdResult": {
        "additionalProperties": false,
        "properties": {
          "data": {
            "additionalProperties": false,
            "properties": {
              "color": {
                "description": "The color value.",
                "type": "string"
              },
              "created_at": {
                "description": "The created at value.",
                "type": "string"
              },
              "description": {
                "description": "The description value.",
                "type": "string"
              },
              "display_order": {
                "description": "The display order value.",
                "type": "integer"
              },
              "id": {
                "description": "The id value.",
                "type": "integer"
              },
              "name": {
                "description": "The name value.",
                "type": "string"
              },
              "updated_at": {
                "description": "The updated at value.",
                "type": "string"
              }
            },
            "required": [
              "color",
              "created_at",
              "description",
              "display_order",
              "id",
              "name",
              "updated_at"
            ],
            "type": "object"
          }
        },
        "required": [
          "data"
        ],
        "type": "object"
      },
      "GetTimeProjectCategoriesResult": {
        "additionalProperties": false,
        "properties": {
          "data": {
            "items": {
              "additionalProperties": false,
              "properties": {
                "color": {
                  "description": "The color value.",
                  "type": "string"
                },
                "created_at": {
                  "description": "The created at value.",
                  "type": "string"
                },
                "description": {
                  "description": "The description value.",
                  "type": "string"
                },
                "display_order": {
                  "description": "The display order value.",
                  "type": "integer"
                },
                "id": {
                  "description": "The id value.",
                  "type": "integer"
                },
                "name": {
                  "description": "The name value.",
                  "type": "string"
                },
                "updated_at": {
                  "description": "The updated at value.",
                  "type": "string"
                }
              },
              "required": [
                "color",
                "created_at",
                "description",
                "display_order",
                "id",
                "name",
                "updated_at"
              ],
              "type": "object"
            },
            "type": "array"
          }
        },
        "required": [
          "data"
        ],
        "type": "object"
      },
      "GetTimeProjectsProjectIdManagersResult": {
        "additionalProperties": false,
        "properties": {
          "data": {
            "items": {
              "additionalProperties": false,
              "properties": {
                "email": {
                  "description": "The email value.",
                  "type": "string"
                },
                "granted_at": {
                  "description": "The granted at value.",
                  "type": "string"
                },
                "granted_by": {
                  "description": "The granted by value.",
                  "nullable": true,
                  "type": "integer"
                },
                "id": {
                  "description": "The id value.",
                  "type": "integer"
                },
                "name": {
                  "description": "The name value.",
                  "type": "string"
                },
                "principal_id": {
                  "description": "The principal id value.",
                  "type": "integer"
                },
                "principal_type": {
                  "description": "The principal type value.",
                  "type": "string"
                },
                "project_id": {
                  "description": "The project id value.",
                  "type": "integer"
                }
              },
              "required": [
                "email",
                "granted_at",
                "id",
                "name",
                "principal_id",
                "principal_type",
                "project_id"
              ],
              "type": "object"
            },
            "type": "array"
          }
        },
        "required": [
          "data"
        ],
        "type": "object"
      },
      "GetTimeProjectsProjectIdMembersResult": {
        "additionalProperties": false,
        "properties": {
          "data": {
            "items": {
              "additionalProperties": false,
              "properties": {
                "email": {
                  "description": "The email value.",
                  "type": "string"
                },
                "granted_at": {
                  "description": "The granted at value.",
                  "type": "string"
                },
                "granted_by": {
                  "description": "The granted by value.",
                  "nullable": true,
                  "type": "integer"
                },
                "id": {
                  "description": "The id value.",
                  "type": "integer"
                },
                "name": {
                  "description": "The name value.",
                  "type": "string"
                },
                "principal_id": {
                  "description": "The principal id value.",
                  "type": "integer"
                },
                "principal_type": {
                  "description": "The principal type value.",
                  "type": "string"
                },
                "project_id": {
                  "description": "The project id value.",
                  "type": "integer"
                }
              },
              "required": [
                "email",
                "granted_at",
                "id",
                "name",
                "principal_id",
                "principal_type",
                "project_id"
              ],
              "type": "object"
            },
            "type": "array"
          }
        },
        "required": [
          "data"
        ],
        "type": "object"
      },
      "GetTimeProjectsProjectIdResult": {
        "additionalProperties": false,
        "properties": {
          "data": {
            "additionalProperties": false,
            "properties": {
              "category_color": {
                "description": "The category color value.",
                "type": "string"
              },
              "category_id": {
                "description": "The category id value.",
                "nullable": true,
                "type": "integer"
              },
              "category_name": {
                "description": "The category name value.",
                "type": "string"
              },
              "color": {
                "description": "The color value.",
                "type": "string"
              },
              "created_at": {
                "description": "The created at value.",
                "type": "string"
              },
              "customer_id": {
                "description": "The customer id value.",
                "nullable": true,
                "type": "integer"
              },
              "customer_name": {
                "description": "The customer name value.",
                "type": "string"
              },
              "description": {
                "description": "The description value.",
                "type": "string"
              },
              "hourly_rate": {
                "description": "The hourly rate value.",
                "type": "number"
              },
              "id": {
                "description": "The id value.",
                "type": "integer"
              },
              "name": {
                "description": "The name value.",
                "type": "string"
              },
              "settings": {
                "additionalProperties": {
                  "description": "Arbitrary JSON extension value."
                },
                "description": "The settings value.",
                "type": "object"
              },
              "status": {
                "description": "The status value.",
                "type": "string"
              },
              "total_hours": {
                "description": "The total hours value.",
                "nullable": true,
                "type": "number"
              },
              "updated_at": {
                "description": "The updated at value.",
                "type": "string"
              }
            },
            "required": [
              "category_color",
              "category_name",
              "color",
              "created_at",
              "customer_name",
              "description",
              "hourly_rate",
              "id",
              "name",
              "settings",
              "status",
              "updated_at"
            ],
            "type": "object"
          }
        },
        "required": [
          "data"
        ],
        "type": "object"
      },
      "GetTimeProjectsProjectIdWorklogsResult": {
        "additionalProperties": false,
        "properties": {
          "data": {
            "items": {
              "additionalProperties": false,
              "properties": {
                "created_at": {
                  "description": "The created at value.",
                  "type": "integer"
                },
                "customer_id": {
                  "description": "The customer id value.",
                  "type": "integer"
                },
                "customer_name": {
                  "description": "The customer name value.",
                  "type": "string"
                },
                "date": {
                  "description": "The date value.",
                  "type": "integer"
                },
                "description": {
                  "description": "The description value.",
                  "type": "string"
                },
                "duration_minutes": {
                  "description": "The duration minutes value.",
                  "type": "integer"
                },
                "end_time": {
                  "description": "The end time value.",
                  "type": "integer"
                },
                "id": {
                  "description": "The id value.",
                  "type": "integer"
                },
                "item_id": {
                  "description": "The item id value.",
                  "nullable": true,
                  "type": "integer"
                },
                "item_title": {
                  "description": "The item title value.",
                  "type": "string"
                },
                "project_id": {
                  "description": "The project id value.",
                  "type": "integer"
                },
                "project_max_hours": {
                  "description": "The project max hours value.",
                  "nullable": true,
                  "type": "number"
                },
                "project_name": {
                  "description": "The project name value.",
                  "type": "string"
                },
                "project_total_hours": {
                  "description": "The project total hours value.",
                  "nullable": true,
                  "type": "number"
                },
                "start_time": {
                  "description": "The start time value.",
                  "type": "integer"
                },
                "updated_at": {
                  "description": "The updated at value.",
                  "type": "integer"
                },
                "user_id": {
                  "description": "The user id value.",
                  "nullable": true,
                  "type": "integer"
                },
                "user_name": {
                  "description": "The user name value.",
                  "type": "string"
                },
                "warnings": {
                  "description": "The warnings value.",
                  "items": {
                    "type": "string"
                  },
                  "type": "array"
                },
                "workspace_id": {
                  "description": "The workspace id value.",
                  "nullable": true,
                  "type": "integer"
                },
                "workspace_item_number": {
                  "description": "The workspace item number value.",
                  "type": "integer"
                },
                "workspace_key": {
                  "description": "The workspace key value.",
                  "type": "string"
                }
              },
              "required": [
                "created_at",
                "customer_id",
                "customer_name",
                "date",
                "description",
                "duration_minutes",
                "end_time",
                "id",
                "item_title",
                "project_id",
                "project_name",
                "start_time",
                "updated_at",
                "user_name",
                "workspace_item_number",
                "workspace_key"
              ],
              "type": "object"
            },
            "type": "array"
          },
          "pagination": {
            "$ref": "#/components/schemas/Pagination"
          }
        },
        "required": [
          "data",
          "pagination"
        ],
        "type": "object"
      },
      "GetTimeProjectsResult": {
        "additionalProperties": false,
        "properties": {
          "data": {
            "items": {
              "additionalProperties": false,
              "properties": {
                "category_color": {
                  "description": "The category color value.",
                  "type": "string"
                },
                "category_id": {
                  "description": "The category id value.",
                  "nullable": true,
                  "type": "integer"
                },
                "category_name": {
                  "description": "The category name value.",
                  "type": "string"
                },
                "color": {
                  "description": "The color value.",
                  "type": "string"
                },
                "created_at": {
                  "description": "The created at value.",
                  "type": "string"
                },
                "customer_id": {
                  "description": "The customer id value.",
                  "nullable": true,
                  "type": "integer"
                },
                "customer_name": {
                  "description": "The customer name value.",
                  "type": "string"
                },
                "description": {
                  "description": "The description value.",
                  "type": "string"
                },
                "hourly_rate": {
                  "description": "The hourly rate value.",
                  "type": "number"
                },
                "id": {
                  "description": "The id value.",
                  "type": "integer"
                },
                "name": {
                  "description": "The name value.",
                  "type": "string"
                },
                "settings": {
                  "additionalProperties": {
                    "description": "Arbitrary JSON extension value."
                  },
                  "description": "The settings value.",
                  "type": "object"
                },
                "status": {
                  "description": "The status value.",
                  "type": "string"
                },
                "total_hours": {
                  "description": "The total hours value.",
                  "nullable": true,
                  "type": "number"
                },
                "updated_at": {
                  "description": "The updated at value.",
                  "type": "string"
                }
              },
              "required": [
                "category_color",
                "category_name",
                "color",
                "created_at",
                "customer_name",
                "description",
                "hourly_rate",
                "id",
                "name",
                "settings",
                "status",
                "updated_at"
              ],
              "type": "object"
            },
            "type": "array"
          }
        },
        "required": [
          "data"
        ],
        "type": "object"
      },
      "GetTimeTimersActiveResult": {
        "additionalProperties": false,
        "properties": {
          "data": {
            "additionalProperties": false,
            "nullable": true,
            "properties": {
              "created_at": {
                "description": "The created at value.",
                "type": "integer"
              },
              "customer_name": {
                "description": "The customer name value.",
                "nullable": true,
                "type": "string"
              },
              "description": {
                "description": "The description value.",
                "type": "string"
              },
              "id": {
                "description": "The id value.",
                "type": "integer"
              },
              "item_id": {
                "description": "The item id value.",
                "nullable": true,
                "type": "integer"
              },
              "item_title": {
                "description": "The item title value.",
                "nullable": true,
                "type": "string"
              },
              "project_id": {
                "description": "The project id value.",
                "type": "integer"
              },
              "project_name": {
                "description": "The project name value.",
                "nullable": true,
                "type": "string"
              },
              "start_time_utc": {
                "description": "The start time utc value.",
                "type": "integer"
              },
              "user_id": {
                "description": "The user id value.",
                "type": "integer"
              },
              "workspace_id": {
                "description": "The workspace id value.",
                "type": "integer"
              },
              "workspace_item_number": {
                "description": "The workspace item number value.",
                "nullable": true,
                "type": "integer"
              },
              "workspace_key": {
                "description": "The workspace key value.",
                "nullable": true,
                "type": "string"
              },
              "workspace_name": {
                "description": "The workspace name value.",
                "nullable": true,
                "type": "string"
              }
            },
            "required": [
              "created_at",
              "description",
              "id",
              "project_id",
              "start_time_utc",
              "user_id",
              "workspace_id"
            ],
            "type": "object"
          }
        },
        "required": [
          "data"
        ],
        "type": "object"
      },
      "GetTimeWorklogsResult": {
        "additionalProperties": false,
        "properties": {
          "data": {
            "items": {
              "additionalProperties": false,
              "properties": {
                "created_at": {
                  "description": "The created at value.",
                  "type": "integer"
                },
                "customer_id": {
                  "description": "The customer id value.",
                  "type": "integer"
                },
                "customer_name": {
                  "description": "The customer name value.",
                  "type": "string"
                },
                "date": {
                  "description": "The date value.",
                  "type": "integer"
                },
                "description": {
                  "description": "The description value.",
                  "type": "string"
                },
                "duration_minutes": {
                  "description": "The duration minutes value.",
                  "type": "integer"
                },
                "end_time": {
                  "description": "The end time value.",
                  "type": "integer"
                },
                "id": {
                  "description": "The id value.",
                  "type": "integer"
                },
                "item_id": {
                  "description": "The item id value.",
                  "nullable": true,
                  "type": "integer"
                },
                "item_title": {
                  "description": "The item title value.",
                  "type": "string"
                },
                "project_id": {
                  "description": "The project id value.",
                  "type": "integer"
                },
                "project_max_hours": {
                  "description": "The project max hours value.",
                  "nullable": true,
                  "type": "number"
                },
                "project_name": {
                  "description": "The project name value.",
                  "type": "string"
                },
                "project_total_hours": {
                  "description": "The project total hours value.",
                  "nullable": true,
                  "type": "number"
                },
                "start_time": {
                  "description": "The start time value.",
                  "type": "integer"
                },
                "updated_at": {
                  "description": "The updated at value.",
                  "type": "integer"
                },
                "user_id": {
                  "description": "The user id value.",
                  "nullable": true,
                  "type": "integer"
                },
                "user_name": {
                  "description": "The user name value.",
                  "type": "string"
                },
                "warnings": {
                  "description": "The warnings value.",
                  "items": {
                    "type": "string"
                  },
                  "type": "array"
                },
                "workspace_id": {
                  "description": "The workspace id value.",
                  "nullable": true,
                  "type": "integer"
                },
                "workspace_item_number": {
                  "description": "The workspace item number value.",
                  "type": "integer"
                },
                "workspace_key": {
                  "description": "The workspace key value.",
                  "type": "string"
                }
              },
              "required": [
                "created_at",
                "customer_id",
                "customer_name",
                "date",
                "description",
                "duration_minutes",
                "end_time",
                "id",
                "item_title",
                "project_id",
                "project_name",
                "start_time",
                "updated_at",
                "user_name",
                "workspace_item_number",
                "workspace_key"
              ],
              "type": "object"
            },
            "type": "array"
          },
          "pagination": {
            "$ref": "#/components/schemas/Pagination"
          }
        },
        "required": [
          "data",
          "pagination"
        ],
        "type": "object"
      },
      "GetTimeWorklogsWorklogIdResult": {
        "additionalProperties": false,
        "properties": {
          "data": {
            "additionalProperties": false,
            "properties": {
              "created_at": {
                "description": "The created at value.",
                "type": "integer"
              },
              "customer_id": {
                "description": "The customer id value.",
                "type": "integer"
              },
              "customer_name": {
                "description": "The customer name value.",
                "type": "string"
              },
              "date": {
                "description": "The date value.",
                "type": "integer"
              },
              "description": {
                "description": "The description value.",
                "type": "string"
              },
              "duration_minutes": {
                "description": "The duration minutes value.",
                "type": "integer"
              },
              "end_time": {
                "description": "The end time value.",
                "type": "integer"
              },
              "id": {
                "description": "The id value.",
                "type": "integer"
              },
              "item_id": {
                "description": "The item id value.",
                "nullable": true,
                "type": "integer"
              },
              "item_title": {
                "description": "The item title value.",
                "type": "string"
              },
              "project_id": {
                "description": "The project id value.",
                "type": "integer"
              },
              "project_max_hours": {
                "description": "The project max hours value.",
                "nullable": true,
                "type": "number"
              },
              "project_name": {
                "description": "The project name value.",
                "type": "string"
              },
              "project_total_hours": {
                "description": "The project total hours value.",
                "nullable": true,
                "type": "number"
              },
              "start_time": {
                "description": "The start time value.",
                "type": "integer"
              },
              "updated_at": {
                "description": "The updated at value.",
                "type": "integer"
              },
              "user_id": {
                "description": "The user id value.",
                "nullable": true,
                "type": "integer"
              },
              "user_name": {
                "description": "The user name value.",
                "type": "string"
              },
              "warnings": {
                "description": "The warnings value.",
                "items": {
                  "type": "string"
                },
                "type": "array"
              },
              "workspace_id": {
                "description": "The workspace id value.",
                "nullable": true,
                "type": "integer"
              },
              "workspace_item_number": {
                "description": "The workspace item number value.",
                "type": "integer"
              },
              "workspace_key": {
                "description": "The workspace key value.",
                "type": "string"
              }
            },
            "required": [
              "created_at",
              "customer_id",
              "customer_name",
              "date",
              "description",
              "duration_minutes",
              "end_time",
              "id",
              "item_title",
              "project_id",
              "project_name",
              "start_time",
              "updated_at",
              "user_name",
              "workspace_item_number",
              "workspace_key"
            ],
            "type": "object"
          }
        },
        "required": [
          "data"
        ],
        "type": "object"
      },
      "GetTransitionsTransitionIdGovernanceResult": {
        "additionalProperties": false,
        "properties": {
          "data": {
            "additionalProperties": false,
            "properties": {
              "approval_drivers": {
                "description": "The approval drivers value.",
                "items": {
                  "additionalProperties": false,
                  "properties": {
                    "approval_set_id": {
                      "description": "The approval set id value.",
                      "type": "integer"
                    },
                    "approval_set_name": {
                      "description": "The approval set name value.",
                      "type": "string"
                    },
                    "approval_set_status_id": {
                      "description": "The approval set status id value.",
                      "type": "integer"
                    },
                    "role": {
                      "description": "The role value.",
                      "type": "string"
                    }
                  },
                  "required": [
                    "approval_set_id",
                    "approval_set_name",
                    "approval_set_status_id",
                    "role"
                  ],
                  "type": "object"
                },
                "type": "array"
              },
              "conditions": {
                "description": "The conditions value.",
                "items": {
                  "additionalProperties": false,
                  "properties": {
                    "condition_count": {
                      "description": "The condition count value.",
                      "type": "integer"
                    },
                    "condition_set_id": {
                      "description": "The condition set id value.",
                      "type": "integer"
                    },
                    "condition_set_name": {
                      "description": "The condition set name value.",
                      "type": "string"
                    }
                  },
                  "required": [
                    "condition_count",
                    "condition_set_id",
                    "condition_set_name"
                  ],
                  "type": "object"
                },
                "type": "array"
              },
              "from_status_id": {
                "description": "The from status id value.",
                "nullable": true,
                "type": "integer"
              },
              "from_status_name": {
                "description": "The from status name value.",
                "type": "string"
              },
              "to_status_id": {
                "description": "The to status id value.",
                "type": "integer"
              },
              "to_status_name": {
                "description": "The to status name value.",
                "type": "string"
              },
              "transition_id": {
                "description": "The transition id value.",
                "type": "integer"
              }
            },
            "required": [
              "approval_drivers",
              "conditions",
              "from_status_name",
              "to_status_id",
              "to_status_name",
              "transition_id"
            ],
            "type": "object"
          }
        },
        "required": [
          "data"
        ],
        "type": "object"
      },
      "GetUsersMePreferencesResult": {
        "additionalProperties": false,
        "properties": {
          "data": {
            "additionalProperties": false,
            "properties": {
              "color_mode": {
                "description": "The color mode value.",
                "type": "string"
              },
              "theme": {
                "additionalProperties": false,
                "description": "The theme value.",
                "nullable": true,
                "properties": {
                  "builtin_key": {
                    "description": "The builtin key value.",
                    "type": "string"
                  },
                  "created_at": {
                    "description": "The created at value.",
                    "format": "date-time",
                    "type": "string"
                  },
                  "description": {
                    "description": "The description value.",
                    "type": "string"
                  },
                  "display_description": {
                    "description": "The display description value.",
                    "type": "string"
                  },
                  "display_name": {
                    "description": "The display name value.",
                    "type": "string"
                  },
                  "id": {
                    "description": "The id value.",
                    "type": "integer"
                  },
                  "is_active": {
                    "description": "The is active value.",
                    "type": "boolean"
                  },
                  "is_default": {
                    "description": "The is default value.",
                    "type": "boolean"
                  },
                  "name": {
                    "description": "The name value.",
                    "type": "string"
                  },
                  "nav_background_color_dark": {
                    "description": "The nav background color dark value.",
                    "type": "string"
                  },
                  "nav_background_color_light": {
                    "description": "The nav background color light value.",
                    "type": "string"
                  },
                  "nav_text_color_dark": {
                    "description": "The nav text color dark value.",
                    "type": "string"
                  },
                  "nav_text_color_light": {
                    "description": "The nav text color light value.",
                    "type": "string"
                  },
                  "updated_at": {
                    "description": "The updated at value.",
                    "format": "date-time",
                    "type": "string"
                  }
                },
                "required": [
                  "created_at",
                  "description",
                  "display_name",
                  "id",
                  "is_active",
                  "is_default",
                  "name",
                  "nav_background_color_dark",
                  "nav_background_color_light",
                  "nav_text_color_dark",
                  "nav_text_color_light",
                  "updated_at"
                ],
                "type": "object"
              },
              "theme_id": {
                "description": "The theme id value.",
                "nullable": true,
                "type": "integer"
              },
              "tui": {
                "additionalProperties": false,
                "description": "The tui value.",
                "properties": {
                  "last_workspace_id": {
                    "description": "The last workspace id value.",
                    "nullable": true,
                    "type": "integer"
                  },
                  "split_ratio": {
                    "description": "The split ratio value.",
                    "nullable": true,
                    "type": "number"
                  },
                  "theme": {
                    "description": "The theme value.",
                    "type": "string"
                  }
                },
                "type": "object"
              }
            },
            "required": [
              "color_mode",
              "tui"
            ],
            "type": "object"
          }
        },
        "required": [
          "data"
        ],
        "type": "object"
      },
      "GetUsersMeResult": {
        "additionalProperties": false,
        "properties": {
          "data": {
            "additionalProperties": false,
            "properties": {
              "agent_presence": {
                "description": "The agent presence value.",
                "type": "string"
              },
              "avatar_url": {
                "description": "The avatar url value.",
                "nullable": true,
                "type": "string"
              },
              "created_at": {
                "description": "The created at value.",
                "type": "string"
              },
              "email": {
                "description": "The email value.",
                "type": "string"
              },
              "first_name": {
                "description": "The first name value.",
                "type": "string"
              },
              "full_name": {
                "description": "The full name value.",
                "type": "string"
              },
              "id": {
                "description": "The id value.",
                "type": "integer"
              },
              "is_active": {
                "description": "The is active value.",
                "type": "boolean"
              },
              "is_agent": {
                "description": "The is agent value.",
                "type": "boolean"
              },
              "language": {
                "description": "The language value.",
                "type": "string"
              },
              "last_name": {
                "description": "The last name value.",
                "type": "string"
              },
              "timezone": {
                "description": "The timezone value.",
                "type": "string"
              },
              "username": {
                "description": "The username value.",
                "type": "string"
              }
            },
            "required": [
              "agent_presence",
              "created_at",
              "email",
              "first_name",
              "full_name",
              "id",
              "is_active",
              "is_agent",
              "language",
              "last_name",
              "timezone",
              "username"
            ],
            "type": "object"
          }
        },
        "required": [
          "data"
        ],
        "type": "object"
      },
      "GetUsersResult": {
        "additionalProperties": false,
        "properties": {
          "data": {
            "items": {
              "additionalProperties": false,
              "properties": {
                "agent_presence": {
                  "description": "The agent presence value.",
                  "type": "string"
                },
                "avatar_url": {
                  "description": "The avatar url value.",
                  "nullable": true,
                  "type": "string"
                },
                "created_at": {
                  "description": "The created at value.",
                  "type": "string"
                },
                "first_name": {
                  "description": "The first name value.",
                  "type": "string"
                },
                "full_name": {
                  "description": "The full name value.",
                  "type": "string"
                },
                "id": {
                  "description": "The id value.",
                  "type": "integer"
                },
                "is_active": {
                  "description": "The is active value.",
                  "type": "boolean"
                },
                "is_agent": {
                  "description": "The is agent value.",
                  "type": "boolean"
                },
                "last_name": {
                  "description": "The last name value.",
                  "type": "string"
                },
                "username": {
                  "description": "The username value.",
                  "type": "string"
                }
              },
              "required": [
                "agent_presence",
                "created_at",
                "first_name",
                "full_name",
                "id",
                "is_active",
                "is_agent",
                "last_name",
                "username"
              ],
              "type": "object"
            },
            "type": "array"
          },
          "pagination": {
            "$ref": "#/components/schemas/Pagination"
          }
        },
        "required": [
          "data",
          "pagination"
        ],
        "type": "object"
      },
      "GetUsersUserIdResult": {
        "additionalProperties": false,
        "properties": {
          "data": {
            "additionalProperties": false,
            "properties": {
              "agent_presence": {
                "description": "The agent presence value.",
                "type": "string"
              },
              "avatar_url": {
                "description": "The avatar url value.",
                "nullable": true,
                "type": "string"
              },
              "created_at": {
                "description": "The created at value.",
                "type": "string"
              },
              "first_name": {
                "description": "The first name value.",
                "type": "string"
              },
              "full_name": {
                "description": "The full name value.",
                "type": "string"
              },
              "id": {
                "description": "The id value.",
                "type": "integer"
              },
              "is_active": {
                "description": "The is active value.",
                "type": "boolean"
              },
              "is_agent": {
                "description": "The is agent value.",
                "type": "boolean"
              },
              "last_name": {
                "description": "The last name value.",
                "type": "string"
              },
              "username": {
                "description": "The username value.",
                "type": "string"
              }
            },
            "required": [
              "agent_presence",
              "created_at",
              "first_name",
              "full_name",
              "id",
              "is_active",
              "is_agent",
              "last_name",
              "username"
            ],
            "type": "object"
          }
        },
        "required": [
          "data"
        ],
        "type": "object"
      },
      "GetWorkflowsResult": {
        "additionalProperties": false,
        "properties": {
          "data": {
            "items": {
              "additionalProperties": false,
              "properties": {
                "builtin_key": {
                  "description": "The builtin key value.",
                  "nullable": true,
                  "type": "string"
                },
                "description": {
                  "description": "The description value.",
                  "type": "string"
                },
                "display_description": {
                  "description": "The display description value.",
                  "type": "string"
                },
                "display_name": {
                  "description": "The display name value.",
                  "type": "string"
                },
                "id": {
                  "description": "The id value.",
                  "type": "integer"
                },
                "is_default": {
                  "description": "The is default value.",
                  "type": "boolean"
                },
                "name": {
                  "description": "The name value.",
                  "type": "string"
                }
              },
              "required": [
                "description",
                "display_description",
                "display_name",
                "id",
                "is_default",
                "name"
              ],
              "type": "object"
            },
            "type": "array"
          }
        },
        "required": [
          "data"
        ],
        "type": "object"
      },
      "GetWorkflowsWorkflowIdApprovalSetsResult": {
        "additionalProperties": false,
        "properties": {
          "data": {
            "items": {
              "additionalProperties": false,
              "properties": {
                "created_at": {
                  "description": "The created at value.",
                  "format": "date-time",
                  "type": "string"
                },
                "description": {
                  "description": "The description value.",
                  "type": "string"
                },
                "gated_statuses": {
                  "description": "The gated statuses value.",
                  "items": {
                    "additionalProperties": false,
                    "properties": {
                      "category_color": {
                        "description": "The category color value.",
                        "type": "string"
                      },
                      "status_id": {
                        "description": "The status id value.",
                        "type": "integer"
                      },
                      "status_name": {
                        "description": "The status name value.",
                        "type": "string"
                      }
                    },
                    "required": [
                      "status_id",
                      "status_name"
                    ],
                    "type": "object"
                  },
                  "type": "array"
                },
                "id": {
                  "description": "The id value.",
                  "type": "integer"
                },
                "name": {
                  "description": "The name value.",
                  "type": "string"
                },
                "set_statuses": {
                  "description": "The set statuses value.",
                  "items": {
                    "additionalProperties": false,
                    "properties": {
                      "approval_set_id": {
                        "description": "The approval set id value.",
                        "type": "integer"
                      },
                      "approve_transition_id": {
                        "description": "The approve transition id value.",
                        "type": "integer"
                      },
                      "created_at": {
                        "description": "The created at value.",
                        "format": "date-time",
                        "type": "string"
                      },
                      "deny_transition_id": {
                        "description": "The deny transition id value.",
                        "type": "integer"
                      },
                      "id": {
                        "description": "The id value.",
                        "type": "integer"
                      },
                      "status_id": {
                        "description": "The status id value.",
                        "type": "integer"
                      },
                      "status_name": {
                        "description": "The status name value.",
                        "type": "string"
                      },
                      "step_mode": {
                        "description": "The step mode value.",
                        "type": "string"
                      },
                      "steps": {
                        "description": "The steps value.",
                        "items": {
                          "additionalProperties": false,
                          "properties": {
                            "allow_self_approval": {
                              "description": "The allow self approval value.",
                              "type": "boolean"
                            },
                            "approval_set_status_id": {
                              "description": "The approval set status id value.",
                              "type": "integer"
                            },
                            "approver_field_id": {
                              "description": "The approver field id value.",
                              "nullable": true,
                              "type": "integer"
                            },
                            "approver_field_identifier": {
                              "description": "The approver field identifier value.",
                              "type": "string"
                            },
                            "approver_group_id": {
                              "description": "The approver group id value.",
                              "nullable": true,
                              "type": "integer"
                            },
                            "approver_role_id": {
                              "description": "The approver role id value.",
                              "nullable": true,
                              "type": "integer"
                            },
                            "approver_source": {
                              "description": "The approver source value.",
                              "type": "string"
                            },
                            "approver_user_id": {
                              "description": "The approver user id value.",
                              "nullable": true,
                              "type": "integer"
                            },
                            "created_at": {
                              "description": "The created at value.",
                              "format": "date-time",
                              "type": "string"
                            },
                            "display_order": {
                              "description": "The display order value.",
                              "type": "integer"
                            },
                            "escalation_action": {
                              "description": "The escalation action value.",
                              "type": "string"
                            },
                            "escalation_after_hours": {
                              "description": "The escalation after hours value.",
                              "nullable": true,
                              "type": "integer"
                            },
                            "escalation_target_field_id": {
                              "description": "The escalation target field id value.",
                              "nullable": true,
                              "type": "integer"
                            },
                            "escalation_target_field_identifier": {
                              "description": "The escalation target field identifier value.",
                              "type": "string"
                            },
                            "escalation_target_group_id": {
                              "description": "The escalation target group id value.",
                              "nullable": true,
                              "type": "integer"
                            },
                            "escalation_target_role_id": {
                              "description": "The escalation target role id value.",
                              "nullable": true,
                              "type": "integer"
                            },
                            "escalation_target_source": {
                              "description": "The escalation target source value.",
                              "type": "string"
                            },
                            "escalation_target_user_id": {
                              "description": "The escalation target user id value.",
                              "nullable": true,
                              "type": "integer"
                            },
                            "id": {
                              "description": "The id value.",
                              "type": "integer"
                            },
                            "max_escalations": {
                              "description": "The max escalations value.",
                              "nullable": true,
                              "type": "integer"
                            },
                            "name": {
                              "description": "The name value.",
                              "type": "string"
                            },
                            "on_leave_strategy": {
                              "description": "The on leave strategy value.",
                              "type": "string"
                            },
                            "quorum_count": {
                              "description": "The quorum count value.",
                              "nullable": true,
                              "type": "integer"
                            },
                            "quorum_mode": {
                              "description": "The quorum mode value.",
                              "type": "string"
                            },
                            "quorum_percent": {
                              "description": "The quorum percent value.",
                              "nullable": true,
                              "type": "integer"
                            },
                            "rejection_policy": {
                              "description": "The rejection policy value.",
                              "type": "string"
                            }
                          },
                          "required": [
                            "allow_self_approval",
                            "approval_set_status_id",
                            "approver_source",
                            "created_at",
                            "display_order",
                            "id",
                            "name",
                            "on_leave_strategy",
                            "quorum_mode",
                            "rejection_policy"
                          ],
                          "type": "object"
                        },
                        "type": "array"
                      }
                    },
                    "required": [
                      "approval_set_id",
                      "approve_transition_id",
                      "created_at",
                      "deny_transition_id",
                      "id",
                      "status_id",
                      "step_mode"
                    ],
                    "type": "object"
                  },
                  "type": "array"
                },
                "updated_at": {
                  "description": "The updated at value.",
                  "format": "date-time",
                  "type": "string"
                },
                "workflow_id": {
                  "description": "The workflow id value.",
                  "type": "integer"
                },
                "workflow_name": {
                  "description": "The workflow name value.",
                  "type": "string"
                }
              },
              "required": [
                "created_at",
                "description",
                "id",
                "name",
                "updated_at",
                "workflow_id"
              ],
              "type": "object"
            },
            "type": "array"
          }
        },
        "required": [
          "data"
        ],
        "type": "object"
      },
      "GetWorkflowsWorkflowIdConditionSetsResult": {
        "additionalProperties": false,
        "properties": {
          "data": {
            "items": {
              "additionalProperties": false,
              "properties": {
                "created_at": {
                  "description": "The created at value.",
                  "format": "date-time",
                  "type": "string"
                },
                "description": {
                  "description": "The description value.",
                  "type": "string"
                },
                "gated_transitions": {
                  "description": "The gated transitions value.",
                  "items": {
                    "additionalProperties": false,
                    "properties": {
                      "from_status_name": {
                        "description": "The from status name value.",
                        "type": "string"
                      },
                      "to_status_name": {
                        "description": "The to status name value.",
                        "type": "string"
                      },
                      "transition_id": {
                        "description": "The transition id value.",
                        "type": "integer"
                      }
                    },
                    "required": [
                      "to_status_name",
                      "transition_id"
                    ],
                    "type": "object"
                  },
                  "type": "array"
                },
                "id": {
                  "description": "The id value.",
                  "type": "integer"
                },
                "name": {
                  "description": "The name value.",
                  "type": "string"
                },
                "transition_conditions": {
                  "description": "The transition conditions value.",
                  "items": {
                    "additionalProperties": false,
                    "properties": {
                      "condition_set_id": {
                        "description": "The condition set id value.",
                        "type": "integer"
                      },
                      "conditions": {
                        "description": "The conditions value.",
                        "items": {
                          "additionalProperties": false,
                          "properties": {
                            "condition_set_transition_id": {
                              "description": "The condition set transition id value.",
                              "type": "integer"
                            },
                            "condition_type": {
                              "description": "The condition type value.",
                              "type": "string"
                            },
                            "config": {
                              "description": "The config value.",
                              "format": "byte",
                              "type": "string"
                            },
                            "display_order": {
                              "description": "The display order value.",
                              "type": "integer"
                            },
                            "error_message": {
                              "description": "The error message value.",
                              "type": "string"
                            },
                            "id": {
                              "description": "The id value.",
                              "type": "integer"
                            },
                            "mode": {
                              "description": "The mode value.",
                              "type": "string"
                            }
                          },
                          "required": [
                            "condition_set_transition_id",
                            "condition_type",
                            "config",
                            "display_order",
                            "id",
                            "mode"
                          ],
                          "type": "object"
                        },
                        "type": "array"
                      },
                      "from_status_name": {
                        "description": "The from status name value.",
                        "type": "string"
                      },
                      "id": {
                        "description": "The id value.",
                        "type": "integer"
                      },
                      "logic_mode": {
                        "description": "The logic mode value.",
                        "type": "string"
                      },
                      "to_status_name": {
                        "description": "The to status name value.",
                        "type": "string"
                      },
                      "transition_id": {
                        "description": "The transition id value.",
                        "type": "integer"
                      }
                    },
                    "required": [
                      "condition_set_id",
                      "id",
                      "logic_mode",
                      "transition_id"
                    ],
                    "type": "object"
                  },
                  "type": "array"
                },
                "updated_at": {
                  "description": "The updated at value.",
                  "format": "date-time",
                  "type": "string"
                },
                "workflow_id": {
                  "description": "The workflow id value.",
                  "type": "integer"
                },
                "workflow_name": {
                  "description": "The workflow name value.",
                  "type": "string"
                }
              },
              "required": [
                "created_at",
                "description",
                "id",
                "name",
                "updated_at",
                "workflow_id"
              ],
              "type": "object"
            },
            "type": "array"
          }
        },
        "required": [
          "data"
        ],
        "type": "object"
      },
      "GetWorkflowsWorkflowIdResult": {
        "additionalProperties": false,
        "properties": {
          "data": {
            "additionalProperties": false,
            "properties": {
              "builtin_key": {
                "description": "The builtin key value.",
                "nullable": true,
                "type": "string"
              },
              "description": {
                "description": "The description value.",
                "type": "string"
              },
              "display_description": {
                "description": "The display description value.",
                "type": "string"
              },
              "display_name": {
                "description": "The display name value.",
                "type": "string"
              },
              "id": {
                "description": "The id value.",
                "type": "integer"
              },
              "is_default": {
                "description": "The is default value.",
                "type": "boolean"
              },
              "name": {
                "description": "The name value.",
                "type": "string"
              }
            },
            "required": [
              "description",
              "display_description",
              "display_name",
              "id",
              "is_default",
              "name"
            ],
            "type": "object"
          }
        },
        "required": [
          "data"
        ],
        "type": "object"
      },
      "GetWorkflowsWorkflowIdTransitionsResult": {
        "additionalProperties": false,
        "properties": {
          "data": {
            "items": {
              "additionalProperties": false,
              "properties": {
                "from": {
                  "additionalProperties": false,
                  "description": "The from value.",
                  "nullable": true,
                  "properties": {
                    "builtin_key": {
                      "description": "The builtin key value.",
                      "nullable": true,
                      "type": "string"
                    },
                    "category_builtin_key": {
                      "description": "The category builtin key value.",
                      "nullable": true,
                      "type": "string"
                    },
                    "category_color": {
                      "description": "The category color value.",
                      "type": "string"
                    },
                    "category_name": {
                      "description": "The category name value.",
                      "type": "string"
                    },
                    "id": {
                      "description": "The id value.",
                      "type": "integer"
                    },
                    "name": {
                      "description": "The name value.",
                      "type": "string"
                    }
                  },
                  "required": [
                    "category_color",
                    "category_name",
                    "id",
                    "name"
                  ],
                  "type": "object"
                },
                "from_all_statuses": {
                  "description": "The from all statuses value.",
                  "type": "boolean"
                },
                "id": {
                  "description": "The id value.",
                  "type": "integer"
                },
                "to": {
                  "additionalProperties": false,
                  "description": "The to value.",
                  "properties": {
                    "builtin_key": {
                      "description": "The builtin key value.",
                      "nullable": true,
                      "type": "string"
                    },
                    "category_builtin_key": {
                      "description": "The category builtin key value.",
                      "nullable": true,
                      "type": "string"
                    },
                    "category_color": {
                      "description": "The category color value.",
                      "type": "string"
                    },
                    "category_name": {
                      "description": "The category name value.",
                      "type": "string"
                    },
                    "id": {
                      "description": "The id value.",
                      "type": "integer"
                    },
                    "name": {
                      "description": "The name value.",
                      "type": "string"
                    }
                  },
                  "required": [
                    "category_color",
                    "category_name",
                    "id",
                    "name"
                  ],
                  "type": "object"
                }
              },
              "required": [
                "from_all_statuses",
                "id",
                "to"
              ],
              "type": "object"
            },
            "type": "array"
          }
        },
        "required": [
          "data"
        ],
        "type": "object"
      },
      "GetWorkspaceTemplatesResult": {
        "additionalProperties": false,
        "properties": {
          "data": {
            "items": {
              "additionalProperties": false,
              "properties": {
                "color": {
                  "description": "The color value.",
                  "type": "string"
                },
                "configuration_set_name": {
                  "description": "The configuration set name value.",
                  "type": "string"
                },
                "description": {
                  "description": "The description value.",
                  "type": "string"
                },
                "icon": {
                  "description": "The icon value.",
                  "type": "string"
                },
                "id": {
                  "description": "The id value.",
                  "type": "integer"
                },
                "item_count": {
                  "description": "The item count value.",
                  "type": "integer"
                },
                "name": {
                  "description": "The name value.",
                  "type": "string"
                },
                "template_count": {
                  "description": "The template count value.",
                  "type": "integer"
                }
              },
              "required": [
                "color",
                "configuration_set_name",
                "description",
                "icon",
                "id",
                "item_count",
                "name",
                "template_count"
              ],
              "type": "object"
            },
            "type": "array"
          }
        },
        "required": [
          "data"
        ],
        "type": "object"
      },
      "GetWorkspacesResult": {
        "additionalProperties": false,
        "properties": {
          "data": {
            "items": {
              "additionalProperties": false,
              "properties": {
                "active": {
                  "description": "The active value.",
                  "type": "boolean"
                },
                "avatar_url": {
                  "description": "The avatar url value.",
                  "nullable": true,
                  "type": "string"
                },
                "color": {
                  "description": "The color value.",
                  "type": "string"
                },
                "configuration_set_id": {
                  "description": "The configuration set id value.",
                  "nullable": true,
                  "type": "integer"
                },
                "created_at": {
                  "description": "The created at value.",
                  "type": "string"
                },
                "default_view": {
                  "description": "The default view value.",
                  "type": "string"
                },
                "description": {
                  "description": "The description value.",
                  "type": "string"
                },
                "icon": {
                  "description": "The icon value.",
                  "type": "string"
                },
                "id": {
                  "description": "The id value.",
                  "type": "integer"
                },
                "internal_comments_enabled": {
                  "description": "The internal comments enabled value.",
                  "type": "boolean"
                },
                "is_personal": {
                  "description": "The is personal value.",
                  "type": "boolean"
                },
                "is_template": {
                  "description": "The is template value.",
                  "type": "boolean"
                },
                "key": {
                  "description": "The key value.",
                  "type": "string"
                },
                "name": {
                  "description": "The name value.",
                  "type": "string"
                },
                "owner_id": {
                  "description": "The owner id value.",
                  "nullable": true,
                  "type": "integer"
                },
                "time_project_categories": {
                  "description": "The time project categories value.",
                  "items": {
                    "type": "integer"
                  },
                  "type": "array"
                },
                "time_project_id": {
                  "description": "The time project id value.",
                  "nullable": true,
                  "type": "integer"
                },
                "time_project_name": {
                  "description": "The time project name value.",
                  "type": "string"
                },
                "updated_at": {
                  "description": "The updated at value.",
                  "type": "string"
                }
              },
              "required": [
                "active",
                "color",
                "created_at",
                "default_view",
                "description",
                "icon",
                "id",
                "internal_comments_enabled",
                "is_personal",
                "is_template",
                "key",
                "name",
                "time_project_categories",
                "time_project_name",
                "updated_at"
              ],
              "type": "object"
            },
            "type": "array"
          },
          "pagination": {
            "$ref": "#/components/schemas/Pagination"
          }
        },
        "required": [
          "data",
          "pagination"
        ],
        "type": "object"
      },
      "GetWorkspacesWorkspaceIdActionCatalogResult": {
        "additionalProperties": false,
        "properties": {
          "data": {
            "additionalProperties": false,
            "properties": {
              "capabilities": {
                "description": "The capabilities value.",
                "items": {
                  "additionalProperties": false,
                  "properties": {
                    "capability_type": {
                      "description": "The capability type value.",
                      "type": "string"
                    },
                    "id": {
                      "description": "The id value.",
                      "type": "integer"
                    },
                    "name": {
                      "description": "The name value.",
                      "type": "string"
                    }
                  },
                  "required": [
                    "capability_type",
                    "id",
                    "name"
                  ],
                  "type": "object"
                },
                "type": "array"
              },
              "nodes": {
                "description": "The nodes value.",
                "items": {
                  "additionalProperties": false,
                  "properties": {
                    "category": {
                      "description": "The category value.",
                      "type": "string"
                    },
                    "config_schema": {
                      "description": "The config schema value.",
                      "format": "byte",
                      "type": "string"
                    },
                    "description": {
                      "description": "The description value.",
                      "type": "string"
                    },
                    "is_iterator": {
                      "description": "The is iterator value.",
                      "type": "boolean"
                    },
                    "label": {
                      "description": "The label value.",
                      "type": "string"
                    },
                    "outputs": {
                      "description": "The outputs value.",
                      "items": {
                        "type": "string"
                      },
                      "type": "array"
                    },
                    "type": {
                      "description": "The type value.",
                      "type": "string"
                    }
                  },
                  "required": [
                    "category",
                    "config_schema",
                    "description",
                    "is_iterator",
                    "label",
                    "outputs",
                    "type"
                  ],
                  "type": "object"
                },
                "type": "array"
              },
              "scope": {
                "description": "The scope value.",
                "type": "string"
              },
              "triggers": {
                "description": "The triggers value.",
                "items": {
                  "additionalProperties": false,
                  "properties": {
                    "config_schema": {
                      "description": "The config schema value.",
                      "format": "byte",
                      "type": "string"
                    },
                    "description": {
                      "description": "The description value.",
                      "type": "string"
                    },
                    "label": {
                      "description": "The label value.",
                      "type": "string"
                    },
                    "type": {
                      "description": "The type value.",
                      "type": "string"
                    }
                  },
                  "required": [
                    "config_schema",
                    "description",
                    "label",
                    "type"
                  ],
                  "type": "object"
                },
                "type": "array"
              }
            },
            "required": [
              "capabilities",
              "nodes",
              "scope",
              "triggers"
            ],
            "type": "object"
          }
        },
        "required": [
          "data"
        ],
        "type": "object"
      },
      "GetWorkspacesWorkspaceIdActionsActionIdLogsResult": {
        "additionalProperties": false,
        "properties": {
          "data": {
            "items": {
              "additionalProperties": false,
              "nullable": true,
              "properties": {
                "action_id": {
                  "description": "The action id value.",
                  "type": "integer"
                },
                "action_name": {
                  "description": "The action name value.",
                  "type": "string"
                },
                "completed_at": {
                  "description": "The completed at value.",
                  "format": "date-time",
                  "nullable": true,
                  "type": "string"
                },
                "duration_ms": {
                  "description": "The duration ms value.",
                  "nullable": true,
                  "type": "integer"
                },
                "effective_actor_user_id": {
                  "description": "The effective actor user id value.",
                  "nullable": true,
                  "type": "integer"
                },
                "error_message": {
                  "description": "The error message value.",
                  "type": "string"
                },
                "execution_trace": {
                  "description": "The execution trace value.",
                  "type": "string"
                },
                "id": {
                  "description": "The id value.",
                  "type": "integer"
                },
                "item_id": {
                  "description": "The item id value.",
                  "nullable": true,
                  "type": "integer"
                },
                "item_title": {
                  "description": "The item title value.",
                  "type": "string"
                },
                "started_at": {
                  "description": "The started at value.",
                  "format": "date-time",
                  "type": "string"
                },
                "status": {
                  "description": "The status value.",
                  "type": "string"
                },
                "trigger_event": {
                  "description": "The trigger event value.",
                  "type": "string"
                },
                "trigger_user_id": {
                  "description": "The trigger user id value.",
                  "nullable": true,
                  "type": "integer"
                },
                "workspace_id": {
                  "description": "The workspace id value.",
                  "nullable": true,
                  "type": "integer"
                },
                "workspace_name": {
                  "description": "The workspace name value.",
                  "type": "string"
                }
              },
              "required": [
                "action_id",
                "id",
                "started_at",
                "status",
                "trigger_event"
              ],
              "type": "object"
            },
            "type": "array"
          },
          "pagination": {
            "$ref": "#/components/schemas/Pagination"
          }
        },
        "required": [
          "data",
          "pagination"
        ],
        "type": "object"
      },
      "GetWorkspacesWorkspaceIdActionsActionIdResult": {
        "additionalProperties": false,
        "properties": {
          "data": {
            "additionalProperties": false,
            "nullable": true,
            "properties": {
              "actor_name": {
                "description": "The actor name value.",
                "type": "string"
              },
              "actor_user_id": {
                "description": "The actor user id value.",
                "nullable": true,
                "type": "integer"
              },
              "allowed_role_ids": {
                "description": "The allowed role ids value.",
                "items": {
                  "type": "integer"
                },
                "type": "array"
              },
              "created_at": {
                "description": "The created at value.",
                "format": "date-time",
                "type": "string"
              },
              "created_by": {
                "description": "The created by value.",
                "nullable": true,
                "type": "integer"
              },
              "creator_name": {
                "description": "The creator name value.",
                "type": "string"
              },
              "description": {
                "description": "The description value.",
                "type": "string"
              },
              "edges": {
                "description": "The edges value.",
                "items": {
                  "additionalProperties": false,
                  "properties": {
                    "action_id": {
                      "description": "The action id value.",
                      "type": "integer"
                    },
                    "created_at": {
                      "description": "The created at value.",
                      "format": "date-time",
                      "type": "string"
                    },
                    "edge_type": {
                      "description": "The edge type value.",
                      "type": "string"
                    },
                    "id": {
                      "description": "The id value.",
                      "type": "integer"
                    },
                    "source_handle": {
                      "description": "The source handle value.",
                      "type": "string"
                    },
                    "source_node_id": {
                      "description": "The source node id value.",
                      "type": "integer"
                    },
                    "target_handle": {
                      "description": "The target handle value.",
                      "type": "string"
                    },
                    "target_node_id": {
                      "description": "The target node id value.",
                      "type": "integer"
                    }
                  },
                  "required": [
                    "action_id",
                    "created_at",
                    "edge_type",
                    "id",
                    "source_node_id",
                    "target_node_id"
                  ],
                  "type": "object"
                },
                "type": "array"
              },
              "id": {
                "description": "The id value.",
                "type": "integer"
              },
              "is_enabled": {
                "description": "The is enabled value.",
                "type": "boolean"
              },
              "name": {
                "description": "The name value.",
                "type": "string"
              },
              "nodes": {
                "description": "The nodes value.",
                "items": {
                  "additionalProperties": false,
                  "properties": {
                    "action_id": {
                      "description": "The action id value.",
                      "type": "integer"
                    },
                    "created_at": {
                      "description": "The created at value.",
                      "format": "date-time",
                      "type": "string"
                    },
                    "id": {
                      "description": "The id value.",
                      "type": "integer"
                    },
                    "node_config": {
                      "description": "The node config value.",
                      "type": "string"
                    },
                    "node_type": {
                      "description": "The node type value.",
                      "type": "string"
                    },
                    "position_x": {
                      "description": "The position x value.",
                      "type": "number"
                    },
                    "position_y": {
                      "description": "The position y value.",
                      "type": "number"
                    },
                    "updated_at": {
                      "description": "The updated at value.",
                      "format": "date-time",
                      "type": "string"
                    }
                  },
                  "required": [
                    "action_id",
                    "created_at",
                    "id",
                    "node_config",
                    "node_type",
                    "position_x",
                    "position_y",
                    "updated_at"
                  ],
                  "type": "object"
                },
                "type": "array"
              },
              "trigger_config": {
                "description": "The trigger config value.",
                "type": "string"
              },
              "trigger_type": {
                "description": "The trigger type value.",
                "type": "string"
              },
              "updated_at": {
                "description": "The updated at value.",
                "format": "date-time",
                "type": "string"
              },
              "workspace_id": {
                "description": "The workspace id value.",
                "type": "integer"
              }
            },
            "required": [
              "allowed_role_ids",
              "created_at",
              "id",
              "is_enabled",
              "name",
              "trigger_type",
              "updated_at",
              "workspace_id"
            ],
            "type": "object"
          }
        },
        "required": [
          "data"
        ],
        "type": "object"
      },
      "GetWorkspacesWorkspaceIdActionsResult": {
        "additionalProperties": false,
        "properties": {
          "data": {
            "items": {
              "additionalProperties": false,
              "nullable": true,
              "properties": {
                "actor_name": {
                  "description": "The actor name value.",
                  "type": "string"
                },
                "actor_user_id": {
                  "description": "The actor user id value.",
                  "nullable": true,
                  "type": "integer"
                },
                "allowed_role_ids": {
                  "description": "The allowed role ids value.",
                  "items": {
                    "type": "integer"
                  },
                  "type": "array"
                },
                "created_at": {
                  "description": "The created at value.",
                  "format": "date-time",
                  "type": "string"
                },
                "created_by": {
                  "description": "The created by value.",
                  "nullable": true,
                  "type": "integer"
                },
                "creator_name": {
                  "description": "The creator name value.",
                  "type": "string"
                },
                "description": {
                  "description": "The description value.",
                  "type": "string"
                },
                "edges": {
                  "description": "The edges value.",
                  "items": {
                    "additionalProperties": false,
                    "properties": {
                      "action_id": {
                        "description": "The action id value.",
                        "type": "integer"
                      },
                      "created_at": {
                        "description": "The created at value.",
                        "format": "date-time",
                        "type": "string"
                      },
                      "edge_type": {
                        "description": "The edge type value.",
                        "type": "string"
                      },
                      "id": {
                        "description": "The id value.",
                        "type": "integer"
                      },
                      "source_handle": {
                        "description": "The source handle value.",
                        "type": "string"
                      },
                      "source_node_id": {
                        "description": "The source node id value.",
                        "type": "integer"
                      },
                      "target_handle": {
                        "description": "The target handle value.",
                        "type": "string"
                      },
                      "target_node_id": {
                        "description": "The target node id value.",
                        "type": "integer"
                      }
                    },
                    "required": [
                      "action_id",
                      "created_at",
                      "edge_type",
                      "id",
                      "source_node_id",
                      "target_node_id"
                    ],
                    "type": "object"
                  },
                  "type": "array"
                },
                "id": {
                  "description": "The id value.",
                  "type": "integer"
                },
                "is_enabled": {
                  "description": "The is enabled value.",
                  "type": "boolean"
                },
                "name": {
                  "description": "The name value.",
                  "type": "string"
                },
                "nodes": {
                  "description": "The nodes value.",
                  "items": {
                    "additionalProperties": false,
                    "properties": {
                      "action_id": {
                        "description": "The action id value.",
                        "type": "integer"
                      },
                      "created_at": {
                        "description": "The created at value.",
                        "format": "date-time",
                        "type": "string"
                      },
                      "id": {
                        "description": "The id value.",
                        "type": "integer"
                      },
                      "node_config": {
                        "description": "The node config value.",
                        "type": "string"
                      },
                      "node_type": {
                        "description": "The node type value.",
                        "type": "string"
                      },
                      "position_x": {
                        "description": "The position x value.",
                        "type": "number"
                      },
                      "position_y": {
                        "description": "The position y value.",
                        "type": "number"
                      },
                      "updated_at": {
                        "description": "The updated at value.",
                        "format": "date-time",
                        "type": "string"
                      }
                    },
                    "required": [
                      "action_id",
                      "created_at",
                      "id",
                      "node_config",
                      "node_type",
                      "position_x",
                      "position_y",
                      "updated_at"
                    ],
                    "type": "object"
                  },
                  "type": "array"
                },
                "trigger_config": {
                  "description": "The trigger config value.",
                  "type": "string"
                },
                "trigger_type": {
                  "description": "The trigger type value.",
                  "type": "string"
                },
                "updated_at": {
                  "description": "The updated at value.",
                  "format": "date-time",
                  "type": "string"
                },
                "workspace_id": {
                  "description": "The workspace id value.",
                  "type": "integer"
                }
              },
              "required": [
                "allowed_role_ids",
                "created_at",
                "id",
                "is_enabled",
                "name",
                "trigger_type",
                "updated_at",
                "workspace_id"
              ],
              "type": "object"
            },
            "type": "array"
          }
        },
        "required": [
          "data"
        ],
        "type": "object"
      },
      "GetWorkspacesWorkspaceIdAgentRunsResult": {
        "additionalProperties": false,
        "properties": {
          "data": {
            "additionalProperties": false,
            "properties": {
              "has_more": {
                "description": "The has more value.",
                "type": "boolean"
              },
              "next_cursor": {
                "description": "The next cursor value.",
                "type": "string"
              },
              "runs": {
                "description": "The runs value.",
                "items": {
                  "additionalProperties": false,
                  "nullable": true,
                  "properties": {
                    "acting_user_id": {
                      "description": "The acting user id value.",
                      "nullable": true,
                      "type": "integer"
                    },
                    "binding_id": {
                      "description": "The binding id value.",
                      "nullable": true,
                      "type": "integer"
                    },
                    "chain_depth": {
                      "description": "The chain depth value.",
                      "type": "integer"
                    },
                    "container_id": {
                      "description": "The container id value.",
                      "type": "string"
                    },
                    "created_at": {
                      "description": "The created at value.",
                      "format": "date-time",
                      "type": "string"
                    },
                    "ended_at": {
                      "description": "The ended at value.",
                      "format": "date-time",
                      "nullable": true,
                      "type": "string"
                    },
                    "error": {
                      "description": "The error value.",
                      "type": "string"
                    },
                    "grants_json": {
                      "description": "The grants json value.",
                      "type": "string"
                    },
                    "id": {
                      "description": "The id value.",
                      "type": "integer"
                    },
                    "immediate_trigger_user_id": {
                      "description": "The immediate trigger user id value.",
                      "nullable": true,
                      "type": "integer"
                    },
                    "is_ephemeral": {
                      "description": "The is ephemeral value.",
                      "type": "boolean"
                    },
                    "item_id": {
                      "description": "The item id value.",
                      "nullable": true,
                      "type": "integer"
                    },
                    "job_image": {
                      "description": "The job image value.",
                      "type": "string"
                    },
                    "job_kind": {
                      "description": "The job kind value.",
                      "type": "string"
                    },
                    "parent_run_id": {
                      "description": "The parent run id value.",
                      "nullable": true,
                      "type": "integer"
                    },
                    "profile_snapshot_json": {
                      "description": "The profile snapshot json value.",
                      "type": "string"
                    },
                    "profile_version": {
                      "description": "The profile version value.",
                      "type": "integer"
                    },
                    "queued_at": {
                      "description": "The queued at value.",
                      "format": "date-time",
                      "type": "string"
                    },
                    "root_initiator_user_id": {
                      "description": "The root initiator user id value.",
                      "nullable": true,
                      "type": "integer"
                    },
                    "runner_id": {
                      "description": "The runner id value.",
                      "nullable": true,
                      "type": "integer"
                    },
                    "session_id": {
                      "description": "The session id value.",
                      "type": "string"
                    },
                    "started_at": {
                      "description": "The started at value.",
                      "format": "date-time",
                      "nullable": true,
                      "type": "string"
                    },
                    "status": {
                      "description": "The status value.",
                      "type": "string"
                    },
                    "target_pool_id": {
                      "description": "The target pool id value.",
                      "nullable": true,
                      "type": "integer"
                    },
                    "trigger": {
                      "additionalProperties": false,
                      "description": "The trigger value.",
                      "nullable": true,
                      "properties": {
                        "author_id": {
                          "description": "The author id value.",
                          "type": "integer"
                        },
                        "comment_id": {
                          "description": "The comment id value.",
                          "type": "integer"
                        },
                        "continue_comment_id": {
                          "description": "The continue comment id value.",
                          "type": "integer"
                        },
                        "continue_event_id": {
                          "description": "The continue event id value.",
                          "type": "integer"
                        },
                        "continue_head_branch": {
                          "description": "The continue head branch value.",
                          "type": "string"
                        },
                        "continue_pr_number": {
                          "description": "The continue pr number value.",
                          "type": "integer"
                        },
                        "continue_repo_slug": {
                          "description": "The continue repo slug value.",
                          "type": "string"
                        },
                        "instruction": {
                          "description": "The instruction value.",
                          "type": "string"
                        },
                        "kind": {
                          "description": "The kind value.",
                          "type": "string"
                        }
                      },
                      "type": "object"
                    },
                    "triggered_by_user_id": {
                      "description": "The triggered by user id value.",
                      "nullable": true,
                      "type": "integer"
                    },
                    "updated_at": {
                      "description": "The updated at value.",
                      "format": "date-time",
                      "type": "string"
                    },
                    "workspace_id": {
                      "description": "The workspace id value.",
                      "type": "integer"
                    }
                  },
                  "required": [
                    "created_at",
                    "id",
                    "queued_at",
                    "status",
                    "updated_at",
                    "workspace_id"
                  ],
                  "type": "object"
                },
                "type": "array"
              }
            },
            "required": [
              "has_more",
              "runs"
            ],
            "type": "object"
          }
        },
        "required": [
          "data"
        ],
        "type": "object"
      },
      "GetWorkspacesWorkspaceIdAgentSkillsResult": {
        "additionalProperties": false,
        "properties": {
          "data": {
            "items": {
              "additionalProperties": false,
              "nullable": true,
              "properties": {
                "body": {
                  "description": "The body value.",
                  "type": "string"
                },
                "created_at": {
                  "description": "The created at value.",
                  "format": "date-time",
                  "type": "string"
                },
                "created_by_user_id": {
                  "description": "The created by user id value.",
                  "nullable": true,
                  "type": "integer"
                },
                "description": {
                  "description": "The description value.",
                  "type": "string"
                },
                "enabled": {
                  "description": "The enabled value.",
                  "type": "boolean"
                },
                "id": {
                  "description": "The id value.",
                  "type": "integer"
                },
                "name": {
                  "description": "The name value.",
                  "type": "string"
                },
                "pages": {
                  "description": "The pages value.",
                  "items": {
                    "additionalProperties": false,
                    "properties": {
                      "activation_bytes": {
                        "description": "The activation bytes value.",
                        "type": "integer"
                      },
                      "activation_runes": {
                        "description": "The activation runes value.",
                        "type": "integer"
                      },
                      "id": {
                        "description": "The id value.",
                        "type": "integer"
                      },
                      "page_updated_at": {
                        "description": "The page updated at value.",
                        "format": "date-time",
                        "type": "string"
                      },
                      "snapshot_at": {
                        "description": "The snapshot at value.",
                        "format": "date-time",
                        "type": "string"
                      },
                      "snapshot_title": {
                        "description": "The snapshot title value.",
                        "type": "string"
                      },
                      "stale": {
                        "description": "The stale value.",
                        "type": "boolean"
                      },
                      "title": {
                        "description": "The title value.",
                        "type": "string"
                      }
                    },
                    "required": [
                      "activation_bytes",
                      "activation_runes",
                      "id",
                      "snapshot_at",
                      "stale",
                      "title"
                    ],
                    "type": "object"
                  },
                  "type": "array"
                },
                "updated_at": {
                  "description": "The updated at value.",
                  "format": "date-time",
                  "type": "string"
                },
                "usage": {
                  "additionalProperties": false,
                  "description": "The usage value.",
                  "nullable": true,
                  "properties": {
                    "bytes": {
                      "description": "The bytes value.",
                      "type": "integer"
                    },
                    "estimated_tokens": {
                      "description": "The estimated tokens value.",
                      "type": "integer"
                    },
                    "max_bytes": {
                      "description": "The max bytes value.",
                      "type": "integer"
                    },
                    "max_tokens": {
                      "description": "The max tokens value.",
                      "type": "integer"
                    },
                    "page_prefix_bytes": {
                      "description": "The page prefix bytes value.",
                      "type": "integer"
                    },
                    "page_prefix_runes": {
                      "description": "The page prefix runes value.",
                      "type": "integer"
                    }
                  },
                  "required": [
                    "bytes",
                    "estimated_tokens",
                    "max_bytes",
                    "max_tokens",
                    "page_prefix_bytes",
                    "page_prefix_runes"
                  ],
                  "type": "object"
                },
                "workspace_id": {
                  "description": "The workspace id value.",
                  "type": "integer"
                }
              },
              "required": [
                "created_at",
                "description",
                "enabled",
                "id",
                "name",
                "updated_at",
                "workspace_id"
              ],
              "type": "object"
            },
            "type": "array"
          }
        },
        "required": [
          "data"
        ],
        "type": "object"
      },
      "GetWorkspacesWorkspaceIdAgentSkillsSkillIdResult": {
        "additionalProperties": false,
        "properties": {
          "data": {
            "additionalProperties": false,
            "properties": {
              "body": {
                "description": "The body value.",
                "type": "string"
              },
              "created_at": {
                "description": "The created at value.",
                "format": "date-time",
                "type": "string"
              },
              "created_by_user_id": {
                "description": "The created by user id value.",
                "nullable": true,
                "type": "integer"
              },
              "description": {
                "description": "The description value.",
                "type": "string"
              },
              "enabled": {
                "description": "The enabled value.",
                "type": "boolean"
              },
              "id": {
                "description": "The id value.",
                "type": "integer"
              },
              "name": {
                "description": "The name value.",
                "type": "string"
              },
              "pages": {
                "description": "The pages value.",
                "items": {
                  "additionalProperties": false,
                  "properties": {
                    "activation_bytes": {
                      "description": "The activation bytes value.",
                      "type": "integer"
                    },
                    "activation_runes": {
                      "description": "The activation runes value.",
                      "type": "integer"
                    },
                    "id": {
                      "description": "The id value.",
                      "type": "integer"
                    },
                    "page_updated_at": {
                      "description": "The page updated at value.",
                      "format": "date-time",
                      "type": "string"
                    },
                    "snapshot_at": {
                      "description": "The snapshot at value.",
                      "format": "date-time",
                      "type": "string"
                    },
                    "snapshot_title": {
                      "description": "The snapshot title value.",
                      "type": "string"
                    },
                    "stale": {
                      "description": "The stale value.",
                      "type": "boolean"
                    },
                    "title": {
                      "description": "The title value.",
                      "type": "string"
                    }
                  },
                  "required": [
                    "activation_bytes",
                    "activation_runes",
                    "id",
                    "snapshot_at",
                    "stale",
                    "title"
                  ],
                  "type": "object"
                },
                "type": "array"
              },
              "updated_at": {
                "description": "The updated at value.",
                "format": "date-time",
                "type": "string"
              },
              "usage": {
                "additionalProperties": false,
                "description": "The usage value.",
                "nullable": true,
                "properties": {
                  "bytes": {
                    "description": "The bytes value.",
                    "type": "integer"
                  },
                  "estimated_tokens": {
                    "description": "The estimated tokens value.",
                    "type": "integer"
                  },
                  "max_bytes": {
                    "description": "The max bytes value.",
                    "type": "integer"
                  },
                  "max_tokens": {
                    "description": "The max tokens value.",
                    "type": "integer"
                  },
                  "page_prefix_bytes": {
                    "description": "The page prefix bytes value.",
                    "type": "integer"
                  },
                  "page_prefix_runes": {
                    "description": "The page prefix runes value.",
                    "type": "integer"
                  }
                },
                "required": [
                  "bytes",
                  "estimated_tokens",
                  "max_bytes",
                  "max_tokens",
                  "page_prefix_bytes",
                  "page_prefix_runes"
                ],
                "type": "object"
              },
              "workspace_id": {
                "description": "The workspace id value.",
                "type": "integer"
              }
            },
            "required": [
              "created_at",
              "description",
              "enabled",
              "id",
              "name",
              "updated_at",
              "workspace_id"
            ],
            "type": "object"
          }
        },
        "required": [
          "data"
        ],
        "type": "object"
      },
      "GetWorkspacesWorkspaceIdAssignableUsersResult": {
        "additionalProperties": false,
        "properties": {
          "data": {
            "items": {
              "additionalProperties": false,
              "properties": {
                "agent_presence": {
                  "description": "The agent presence value.",
                  "type": "string"
                },
                "avatar_url": {
                  "description": "The avatar url value.",
                  "nullable": true,
                  "type": "string"
                },
                "created_at": {
                  "description": "The created at value.",
                  "type": "string"
                },
                "first_name": {
                  "description": "The first name value.",
                  "type": "string"
                },
                "full_name": {
                  "description": "The full name value.",
                  "type": "string"
                },
                "id": {
                  "description": "The id value.",
                  "type": "integer"
                },
                "is_active": {
                  "description": "The is active value.",
                  "type": "boolean"
                },
                "is_agent": {
                  "description": "The is agent value.",
                  "type": "boolean"
                },
                "last_name": {
                  "description": "The last name value.",
                  "type": "string"
                },
                "username": {
                  "description": "The username value.",
                  "type": "string"
                }
              },
              "required": [
                "agent_presence",
                "created_at",
                "first_name",
                "full_name",
                "id",
                "is_active",
                "is_agent",
                "last_name",
                "username"
              ],
              "type": "object"
            },
            "type": "array"
          }
        },
        "required": [
          "data"
        ],
        "type": "object"
      },
      "GetWorkspacesWorkspaceIdBoardConfigurationBootstrapResult": {
        "additionalProperties": false,
        "properties": {
          "data": {
            "additionalProperties": false,
            "properties": {
              "board_configuration": {
                "additionalProperties": false,
                "description": "The board configuration value.",
                "nullable": true,
                "properties": {
                  "backlog_status_ids": {
                    "description": "The backlog status ids value.",
                    "items": {
                      "type": "integer"
                    },
                    "type": "array"
                  },
                  "card_fields": {
                    "description": "The card fields value.",
                    "items": {
                      "additionalProperties": false,
                      "properties": {
                        "display_order": {
                          "description": "The display order value.",
                          "type": "integer"
                        },
                        "field_identifier": {
                          "description": "The field identifier value.",
                          "type": "string"
                        },
                        "field_type": {
                          "description": "The field type value.",
                          "type": "string"
                        },
                        "width": {
                          "description": "The width value.",
                          "type": "integer"
                        }
                      },
                      "required": [
                        "display_order",
                        "field_identifier",
                        "field_type",
                        "width"
                      ],
                      "type": "object"
                    },
                    "type": "array"
                  },
                  "collection_id": {
                    "description": "The collection id value.",
                    "nullable": true,
                    "type": "integer"
                  },
                  "columns": {
                    "description": "The columns value.",
                    "items": {
                      "additionalProperties": false,
                      "properties": {
                        "board_configuration_id": {
                          "description": "The board configuration id value.",
                          "type": "integer"
                        },
                        "color": {
                          "description": "The color value.",
                          "type": "string"
                        },
                        "created_at": {
                          "description": "The created at value.",
                          "format": "date-time",
                          "type": "string"
                        },
                        "display_order": {
                          "description": "The display order value.",
                          "type": "integer"
                        },
                        "id": {
                          "description": "The id value.",
                          "type": "integer"
                        },
                        "name": {
                          "description": "The name value.",
                          "type": "string"
                        },
                        "status_ids": {
                          "description": "The status ids value.",
                          "items": {
                            "type": "integer"
                          },
                          "type": "array"
                        },
                        "updated_at": {
                          "description": "The updated at value.",
                          "format": "date-time",
                          "type": "string"
                        },
                        "wip_limit": {
                          "description": "The wip limit value.",
                          "nullable": true,
                          "type": "integer"
                        }
                      },
                      "required": [
                        "board_configuration_id",
                        "color",
                        "created_at",
                        "display_order",
                        "id",
                        "name",
                        "updated_at"
                      ],
                      "type": "object"
                    },
                    "type": "array"
                  },
                  "completed_item_retention_days": {
                    "description": "The completed item retention days value.",
                    "nullable": true,
                    "type": "integer"
                  },
                  "created_at": {
                    "description": "The created at value.",
                    "format": "date-time",
                    "type": "string"
                  },
                  "id": {
                    "description": "The id value.",
                    "type": "integer"
                  },
                  "list_columns": {
                    "description": "The list columns value.",
                    "items": {
                      "additionalProperties": false,
                      "properties": {
                        "display_order": {
                          "description": "The display order value.",
                          "type": "integer"
                        },
                        "field_identifier": {
                          "description": "The field identifier value.",
                          "type": "string"
                        },
                        "field_type": {
                          "description": "The field type value.",
                          "type": "string"
                        },
                        "width": {
                          "description": "The width value.",
                          "type": "integer"
                        }
                      },
                      "required": [
                        "display_order",
                        "field_identifier",
                        "field_type",
                        "width"
                      ],
                      "type": "object"
                    },
                    "type": "array"
                  },
                  "roadmap_config": {
                    "additionalProperties": false,
                    "description": "The roadmap config value.",
                    "nullable": true,
                    "properties": {
                      "dependency_link_type_id": {
                        "description": "The dependency link type id value.",
                        "nullable": true,
                        "type": "integer"
                      },
                      "end_field_id": {
                        "description": "The end field id value.",
                        "type": "string"
                      },
                      "start_field_id": {
                        "description": "The start field id value.",
                        "type": "string"
                      }
                    },
                    "required": [
                      "end_field_id",
                      "start_field_id"
                    ],
                    "type": "object"
                  },
                  "show_rightmost_column_last_50": {
                    "description": "The show rightmost column last 50 value.",
                    "type": "boolean"
                  },
                  "updated_at": {
                    "description": "The updated at value.",
                    "format": "date-time",
                    "type": "string"
                  },
                  "workspace_id": {
                    "description": "The workspace id value.",
                    "nullable": true,
                    "type": "integer"
                  }
                },
                "required": [
                  "created_at",
                  "id",
                  "show_rightmost_column_last_50",
                  "updated_at"
                ],
                "type": "object"
              },
              "collection": {
                "additionalProperties": false,
                "description": "The collection value.",
                "nullable": true,
                "properties": {
                  "created_by": {
                    "description": "The created by value.",
                    "nullable": true,
                    "type": "integer"
                  },
                  "description": {
                    "description": "The description value.",
                    "type": "string"
                  },
                  "id": {
                    "description": "The id value.",
                    "type": "integer"
                  },
                  "is_public": {
                    "description": "The is public value.",
                    "type": "boolean"
                  },
                  "name": {
                    "description": "The name value.",
                    "type": "string"
                  },
                  "public_slug": {
                    "description": "The public slug value.",
                    "nullable": true,
                    "type": "string"
                  },
                  "ql_query": {
                    "description": "The ql query value.",
                    "type": "string"
                  },
                  "workspace_id": {
                    "description": "The workspace id value.",
                    "nullable": true,
                    "type": "integer"
                  }
                },
                "required": [
                  "description",
                  "id",
                  "is_public",
                  "name",
                  "ql_query"
                ],
                "type": "object"
              },
              "referenced_workspace_ids": {
                "description": "The referenced workspace ids value.",
                "items": {
                  "type": "integer"
                },
                "type": "array"
              },
              "statuses": {
                "description": "The statuses value.",
                "items": {
                  "additionalProperties": false,
                  "properties": {
                    "builtin_key": {
                      "description": "The builtin key value.",
                      "type": "string"
                    },
                    "category_builtin_key": {
                      "description": "The category builtin key value.",
                      "type": "string"
                    },
                    "category_color": {
                      "description": "The category color value.",
                      "type": "string"
                    },
                    "category_description": {
                      "description": "The category description value.",
                      "type": "string"
                    },
                    "category_id": {
                      "description": "The category id value.",
                      "type": "integer"
                    },
                    "category_is_default": {
                      "description": "The category is default value.",
                      "type": "boolean"
                    },
                    "category_name": {
                      "description": "The category name value.",
                      "type": "string"
                    },
                    "created_at": {
                      "description": "The created at value.",
                      "format": "date-time",
                      "type": "string"
                    },
                    "description": {
                      "description": "The description value.",
                      "type": "string"
                    },
                    "display_description": {
                      "description": "The display description value.",
                      "type": "string"
                    },
                    "display_name": {
                      "description": "The display name value.",
                      "type": "string"
                    },
                    "id": {
                      "description": "The id value.",
                      "type": "integer"
                    },
                    "is_completed": {
                      "description": "The is completed value.",
                      "type": "boolean"
                    },
                    "is_default": {
                      "description": "The is default value.",
                      "type": "boolean"
                    },
                    "name": {
                      "description": "The name value.",
                      "type": "string"
                    },
                    "updated_at": {
                      "description": "The updated at value.",
                      "format": "date-time",
                      "type": "string"
                    }
                  },
                  "required": [
                    "category_id",
                    "created_at",
                    "description",
                    "display_name",
                    "id",
                    "is_default",
                    "name",
                    "updated_at"
                  ],
                  "type": "object"
                },
                "type": "array"
              }
            },
            "required": [
              "referenced_workspace_ids",
              "statuses"
            ],
            "type": "object"
          }
        },
        "required": [
          "data"
        ],
        "type": "object"
      },
      "GetWorkspacesWorkspaceIdBoardConfigurationResult": {
        "additionalProperties": false,
        "properties": {
          "data": {
            "additionalProperties": false,
            "properties": {
              "backlog_status_ids": {
                "description": "The backlog status ids value.",
                "items": {
                  "type": "integer"
                },
                "type": "array"
              },
              "card_fields": {
                "description": "The card fields value.",
                "items": {
                  "additionalProperties": false,
                  "properties": {
                    "display_order": {
                      "description": "The display order value.",
                      "type": "integer"
                    },
                    "field_identifier": {
                      "description": "The field identifier value.",
                      "type": "string"
                    },
                    "field_type": {
                      "description": "The field type value.",
                      "type": "string"
                    },
                    "width": {
                      "description": "The width value.",
                      "type": "integer"
                    }
                  },
                  "required": [
                    "display_order",
                    "field_identifier",
                    "field_type",
                    "width"
                  ],
                  "type": "object"
                },
                "type": "array"
              },
              "collection_id": {
                "description": "The collection id value.",
                "nullable": true,
                "type": "integer"
              },
              "columns": {
                "description": "The columns value.",
                "items": {
                  "additionalProperties": false,
                  "properties": {
                    "board_configuration_id": {
                      "description": "The board configuration id value.",
                      "type": "integer"
                    },
                    "color": {
                      "description": "The color value.",
                      "type": "string"
                    },
                    "created_at": {
                      "description": "The created at value.",
                      "format": "date-time",
                      "type": "string"
                    },
                    "display_order": {
                      "description": "The display order value.",
                      "type": "integer"
                    },
                    "id": {
                      "description": "The id value.",
                      "type": "integer"
                    },
                    "name": {
                      "description": "The name value.",
                      "type": "string"
                    },
                    "status_ids": {
                      "description": "The status ids value.",
                      "items": {
                        "type": "integer"
                      },
                      "type": "array"
                    },
                    "updated_at": {
                      "description": "The updated at value.",
                      "format": "date-time",
                      "type": "string"
                    },
                    "wip_limit": {
                      "description": "The wip limit value.",
                      "nullable": true,
                      "type": "integer"
                    }
                  },
                  "required": [
                    "board_configuration_id",
                    "color",
                    "created_at",
                    "display_order",
                    "id",
                    "name",
                    "updated_at"
                  ],
                  "type": "object"
                },
                "type": "array"
              },
              "completed_item_retention_days": {
                "description": "The completed item retention days value.",
                "nullable": true,
                "type": "integer"
              },
              "created_at": {
                "description": "The created at value.",
                "format": "date-time",
                "type": "string"
              },
              "id": {
                "description": "The id value.",
                "type": "integer"
              },
              "list_columns": {
                "description": "The list columns value.",
                "items": {
                  "additionalProperties": false,
                  "properties": {
                    "display_order": {
                      "description": "The display order value.",
                      "type": "integer"
                    },
                    "field_identifier": {
                      "description": "The field identifier value.",
                      "type": "string"
                    },
                    "field_type": {
                      "description": "The field type value.",
                      "type": "string"
                    },
                    "width": {
                      "description": "The width value.",
                      "type": "integer"
                    }
                  },
                  "required": [
                    "display_order",
                    "field_identifier",
                    "field_type",
                    "width"
                  ],
                  "type": "object"
                },
                "type": "array"
              },
              "roadmap_config": {
                "additionalProperties": false,
                "description": "The roadmap config value.",
                "nullable": true,
                "properties": {
                  "dependency_link_type_id": {
                    "description": "The dependency link type id value.",
                    "nullable": true,
                    "type": "integer"
                  },
                  "end_field_id": {
                    "description": "The end field id value.",
                    "type": "string"
                  },
                  "start_field_id": {
                    "description": "The start field id value.",
                    "type": "string"
                  }
                },
                "required": [
                  "end_field_id",
                  "start_field_id"
                ],
                "type": "object"
              },
              "show_rightmost_column_last_50": {
                "description": "The show rightmost column last 50 value.",
                "type": "boolean"
              },
              "updated_at": {
                "description": "The updated at value.",
                "format": "date-time",
                "type": "string"
              },
              "workspace_id": {
                "description": "The workspace id value.",
                "nullable": true,
                "type": "integer"
              }
            },
            "required": [
              "created_at",
              "id",
              "show_rightmost_column_last_50",
              "updated_at"
            ],
            "type": "object"
          }
        },
        "required": [
          "data"
        ],
        "type": "object"
      },
      "GetWorkspacesWorkspaceIdItemTemplatesResult": {
        "additionalProperties": false,
        "properties": {
          "data": {
            "description": "The data value.",
            "items": {
              "additionalProperties": false,
              "properties": {
                "created_at": {
                  "description": "The created at value.",
                  "type": "string"
                },
                "created_by": {
                  "description": "The created by value.",
                  "nullable": true,
                  "type": "integer"
                },
                "description_body": {
                  "description": "The description body value.",
                  "type": "string"
                },
                "id": {
                  "description": "The id value.",
                  "type": "integer"
                },
                "is_active": {
                  "description": "The is active value.",
                  "type": "boolean"
                },
                "item_type_ids": {
                  "description": "The item type ids value.",
                  "items": {
                    "type": "integer"
                  },
                  "type": "array"
                },
                "mode": {
                  "description": "The mode value.",
                  "type": "string"
                },
                "name": {
                  "description": "The name value.",
                  "type": "string"
                },
                "updated_at": {
                  "description": "The updated at value.",
                  "type": "string"
                },
                "updated_by": {
                  "description": "The updated by value.",
                  "nullable": true,
                  "type": "integer"
                },
                "workspace_id": {
                  "description": "The workspace id value.",
                  "type": "integer"
                }
              },
              "required": [
                "created_at",
                "description_body",
                "id",
                "is_active",
                "item_type_ids",
                "mode",
                "name",
                "updated_at",
                "workspace_id"
              ],
              "type": "object"
            },
            "type": "array"
          },
          "mandatory_template_id": {
            "description": "The mandatory template id value.",
            "nullable": true,
            "type": "integer"
          }
        },
        "required": [
          "data"
        ],
        "type": "object"
      },
      "GetWorkspacesWorkspaceIdItemTemplatesTemplateIdResult": {
        "additionalProperties": false,
        "properties": {
          "data": {
            "additionalProperties": false,
            "properties": {
              "created_at": {
                "description": "The created at value.",
                "type": "string"
              },
              "created_by": {
                "description": "The created by value.",
                "nullable": true,
                "type": "integer"
              },
              "description_body": {
                "description": "The description body value.",
                "type": "string"
              },
              "id": {
                "description": "The id value.",
                "type": "integer"
              },
              "is_active": {
                "description": "The is active value.",
                "type": "boolean"
              },
              "item_type_ids": {
                "description": "The item type ids value.",
                "items": {
                  "type": "integer"
                },
                "type": "array"
              },
              "mode": {
                "description": "The mode value.",
                "type": "string"
              },
              "name": {
                "description": "The name value.",
                "type": "string"
              },
              "updated_at": {
                "description": "The updated at value.",
                "type": "string"
              },
              "updated_by": {
                "description": "The updated by value.",
                "nullable": true,
                "type": "integer"
              },
              "workspace_id": {
                "description": "The workspace id value.",
                "type": "integer"
              }
            },
            "required": [
              "created_at",
              "description_body",
              "id",
              "is_active",
              "item_type_ids",
              "mode",
              "name",
              "updated_at",
              "workspace_id"
            ],
            "type": "object"
          }
        },
        "required": [
          "data"
        ],
        "type": "object"
      },
      "GetWorkspacesWorkspaceIdItemTypesResult": {
        "additionalProperties": false,
        "properties": {
          "data": {
            "items": {
              "additionalProperties": false,
              "properties": {
                "builtin_key": {
                  "description": "The builtin key value.",
                  "nullable": true,
                  "type": "string"
                },
                "color": {
                  "description": "The color value.",
                  "type": "string"
                },
                "description": {
                  "description": "The description value.",
                  "type": "string"
                },
                "display_description": {
                  "description": "The display description value.",
                  "type": "string"
                },
                "display_name": {
                  "description": "The display name value.",
                  "type": "string"
                },
                "hierarchy_level": {
                  "description": "The hierarchy level value.",
                  "type": "integer"
                },
                "icon": {
                  "description": "The icon value.",
                  "type": "string"
                },
                "id": {
                  "description": "The id value.",
                  "type": "integer"
                },
                "is_default": {
                  "description": "The is default value.",
                  "type": "boolean"
                },
                "name": {
                  "description": "The name value.",
                  "type": "string"
                },
                "sort_order": {
                  "description": "The sort order value.",
                  "type": "integer"
                }
              },
              "required": [
                "color",
                "description",
                "display_description",
                "display_name",
                "hierarchy_level",
                "icon",
                "id",
                "is_default",
                "name",
                "sort_order"
              ],
              "type": "object"
            },
            "type": "array"
          }
        },
        "required": [
          "data"
        ],
        "type": "object"
      },
      "GetWorkspacesWorkspaceIdIterationsResult": {
        "additionalProperties": false,
        "properties": {
          "data": {
            "items": {
              "additionalProperties": false,
              "properties": {
                "created_at": {
                  "description": "The created at value.",
                  "format": "date-time",
                  "type": "string"
                },
                "description": {
                  "description": "The description value.",
                  "type": "string"
                },
                "end_date": {
                  "description": "The end date value.",
                  "type": "string"
                },
                "id": {
                  "description": "The id value.",
                  "type": "integer"
                },
                "is_global": {
                  "description": "The is global value.",
                  "type": "boolean"
                },
                "name": {
                  "description": "The name value.",
                  "type": "string"
                },
                "start_date": {
                  "description": "The start date value.",
                  "type": "string"
                },
                "status": {
                  "description": "The status value.",
                  "type": "string"
                },
                "type_color": {
                  "description": "The type color value.",
                  "type": "string"
                },
                "type_id": {
                  "description": "The type id value.",
                  "nullable": true,
                  "type": "integer"
                },
                "type_name": {
                  "description": "The type name value.",
                  "type": "string"
                },
                "updated_at": {
                  "description": "The updated at value.",
                  "format": "date-time",
                  "type": "string"
                },
                "workspace_id": {
                  "description": "The workspace id value.",
                  "nullable": true,
                  "type": "integer"
                },
                "workspace_name": {
                  "description": "The workspace name value.",
                  "type": "string"
                }
              },
              "required": [
                "created_at",
                "description",
                "end_date",
                "id",
                "is_global",
                "name",
                "start_date",
                "status",
                "updated_at"
              ],
              "type": "object"
            },
            "type": "array"
          },
          "pagination": {
            "$ref": "#/components/schemas/Pagination"
          }
        },
        "required": [
          "data",
          "pagination"
        ],
        "type": "object"
      },
      "GetWorkspacesWorkspaceIdLabelsLabelIdResult": {
        "additionalProperties": false,
        "properties": {
          "data": {
            "additionalProperties": false,
            "properties": {
              "color": {
                "description": "The color value.",
                "type": "string"
              },
              "created_at": {
                "description": "The created at value.",
                "type": "string"
              },
              "id": {
                "description": "The id value.",
                "type": "integer"
              },
              "name": {
                "description": "The name value.",
                "type": "string"
              },
              "updated_at": {
                "description": "The updated at value.",
                "type": "string"
              }
            },
            "required": [
              "color",
              "created_at",
              "id",
              "name",
              "updated_at"
            ],
            "type": "object"
          }
        },
        "required": [
          "data"
        ],
        "type": "object"
      },
      "GetWorkspacesWorkspaceIdLabelsResult": {
        "additionalProperties": false,
        "properties": {
          "data": {
            "items": {
              "additionalProperties": false,
              "properties": {
                "color": {
                  "description": "The color value.",
                  "type": "string"
                },
                "created_at": {
                  "description": "The created at value.",
                  "type": "string"
                },
                "id": {
                  "description": "The id value.",
                  "type": "integer"
                },
                "name": {
                  "description": "The name value.",
                  "type": "string"
                },
                "updated_at": {
                  "description": "The updated at value.",
                  "type": "string"
                }
              },
              "required": [
                "color",
                "created_at",
                "id",
                "name",
                "updated_at"
              ],
              "type": "object"
            },
            "type": "array"
          }
        },
        "required": [
          "data"
        ],
        "type": "object"
      },
      "GetWorkspacesWorkspaceIdMilestonesResult": {
        "additionalProperties": false,
        "properties": {
          "data": {
            "items": {
              "additionalProperties": false,
              "properties": {
                "category_color": {
                  "description": "The category color value.",
                  "type": "string"
                },
                "category_id": {
                  "description": "The category id value.",
                  "nullable": true,
                  "type": "integer"
                },
                "category_name": {
                  "description": "The category name value.",
                  "type": "string"
                },
                "created_at": {
                  "description": "The created at value.",
                  "format": "date-time",
                  "type": "string"
                },
                "description": {
                  "description": "The description value.",
                  "type": "string"
                },
                "external_key": {
                  "description": "The external key value.",
                  "nullable": true,
                  "type": "string"
                },
                "id": {
                  "description": "The id value.",
                  "type": "integer"
                },
                "is_global": {
                  "description": "The is global value.",
                  "type": "boolean"
                },
                "latest_release": {
                  "additionalProperties": false,
                  "description": "The latest release value.",
                  "nullable": true,
                  "properties": {
                    "body": {
                      "description": "The body value.",
                      "type": "string"
                    },
                    "created_at": {
                      "description": "The created at value.",
                      "type": "string"
                    },
                    "created_by": {
                      "description": "The created by value.",
                      "nullable": true,
                      "type": "integer"
                    },
                    "id": {
                      "description": "The id value.",
                      "type": "integer"
                    },
                    "is_draft": {
                      "description": "The is draft value.",
                      "type": "boolean"
                    },
                    "is_prerelease": {
                      "description": "The is prerelease value.",
                      "type": "boolean"
                    },
                    "milestone_id": {
                      "description": "The milestone id value.",
                      "type": "integer"
                    },
                    "name": {
                      "description": "The name value.",
                      "type": "string"
                    },
                    "scm_connection_id": {
                      "description": "The scm connection id value.",
                      "nullable": true,
                      "type": "integer"
                    },
                    "scm_release_id": {
                      "description": "The scm release id value.",
                      "nullable": true,
                      "type": "string"
                    },
                    "scm_release_url": {
                      "description": "The scm release url value.",
                      "nullable": true,
                      "type": "string"
                    },
                    "scm_repository": {
                      "description": "The scm repository value.",
                      "nullable": true,
                      "type": "string"
                    },
                    "tag_name": {
                      "description": "The tag name value.",
                      "type": "string"
                    },
                    "target_commitish": {
                      "description": "The target commitish value.",
                      "type": "string"
                    }
                  },
                  "required": [
                    "created_at",
                    "id",
                    "is_draft",
                    "is_prerelease",
                    "milestone_id",
                    "tag_name"
                  ],
                  "type": "object"
                },
                "name": {
                  "description": "The name value.",
                  "type": "string"
                },
                "position": {
                  "description": "The position value.",
                  "type": "integer"
                },
                "releases": {
                  "description": "The releases value.",
                  "items": {
                    "additionalProperties": false,
                    "properties": {
                      "body": {
                        "description": "The body value.",
                        "type": "string"
                      },
                      "created_at": {
                        "description": "The created at value.",
                        "type": "string"
                      },
                      "created_by": {
                        "description": "The created by value.",
                        "nullable": true,
                        "type": "integer"
                      },
                      "id": {
                        "description": "The id value.",
                        "type": "integer"
                      },
                      "is_draft": {
                        "description": "The is draft value.",
                        "type": "boolean"
                      },
                      "is_prerelease": {
                        "description": "The is prerelease value.",
                        "type": "boolean"
                      },
                      "milestone_id": {
                        "description": "The milestone id value.",
                        "type": "integer"
                      },
                      "name": {
                        "description": "The name value.",
                        "type": "string"
                      },
                      "scm_connection_id": {
                        "description": "The scm connection id value.",
                        "nullable": true,
                        "type": "integer"
                      },
                      "scm_release_id": {
                        "description": "The scm release id value.",
                        "nullable": true,
                        "type": "string"
                      },
                      "scm_release_url": {
                        "description": "The scm release url value.",
                        "nullable": true,
                        "type": "string"
                      },
                      "scm_repository": {
                        "description": "The scm repository value.",
                        "nullable": true,
                        "type": "string"
                      },
                      "tag_name": {
                        "description": "The tag name value.",
                        "type": "string"
                      },
                      "target_commitish": {
                        "description": "The target commitish value.",
                        "type": "string"
                      }
                    },
                    "required": [
                      "created_at",
                      "id",
                      "is_draft",
                      "is_prerelease",
                      "milestone_id",
                      "tag_name"
                    ],
                    "type": "object"
                  },
                  "type": "array"
                },
                "status": {
                  "description": "The status value.",
                  "type": "string"
                },
                "target_date": {
                  "description": "The target date value.",
                  "nullable": true,
                  "type": "string"
                },
                "updated_at": {
                  "description": "The updated at value.",
                  "format": "date-time",
                  "type": "string"
                },
                "workspace_id": {
                  "description": "The workspace id value.",
                  "nullable": true,
                  "type": "integer"
                },
                "workspace_name": {
                  "description": "The workspace name value.",
                  "type": "string"
                }
              },
              "required": [
                "created_at",
                "description",
                "id",
                "is_global",
                "name",
                "position",
                "status",
                "updated_at"
              ],
              "type": "object"
            },
            "type": "array"
          },
          "pagination": {
            "$ref": "#/components/schemas/Pagination"
          }
        },
        "required": [
          "data",
          "pagination"
        ],
        "type": "object"
      },
      "GetWorkspacesWorkspaceIdPageLabelsLabelIdResult": {
        "additionalProperties": false,
        "properties": {
          "data": {
            "additionalProperties": false,
            "properties": {
              "color": {
                "description": "The color value.",
                "type": "string"
              },
              "created_at": {
                "description": "The created at value.",
                "format": "date-time",
                "type": "string"
              },
              "id": {
                "description": "The id value.",
                "type": "integer"
              },
              "name": {
                "description": "The name value.",
                "type": "string"
              },
              "updated_at": {
                "description": "The updated at value.",
                "format": "date-time",
                "type": "string"
              },
              "workspace_id": {
                "description": "The workspace id value.",
                "type": "integer"
              }
            },
            "required": [
              "color",
              "created_at",
              "id",
              "name",
              "updated_at",
              "workspace_id"
            ],
            "type": "object"
          }
        },
        "required": [
          "data"
        ],
        "type": "object"
      },
      "GetWorkspacesWorkspaceIdPageLabelsResult": {
        "additionalProperties": false,
        "properties": {
          "data": {
            "items": {
              "additionalProperties": false,
              "properties": {
                "color": {
                  "description": "The color value.",
                  "type": "string"
                },
                "created_at": {
                  "description": "The created at value.",
                  "format": "date-time",
                  "type": "string"
                },
                "id": {
                  "description": "The id value.",
                  "type": "integer"
                },
                "name": {
                  "description": "The name value.",
                  "type": "string"
                },
                "updated_at": {
                  "description": "The updated at value.",
                  "format": "date-time",
                  "type": "string"
                },
                "workspace_id": {
                  "description": "The workspace id value.",
                  "type": "integer"
                }
              },
              "required": [
                "color",
                "created_at",
                "id",
                "name",
                "updated_at",
                "workspace_id"
              ],
              "type": "object"
            },
            "type": "array"
          }
        },
        "required": [
          "data"
        ],
        "type": "object"
      },
      "GetWorkspacesWorkspaceIdPagesArchivedResult": {
        "additionalProperties": false,
        "properties": {
          "data": {
            "items": {
              "additionalProperties": false,
              "properties": {
                "archived_at": {
                  "description": "The archived at value.",
                  "format": "date-time",
                  "type": "string"
                },
                "archived_by": {
                  "description": "The archived by value.",
                  "nullable": true,
                  "type": "integer"
                },
                "archived_by_name": {
                  "description": "The archived by name value.",
                  "type": "string"
                },
                "depth": {
                  "description": "The depth value.",
                  "type": "integer"
                },
                "id": {
                  "description": "The id value.",
                  "type": "integer"
                },
                "path": {
                  "description": "The path value.",
                  "type": "string"
                },
                "slug": {
                  "description": "The slug value.",
                  "type": "string"
                },
                "title": {
                  "description": "The title value.",
                  "type": "string"
                }
              },
              "required": [
                "archived_at",
                "archived_by_name",
                "depth",
                "id",
                "path",
                "slug",
                "title"
              ],
              "type": "object"
            },
            "type": "array"
          }
        },
        "required": [
          "data"
        ],
        "type": "object"
      },
      "GetWorkspacesWorkspaceIdPagesPageIdDiagramsAttachmentIdResult": {
        "additionalProperties": false,
        "properties": {
          "data": {
            "additionalProperties": false,
            "properties": {
              "attachment_id": {
                "description": "The attachment id value.",
                "type": "integer"
              },
              "content_hash": {
                "description": "The content hash value.",
                "type": "string"
              },
              "created_at": {
                "description": "The created at value.",
                "format": "date-time",
                "type": "string"
              },
              "kind": {
                "description": "The kind value.",
                "type": "string"
              },
              "name": {
                "description": "The name value.",
                "type": "string"
              },
              "page_id": {
                "description": "The page id value.",
                "type": "integer"
              },
              "payload": {
                "description": "The payload value.",
                "format": "byte",
                "type": "string"
              },
              "revision_number": {
                "description": "The revision number value.",
                "type": "integer"
              }
            },
            "required": [
              "attachment_id",
              "kind",
              "name",
              "page_id"
            ],
            "type": "object"
          }
        },
        "required": [
          "data"
        ],
        "type": "object"
      },
      "GetWorkspacesWorkspaceIdPagesPageIdDiagramsResult": {
        "additionalProperties": false,
        "properties": {
          "data": {
            "items": {
              "additionalProperties": false,
              "properties": {
                "attachment_id": {
                  "description": "The attachment id value.",
                  "type": "integer"
                },
                "content_hash": {
                  "description": "The content hash value.",
                  "type": "string"
                },
                "created_at": {
                  "description": "The created at value.",
                  "format": "date-time",
                  "type": "string"
                },
                "kind": {
                  "description": "The kind value.",
                  "type": "string"
                },
                "name": {
                  "description": "The name value.",
                  "type": "string"
                },
                "page_id": {
                  "description": "The page id value.",
                  "type": "integer"
                },
                "payload": {
                  "description": "The payload value.",
                  "format": "byte",
                  "type": "string"
                },
                "revision_number": {
                  "description": "The revision number value.",
                  "type": "integer"
                }
              },
              "required": [
                "attachment_id",
                "kind",
                "name",
                "page_id"
              ],
              "type": "object"
            },
            "type": "array"
          }
        },
        "required": [
          "data"
        ],
        "type": "object"
      },
      "GetWorkspacesWorkspaceIdPagesPageIdHistoryResult": {
        "additionalProperties": false,
        "properties": {
          "data": {
            "items": {
              "additionalProperties": false,
              "properties": {
                "author": {
                  "additionalProperties": false,
                  "description": "The author value.",
                  "nullable": true,
                  "properties": {
                    "id": {
                      "description": "The id value.",
                      "type": "integer"
                    },
                    "name": {
                      "description": "The name value.",
                      "type": "string"
                    },
                    "username": {
                      "description": "The username value.",
                      "type": "string"
                    }
                  },
                  "required": [
                    "id"
                  ],
                  "type": "object"
                },
                "change_summary": {
                  "description": "The change summary value.",
                  "type": "string"
                },
                "change_type": {
                  "description": "The change type value.",
                  "type": "string"
                },
                "content": {
                  "description": "The content value.",
                  "type": "string"
                },
                "content_hash": {
                  "description": "The content hash value.",
                  "type": "string"
                },
                "created_at": {
                  "description": "The created at value.",
                  "format": "date-time",
                  "type": "string"
                },
                "created_by": {
                  "description": "The created by value.",
                  "type": "integer"
                },
                "depth": {
                  "description": "The depth value.",
                  "type": "integer"
                },
                "excerpt": {
                  "description": "The excerpt value.",
                  "type": "string"
                },
                "id": {
                  "description": "The id value.",
                  "type": "integer"
                },
                "page_id": {
                  "description": "The page id value.",
                  "type": "integer"
                },
                "parent_id": {
                  "description": "The parent id value.",
                  "nullable": true,
                  "type": "integer"
                },
                "path": {
                  "description": "The path value.",
                  "type": "string"
                },
                "revision_number": {
                  "description": "The revision number value.",
                  "type": "integer"
                },
                "slug": {
                  "description": "The slug value.",
                  "type": "string"
                },
                "title": {
                  "description": "The title value.",
                  "type": "string"
                }
              },
              "required": [
                "change_summary",
                "change_type",
                "content",
                "content_hash",
                "created_at",
                "created_by",
                "depth",
                "excerpt",
                "id",
                "page_id",
                "path",
                "revision_number",
                "slug",
                "title"
              ],
              "type": "object"
            },
            "type": "array"
          },
          "pagination": {
            "$ref": "#/components/schemas/Pagination"
          }
        },
        "required": [
          "data",
          "pagination"
        ],
        "type": "object"
      },
      "GetWorkspacesWorkspaceIdPagesPageIdHistoryRevisionIdResult": {
        "additionalProperties": false,
        "properties": {
          "data": {
            "additionalProperties": false,
            "properties": {
              "author": {
                "additionalProperties": false,
                "description": "The author value.",
                "nullable": true,
                "properties": {
                  "id": {
                    "description": "The id value.",
                    "type": "integer"
                  },
                  "name": {
                    "description": "The name value.",
                    "type": "string"
                  },
                  "username": {
                    "description": "The username value.",
                    "type": "string"
                  }
                },
                "required": [
                  "id"
                ],
                "type": "object"
              },
              "change_summary": {
                "description": "The change summary value.",
                "type": "string"
              },
              "change_type": {
                "description": "The change type value.",
                "type": "string"
              },
              "content": {
                "description": "The content value.",
                "type": "string"
              },
              "content_hash": {
                "description": "The content hash value.",
                "type": "string"
              },
              "created_at": {
                "description": "The created at value.",
                "format": "date-time",
                "type": "string"
              },
              "created_by": {
                "description": "The created by value.",
                "type": "integer"
              },
              "depth": {
                "description": "The depth value.",
                "type": "integer"
              },
              "excerpt": {
                "description": "The excerpt value.",
                "type": "string"
              },
              "id": {
                "description": "The id value.",
                "type": "integer"
              },
              "page_id": {
                "description": "The page id value.",
                "type": "integer"
              },
              "parent_id": {
                "description": "The parent id value.",
                "nullable": true,
                "type": "integer"
              },
              "path": {
                "description": "The path value.",
                "type": "string"
              },
              "revision_number": {
                "description": "The revision number value.",
                "type": "integer"
              },
              "slug": {
                "description": "The slug value.",
                "type": "string"
              },
              "title": {
                "description": "The title value.",
                "type": "string"
              }
            },
            "required": [
              "change_summary",
              "change_type",
              "content",
              "content_hash",
              "created_at",
              "created_by",
              "depth",
              "excerpt",
              "id",
              "page_id",
              "path",
              "revision_number",
              "slug",
              "title"
            ],
            "type": "object"
          }
        },
        "required": [
          "data"
        ],
        "type": "object"
      },
      "GetWorkspacesWorkspaceIdPagesPageIdLabelsResult": {
        "additionalProperties": false,
        "properties": {
          "data": {
            "items": {
              "additionalProperties": false,
              "properties": {
                "color": {
                  "description": "The color value.",
                  "type": "string"
                },
                "created_at": {
                  "description": "The created at value.",
                  "format": "date-time",
                  "type": "string"
                },
                "id": {
                  "description": "The id value.",
                  "type": "integer"
                },
                "name": {
                  "description": "The name value.",
                  "type": "string"
                },
                "updated_at": {
                  "description": "The updated at value.",
                  "format": "date-time",
                  "type": "string"
                },
                "workspace_id": {
                  "description": "The workspace id value.",
                  "type": "integer"
                }
              },
              "required": [
                "color",
                "created_at",
                "id",
                "name",
                "updated_at",
                "workspace_id"
              ],
              "type": "object"
            },
            "type": "array"
          }
        },
        "required": [
          "data"
        ],
        "type": "object"
      },
      "GetWorkspacesWorkspaceIdPagesPageIdPermissionsResult": {
        "additionalProperties": false,
        "properties": {
          "data": {
            "additionalProperties": false,
            "properties": {
              "acl": {
                "description": "The acl value.",
                "items": {
                  "additionalProperties": false,
                  "properties": {
                    "granted_at": {
                      "description": "The granted at value.",
                      "format": "date-time",
                      "type": "string"
                    },
                    "granted_by": {
                      "description": "The granted by value.",
                      "nullable": true,
                      "type": "integer"
                    },
                    "id": {
                      "description": "The id value.",
                      "type": "integer"
                    },
                    "page_id": {
                      "description": "The page id value.",
                      "type": "integer"
                    },
                    "permission_level": {
                      "description": "The permission level value.",
                      "type": "string"
                    },
                    "principal_id": {
                      "description": "The principal id value.",
                      "type": "integer"
                    },
                    "principal_type": {
                      "description": "The principal type value.",
                      "type": "string"
                    }
                  },
                  "required": [
                    "granted_at",
                    "id",
                    "page_id",
                    "permission_level",
                    "principal_id",
                    "principal_type"
                  ],
                  "type": "object"
                },
                "type": "array"
              },
              "effective_level": {
                "description": "The effective level value.",
                "type": "string"
              },
              "inherit_permissions": {
                "description": "The inherit permissions value.",
                "type": "boolean"
              },
              "page_id": {
                "description": "The page id value.",
                "type": "integer"
              }
            },
            "required": [
              "acl",
              "effective_level",
              "inherit_permissions",
              "page_id"
            ],
            "type": "object"
          }
        },
        "required": [
          "data"
        ],
        "type": "object"
      },
      "GetWorkspacesWorkspaceIdPagesPageIdResult": {
        "additionalProperties": false,
        "properties": {
          "data": {
            "additionalProperties": false,
            "properties": {
              "archived_at": {
                "description": "The archived at value.",
                "format": "date-time",
                "nullable": true,
                "type": "string"
              },
              "archived_by": {
                "description": "The archived by value.",
                "nullable": true,
                "type": "integer"
              },
              "content": {
                "description": "The content value.",
                "type": "string"
              },
              "content_hash": {
                "description": "The content hash value.",
                "type": "string"
              },
              "created_at": {
                "description": "The created at value.",
                "format": "date-time",
                "type": "string"
              },
              "created_by": {
                "description": "The created by value.",
                "type": "integer"
              },
              "depth": {
                "description": "The depth value.",
                "type": "integer"
              },
              "excerpt": {
                "description": "The excerpt value.",
                "type": "string"
              },
              "frac_index": {
                "description": "The frac index value.",
                "nullable": true,
                "type": "string"
              },
              "id": {
                "description": "The id value.",
                "type": "integer"
              },
              "inherit_permissions": {
                "description": "The inherit permissions value.",
                "type": "boolean"
              },
              "is_home": {
                "description": "The is home value.",
                "type": "boolean"
              },
              "labels": {
                "description": "The labels value.",
                "items": {
                  "additionalProperties": false,
                  "properties": {
                    "color": {
                      "description": "The color value.",
                      "type": "string"
                    },
                    "created_at": {
                      "description": "The created at value.",
                      "format": "date-time",
                      "type": "string"
                    },
                    "id": {
                      "description": "The id value.",
                      "type": "integer"
                    },
                    "name": {
                      "description": "The name value.",
                      "type": "string"
                    },
                    "updated_at": {
                      "description": "The updated at value.",
                      "format": "date-time",
                      "type": "string"
                    },
                    "workspace_id": {
                      "description": "The workspace id value.",
                      "type": "integer"
                    }
                  },
                  "required": [
                    "color",
                    "created_at",
                    "id",
                    "name",
                    "updated_at",
                    "workspace_id"
                  ],
                  "type": "object"
                },
                "type": "array"
              },
              "metadata": {
                "description": "The metadata value.",
                "format": "byte",
                "type": "string"
              },
              "parent_id": {
                "description": "The parent id value.",
                "nullable": true,
                "type": "integer"
              },
              "path": {
                "description": "The path value.",
                "type": "string"
              },
              "rank": {
                "description": "The rank value.",
                "nullable": true,
                "type": "string"
              },
              "slug": {
                "description": "The slug value.",
                "type": "string"
              },
              "title": {
                "description": "The title value.",
                "type": "string"
              },
              "updated_at": {
                "description": "The updated at value.",
                "format": "date-time",
                "type": "string"
              },
              "updated_by": {
                "description": "The updated by value.",
                "nullable": true,
                "type": "integer"
              },
              "workspace_id": {
                "description": "The workspace id value.",
                "type": "integer"
              }
            },
            "required": [
              "content",
              "content_hash",
              "created_at",
              "created_by",
              "depth",
              "excerpt",
              "id",
              "inherit_permissions",
              "is_home",
              "labels",
              "metadata",
              "path",
              "slug",
              "title",
              "updated_at",
              "workspace_id"
            ],
            "type": "object"
          }
        },
        "required": [
          "data"
        ],
        "type": "object"
      },
      "GetWorkspacesWorkspaceIdPagesResult": {
        "additionalProperties": false,
        "properties": {
          "data": {
            "items": {
              "additionalProperties": false,
              "properties": {
                "archived_at": {
                  "description": "The archived at value.",
                  "format": "date-time",
                  "nullable": true,
                  "type": "string"
                },
                "archived_by": {
                  "description": "The archived by value.",
                  "nullable": true,
                  "type": "integer"
                },
                "content": {
                  "description": "The content value.",
                  "type": "string"
                },
                "content_hash": {
                  "description": "The content hash value.",
                  "type": "string"
                },
                "created_at": {
                  "description": "The created at value.",
                  "format": "date-time",
                  "type": "string"
                },
                "created_by": {
                  "description": "The created by value.",
                  "type": "integer"
                },
                "depth": {
                  "description": "The depth value.",
                  "type": "integer"
                },
                "excerpt": {
                  "description": "The excerpt value.",
                  "type": "string"
                },
                "frac_index": {
                  "description": "The frac index value.",
                  "nullable": true,
                  "type": "string"
                },
                "id": {
                  "description": "The id value.",
                  "type": "integer"
                },
                "inherit_permissions": {
                  "description": "The inherit permissions value.",
                  "type": "boolean"
                },
                "is_home": {
                  "description": "The is home value.",
                  "type": "boolean"
                },
                "labels": {
                  "description": "The labels value.",
                  "items": {
                    "additionalProperties": false,
                    "properties": {
                      "color": {
                        "description": "The color value.",
                        "type": "string"
                      },
                      "created_at": {
                        "description": "The created at value.",
                        "format": "date-time",
                        "type": "string"
                      },
                      "id": {
                        "description": "The id value.",
                        "type": "integer"
                      },
                      "name": {
                        "description": "The name value.",
                        "type": "string"
                      },
                      "updated_at": {
                        "description": "The updated at value.",
                        "format": "date-time",
                        "type": "string"
                      },
                      "workspace_id": {
                        "description": "The workspace id value.",
                        "type": "integer"
                      }
                    },
                    "required": [
                      "color",
                      "created_at",
                      "id",
                      "name",
                      "updated_at",
                      "workspace_id"
                    ],
                    "type": "object"
                  },
                  "type": "array"
                },
                "metadata": {
                  "description": "The metadata value.",
                  "format": "byte",
                  "type": "string"
                },
                "parent_id": {
                  "description": "The parent id value.",
                  "nullable": true,
                  "type": "integer"
                },
                "path": {
                  "description": "The path value.",
                  "type": "string"
                },
                "rank": {
                  "description": "The rank value.",
                  "nullable": true,
                  "type": "string"
                },
                "slug": {
                  "description": "The slug value.",
                  "type": "string"
                },
                "title": {
                  "description": "The title value.",
                  "type": "string"
                },
                "updated_at": {
                  "description": "The updated at value.",
                  "format": "date-time",
                  "type": "string"
                },
                "updated_by": {
                  "description": "The updated by value.",
                  "nullable": true,
                  "type": "integer"
                },
                "workspace_id": {
                  "description": "The workspace id value.",
                  "type": "integer"
                }
              },
              "required": [
                "content",
                "content_hash",
                "created_at",
                "created_by",
                "depth",
                "excerpt",
                "id",
                "inherit_permissions",
                "is_home",
                "labels",
                "metadata",
                "path",
                "slug",
                "title",
                "updated_at",
                "workspace_id"
              ],
              "type": "object"
            },
            "type": "array"
          }
        },
        "required": [
          "data"
        ],
        "type": "object"
      },
      "GetWorkspacesWorkspaceIdPagesSearchResult": {
        "additionalProperties": false,
        "properties": {
          "data": {
            "items": {
              "additionalProperties": false,
              "properties": {
                "archived_at": {
                  "description": "The archived at value.",
                  "format": "date-time",
                  "nullable": true,
                  "type": "string"
                },
                "archived_by": {
                  "description": "The archived by value.",
                  "nullable": true,
                  "type": "integer"
                },
                "content": {
                  "description": "The content value.",
                  "type": "string"
                },
                "content_hash": {
                  "description": "The content hash value.",
                  "type": "string"
                },
                "created_at": {
                  "description": "The created at value.",
                  "format": "date-time",
                  "type": "string"
                },
                "created_by": {
                  "description": "The created by value.",
                  "type": "integer"
                },
                "depth": {
                  "description": "The depth value.",
                  "type": "integer"
                },
                "excerpt": {
                  "description": "The excerpt value.",
                  "type": "string"
                },
                "frac_index": {
                  "description": "The frac index value.",
                  "nullable": true,
                  "type": "string"
                },
                "id": {
                  "description": "The id value.",
                  "type": "integer"
                },
                "inherit_permissions": {
                  "description": "The inherit permissions value.",
                  "type": "boolean"
                },
                "is_home": {
                  "description": "The is home value.",
                  "type": "boolean"
                },
                "labels": {
                  "description": "The labels value.",
                  "items": {
                    "additionalProperties": false,
                    "properties": {
                      "color": {
                        "description": "The color value.",
                        "type": "string"
                      },
                      "created_at": {
                        "description": "The created at value.",
                        "format": "date-time",
                        "type": "string"
                      },
                      "id": {
                        "description": "The id value.",
                        "type": "integer"
                      },
                      "name": {
                        "description": "The name value.",
                        "type": "string"
                      },
                      "updated_at": {
                        "description": "The updated at value.",
                        "format": "date-time",
                        "type": "string"
                      },
                      "workspace_id": {
                        "description": "The workspace id value.",
                        "type": "integer"
                      }
                    },
                    "required": [
                      "color",
                      "created_at",
                      "id",
                      "name",
                      "updated_at",
                      "workspace_id"
                    ],
                    "type": "object"
                  },
                  "type": "array"
                },
                "metadata": {
                  "description": "The metadata value.",
                  "format": "byte",
                  "type": "string"
                },
                "parent_id": {
                  "description": "The parent id value.",
                  "nullable": true,
                  "type": "integer"
                },
                "path": {
                  "description": "The path value.",
                  "type": "string"
                },
                "rank": {
                  "description": "The rank value.",
                  "nullable": true,
                  "type": "string"
                },
                "slug": {
                  "description": "The slug value.",
                  "type": "string"
                },
                "title": {
                  "description": "The title value.",
                  "type": "string"
                },
                "updated_at": {
                  "description": "The updated at value.",
                  "format": "date-time",
                  "type": "string"
                },
                "updated_by": {
                  "description": "The updated by value.",
                  "nullable": true,
                  "type": "integer"
                },
                "workspace_id": {
                  "description": "The workspace id value.",
                  "type": "integer"
                }
              },
              "required": [
                "content",
                "content_hash",
                "created_at",
                "created_by",
                "depth",
                "excerpt",
                "id",
                "inherit_permissions",
                "is_home",
                "labels",
                "metadata",
                "path",
                "slug",
                "title",
                "updated_at",
                "workspace_id"
              ],
              "type": "object"
            },
            "type": "array"
          }
        },
        "required": [
          "data"
        ],
        "type": "object"
      },
      "GetWorkspacesWorkspaceIdPrioritiesResult": {
        "additionalProperties": false,
        "properties": {
          "data": {
            "items": {
              "additionalProperties": false,
              "properties": {
                "builtin_key": {
                  "description": "The builtin key value.",
                  "nullable": true,
                  "type": "string"
                },
                "color": {
                  "description": "The color value.",
                  "type": "string"
                },
                "description": {
                  "description": "The description value.",
                  "type": "string"
                },
                "display_description": {
                  "description": "The display description value.",
                  "type": "string"
                },
                "display_name": {
                  "description": "The display name value.",
                  "type": "string"
                },
                "icon": {
                  "description": "The icon value.",
                  "type": "string"
                },
                "id": {
                  "description": "The id value.",
                  "type": "integer"
                },
                "is_default": {
                  "description": "The is default value.",
                  "type": "boolean"
                },
                "name": {
                  "description": "The name value.",
                  "type": "string"
                },
                "sort_order": {
                  "description": "The sort order value.",
                  "type": "integer"
                }
              },
              "required": [
                "color",
                "description",
                "display_description",
                "display_name",
                "icon",
                "id",
                "is_default",
                "name",
                "sort_order"
              ],
              "type": "object"
            },
            "type": "array"
          }
        },
        "required": [
          "data"
        ],
        "type": "object"
      },
      "GetWorkspacesWorkspaceIdRecurrenceRulesResult": {
        "additionalProperties": false,
        "properties": {
          "data": {
            "items": {
              "additionalProperties": false,
              "properties": {
                "copy_assignee": {
                  "description": "The copy assignee value.",
                  "type": "boolean"
                },
                "copy_custom_fields": {
                  "description": "The copy custom fields value.",
                  "type": "boolean"
                },
                "copy_description": {
                  "description": "The copy description value.",
                  "type": "boolean"
                },
                "copy_priority": {
                  "description": "The copy priority value.",
                  "type": "boolean"
                },
                "created_at": {
                  "description": "The created at value.",
                  "format": "date-time",
                  "type": "string"
                },
                "created_by": {
                  "description": "The created by value.",
                  "nullable": true,
                  "type": "integer"
                },
                "creator_name": {
                  "description": "The creator name value.",
                  "type": "string"
                },
                "dtend": {
                  "description": "The dtend value.",
                  "format": "date-time",
                  "nullable": true,
                  "type": "string"
                },
                "dtstart": {
                  "description": "The dtstart value.",
                  "format": "date-time",
                  "type": "string"
                },
                "id": {
                  "description": "The id value.",
                  "type": "integer"
                },
                "instance_count": {
                  "description": "The instance count value.",
                  "type": "integer"
                },
                "is_active": {
                  "description": "The is active value.",
                  "type": "boolean"
                },
                "last_generated_until": {
                  "description": "The last generated until value.",
                  "format": "date-time",
                  "nullable": true,
                  "type": "string"
                },
                "lead_time_days": {
                  "description": "The lead time days value.",
                  "type": "integer"
                },
                "next_generation_check": {
                  "description": "The next generation check value.",
                  "format": "date-time",
                  "nullable": true,
                  "type": "string"
                },
                "next_occurrence": {
                  "description": "The next occurrence value.",
                  "format": "date-time",
                  "nullable": true,
                  "type": "string"
                },
                "rrule": {
                  "description": "The rrule value.",
                  "type": "string"
                },
                "status_on_create": {
                  "description": "The status on create value.",
                  "nullable": true,
                  "type": "integer"
                },
                "template_item_id": {
                  "description": "The template item id value.",
                  "type": "integer"
                },
                "template_title": {
                  "description": "The template title value.",
                  "type": "string"
                },
                "timezone": {
                  "description": "The timezone value.",
                  "type": "string"
                },
                "updated_at": {
                  "description": "The updated at value.",
                  "format": "date-time",
                  "type": "string"
                },
                "workspace_id": {
                  "description": "The workspace id value.",
                  "type": "integer"
                },
                "workspace_key": {
                  "description": "The workspace key value.",
                  "type": "string"
                },
                "workspace_name": {
                  "description": "The workspace name value.",
                  "type": "string"
                }
              },
              "required": [
                "copy_assignee",
                "copy_custom_fields",
                "copy_description",
                "copy_priority",
                "created_at",
                "creator_name",
                "dtstart",
                "id",
                "instance_count",
                "is_active",
                "lead_time_days",
                "rrule",
                "template_item_id",
                "template_title",
                "timezone",
                "updated_at",
                "workspace_id",
                "workspace_key",
                "workspace_name"
              ],
              "type": "object"
            },
            "type": "array"
          }
        },
        "required": [
          "data"
        ],
        "type": "object"
      },
      "GetWorkspacesWorkspaceIdResult": {
        "additionalProperties": false,
        "properties": {
          "data": {
            "additionalProperties": false,
            "properties": {
              "active": {
                "description": "The active value.",
                "type": "boolean"
              },
              "avatar_url": {
                "description": "The avatar url value.",
                "nullable": true,
                "type": "string"
              },
              "color": {
                "description": "The color value.",
                "type": "string"
              },
              "configuration_set_id": {
                "description": "The configuration set id value.",
                "nullable": true,
                "type": "integer"
              },
              "created_at": {
                "description": "The created at value.",
                "type": "string"
              },
              "default_view": {
                "description": "The default view value.",
                "type": "string"
              },
              "description": {
                "description": "The description value.",
                "type": "string"
              },
              "icon": {
                "description": "The icon value.",
                "type": "string"
              },
              "id": {
                "description": "The id value.",
                "type": "integer"
              },
              "internal_comments_enabled": {
                "description": "The internal comments enabled value.",
                "type": "boolean"
              },
              "is_personal": {
                "description": "The is personal value.",
                "type": "boolean"
              },
              "is_template": {
                "description": "The is template value.",
                "type": "boolean"
              },
              "key": {
                "description": "The key value.",
                "type": "string"
              },
              "name": {
                "description": "The name value.",
                "type": "string"
              },
              "owner_id": {
                "description": "The owner id value.",
                "nullable": true,
                "type": "integer"
              },
              "time_project_categories": {
                "description": "The time project categories value.",
                "items": {
                  "type": "integer"
                },
                "type": "array"
              },
              "time_project_id": {
                "description": "The time project id value.",
                "nullable": true,
                "type": "integer"
              },
              "time_project_name": {
                "description": "The time project name value.",
                "type": "string"
              },
              "updated_at": {
                "description": "The updated at value.",
                "type": "string"
              }
            },
            "required": [
              "active",
              "color",
              "created_at",
              "default_view",
              "description",
              "icon",
              "id",
              "internal_comments_enabled",
              "is_personal",
              "is_template",
              "key",
              "name",
              "time_project_categories",
              "time_project_name",
              "updated_at"
            ],
            "type": "object"
          }
        },
        "required": [
          "data"
        ],
        "type": "object"
      },
      "GetWorkspacesWorkspaceIdStatusesResult": {
        "additionalProperties": false,
        "properties": {
          "data": {
            "items": {
              "additionalProperties": false,
              "properties": {
                "builtin_key": {
                  "description": "The builtin key value.",
                  "nullable": true,
                  "type": "string"
                },
                "category": {
                  "additionalProperties": false,
                  "description": "The category value.",
                  "properties": {
                    "builtin_key": {
                      "description": "The builtin key value.",
                      "nullable": true,
                      "type": "string"
                    },
                    "color": {
                      "description": "The color value.",
                      "type": "string"
                    },
                    "description": {
                      "description": "The description value.",
                      "type": "string"
                    },
                    "display_description": {
                      "description": "The display description value.",
                      "type": "string"
                    },
                    "display_name": {
                      "description": "The display name value.",
                      "type": "string"
                    },
                    "id": {
                      "description": "The id value.",
                      "type": "integer"
                    },
                    "is_completed": {
                      "description": "The is completed value.",
                      "type": "boolean"
                    },
                    "is_default": {
                      "description": "The is default value.",
                      "type": "boolean"
                    },
                    "name": {
                      "description": "The name value.",
                      "type": "string"
                    }
                  },
                  "required": [
                    "color",
                    "description",
                    "display_description",
                    "display_name",
                    "id",
                    "is_completed",
                    "is_default",
                    "name"
                  ],
                  "type": "object"
                },
                "description": {
                  "description": "The description value.",
                  "type": "string"
                },
                "display_description": {
                  "description": "The display description value.",
                  "type": "string"
                },
                "display_name": {
                  "description": "The display name value.",
                  "type": "string"
                },
                "id": {
                  "description": "The id value.",
                  "type": "integer"
                },
                "is_default": {
                  "description": "The is default value.",
                  "type": "boolean"
                },
                "name": {
                  "description": "The name value.",
                  "type": "string"
                }
              },
              "required": [
                "category",
                "description",
                "display_description",
                "display_name",
                "id",
                "is_default",
                "name"
              ],
              "type": "object"
            },
            "type": "array"
          }
        },
        "required": [
          "data"
        ],
        "type": "object"
      },
      "GetWorkspacesWorkspaceIdTestCasesResult": {
        "additionalProperties": false,
        "properties": {
          "data": {
            "items": {
              "additionalProperties": false,
              "nullable": true,
              "properties": {
                "created_at": {
                  "description": "The created at value.",
                  "format": "date-time",
                  "type": "string"
                },
                "estimated_duration": {
                  "description": "The estimated duration value.",
                  "type": "integer"
                },
                "folder_id": {
                  "description": "The folder id value.",
                  "nullable": true,
                  "type": "integer"
                },
                "folder_name": {
                  "description": "The folder name value.",
                  "type": "string"
                },
                "id": {
                  "description": "The id value.",
                  "type": "integer"
                },
                "labels": {
                  "description": "The labels value.",
                  "items": {
                    "additionalProperties": false,
                    "properties": {
                      "color": {
                        "description": "The color value.",
                        "type": "string"
                      },
                      "created_at": {
                        "description": "The created at value.",
                        "format": "date-time",
                        "type": "string"
                      },
                      "description": {
                        "description": "The description value.",
                        "type": "string"
                      },
                      "id": {
                        "description": "The id value.",
                        "type": "integer"
                      },
                      "name": {
                        "description": "The name value.",
                        "type": "string"
                      },
                      "updated_at": {
                        "description": "The updated at value.",
                        "format": "date-time",
                        "type": "string"
                      },
                      "workspace_id": {
                        "description": "The workspace id value.",
                        "type": "integer"
                      }
                    },
                    "required": [
                      "color",
                      "created_at",
                      "description",
                      "id",
                      "name",
                      "updated_at",
                      "workspace_id"
                    ],
                    "type": "object"
                  },
                  "type": "array"
                },
                "name": {
                  "description": "The name value.",
                  "type": "string"
                },
                "preconditions": {
                  "description": "The preconditions value.",
                  "type": "string"
                },
                "priority": {
                  "description": "The priority value.",
                  "type": "string"
                },
                "sort_order": {
                  "description": "The sort order value.",
                  "type": "integer"
                },
                "status": {
                  "description": "The status value.",
                  "type": "string"
                },
                "test_steps": {
                  "description": "The test steps value.",
                  "items": {
                    "additionalProperties": false,
                    "properties": {
                      "action": {
                        "description": "The action value.",
                        "type": "string"
                      },
                      "created_at": {
                        "description": "The created at value.",
                        "format": "date-time",
                        "type": "string"
                      },
                      "data": {
                        "description": "The data value.",
                        "type": "string"
                      },
                      "expected": {
                        "description": "The expected value.",
                        "type": "string"
                      },
                      "id": {
                        "description": "The id value.",
                        "type": "integer"
                      },
                      "step_number": {
                        "description": "The step number value.",
                        "type": "integer"
                      },
                      "test_case_id": {
                        "description": "The test case id value.",
                        "type": "integer"
                      },
                      "updated_at": {
                        "description": "The updated at value.",
                        "format": "date-time",
                        "type": "string"
                      }
                    },
                    "required": [
                      "action",
                      "created_at",
                      "data",
                      "expected",
                      "id",
                      "step_number",
                      "test_case_id",
                      "updated_at"
                    ],
                    "type": "object"
                  },
                  "type": "array"
                },
                "title": {
                  "description": "The title value.",
                  "type": "string"
                },
                "updated_at": {
                  "description": "The updated at value.",
                  "format": "date-time",
                  "type": "string"
                },
                "workspace_id": {
                  "description": "The workspace id value.",
                  "type": "integer"
                }
              },
              "required": [
                "created_at",
                "estimated_duration",
                "id",
                "name",
                "preconditions",
                "priority",
                "sort_order",
                "status",
                "title",
                "updated_at",
                "workspace_id"
              ],
              "type": "object"
            },
            "type": "array"
          },
          "pagination": {
            "$ref": "#/components/schemas/Pagination"
          }
        },
        "required": [
          "data",
          "pagination"
        ],
        "type": "object"
      },
      "GetWorkspacesWorkspaceIdTestCasesTestCaseIdConnectionsResult": {
        "additionalProperties": false,
        "properties": {
          "data": {
            "additionalProperties": false,
            "properties": {
              "executions": {
                "description": "The executions value.",
                "items": {
                  "additionalProperties": false,
                  "properties": {
                    "ended_at": {
                      "description": "The ended at value.",
                      "format": "date-time",
                      "nullable": true,
                      "type": "string"
                    },
                    "plan_id": {
                      "description": "The plan id value.",
                      "type": "integer"
                    },
                    "plan_name": {
                      "description": "The plan name value.",
                      "type": "string"
                    },
                    "run_id": {
                      "description": "The run id value.",
                      "type": "integer"
                    },
                    "run_name": {
                      "description": "The run name value.",
                      "type": "string"
                    },
                    "started_at": {
                      "description": "The started at value.",
                      "format": "date-time",
                      "type": "string"
                    },
                    "status": {
                      "description": "The status value.",
                      "type": "string"
                    },
                    "template_id": {
                      "description": "The template id value.",
                      "nullable": true,
                      "type": "integer"
                    },
                    "template_name": {
                      "description": "The template name value.",
                      "type": "string"
                    }
                  },
                  "required": [
                    "plan_id",
                    "plan_name",
                    "run_id",
                    "run_name",
                    "started_at",
                    "status"
                  ],
                  "type": "object"
                },
                "type": "array"
              },
              "run_templates": {
                "description": "The run templates value.",
                "items": {
                  "additionalProperties": false,
                  "properties": {
                    "description": {
                      "description": "The description value.",
                      "type": "string"
                    },
                    "id": {
                      "description": "The id value.",
                      "type": "integer"
                    },
                    "name": {
                      "description": "The name value.",
                      "type": "string"
                    },
                    "plan_id": {
                      "description": "The plan id value.",
                      "type": "integer"
                    },
                    "plan_name": {
                      "description": "The plan name value.",
                      "type": "string"
                    }
                  },
                  "required": [
                    "description",
                    "id",
                    "name",
                    "plan_id",
                    "plan_name"
                  ],
                  "type": "object"
                },
                "type": "array"
              },
              "test_plans": {
                "description": "The test plans value.",
                "items": {
                  "additionalProperties": false,
                  "properties": {
                    "description": {
                      "description": "The description value.",
                      "type": "string"
                    },
                    "id": {
                      "description": "The id value.",
                      "type": "integer"
                    },
                    "name": {
                      "description": "The name value.",
                      "type": "string"
                    }
                  },
                  "required": [
                    "description",
                    "id",
                    "name"
                  ],
                  "type": "object"
                },
                "type": "array"
              }
            },
            "required": [
              "executions",
              "run_templates",
              "test_plans"
            ],
            "type": "object"
          }
        },
        "required": [
          "data"
        ],
        "type": "object"
      },
      "GetWorkspacesWorkspaceIdTestCasesTestCaseIdLabelsResult": {
        "additionalProperties": false,
        "properties": {
          "data": {
            "items": {
              "additionalProperties": false,
              "properties": {
                "color": {
                  "description": "The color value.",
                  "type": "string"
                },
                "created_at": {
                  "description": "The created at value.",
                  "format": "date-time",
                  "type": "string"
                },
                "description": {
                  "description": "The description value.",
                  "type": "string"
                },
                "id": {
                  "description": "The id value.",
                  "type": "integer"
                },
                "name": {
                  "description": "The name value.",
                  "type": "string"
                },
                "updated_at": {
                  "description": "The updated at value.",
                  "format": "date-time",
                  "type": "string"
                },
                "workspace_id": {
                  "description": "The workspace id value.",
                  "type": "integer"
                }
              },
              "required": [
                "color",
                "created_at",
                "description",
                "id",
                "name",
                "updated_at",
                "workspace_id"
              ],
              "type": "object"
            },
            "type": "array"
          }
        },
        "required": [
          "data"
        ],
        "type": "object"
      },
      "GetWorkspacesWorkspaceIdTestCasesTestCaseIdResult": {
        "additionalProperties": false,
        "properties": {
          "data": {
            "additionalProperties": false,
            "nullable": true,
            "properties": {
              "created_at": {
                "description": "The created at value.",
                "format": "date-time",
                "type": "string"
              },
              "estimated_duration": {
                "description": "The estimated duration value.",
                "type": "integer"
              },
              "folder_id": {
                "description": "The folder id value.",
                "nullable": true,
                "type": "integer"
              },
              "folder_name": {
                "description": "The folder name value.",
                "type": "string"
              },
              "id": {
                "description": "The id value.",
                "type": "integer"
              },
              "labels": {
                "description": "The labels value.",
                "items": {
                  "additionalProperties": false,
                  "properties": {
                    "color": {
                      "description": "The color value.",
                      "type": "string"
                    },
                    "created_at": {
                      "description": "The created at value.",
                      "format": "date-time",
                      "type": "string"
                    },
                    "description": {
                      "description": "The description value.",
                      "type": "string"
                    },
                    "id": {
                      "description": "The id value.",
                      "type": "integer"
                    },
                    "name": {
                      "description": "The name value.",
                      "type": "string"
                    },
                    "updated_at": {
                      "description": "The updated at value.",
                      "format": "date-time",
                      "type": "string"
                    },
                    "workspace_id": {
                      "description": "The workspace id value.",
                      "type": "integer"
                    }
                  },
                  "required": [
                    "color",
                    "created_at",
                    "description",
                    "id",
                    "name",
                    "updated_at",
                    "workspace_id"
                  ],
                  "type": "object"
                },
                "type": "array"
              },
              "name": {
                "description": "The name value.",
                "type": "string"
              },
              "preconditions": {
                "description": "The preconditions value.",
                "type": "string"
              },
              "priority": {
                "description": "The priority value.",
                "type": "string"
              },
              "sort_order": {
                "description": "The sort order value.",
                "type": "integer"
              },
              "status": {
                "description": "The status value.",
                "type": "string"
              },
              "test_steps": {
                "description": "The test steps value.",
                "items": {
                  "additionalProperties": false,
                  "properties": {
                    "action": {
                      "description": "The action value.",
                      "type": "string"
                    },
                    "created_at": {
                      "description": "The created at value.",
                      "format": "date-time",
                      "type": "string"
                    },
                    "data": {
                      "description": "The data value.",
                      "type": "string"
                    },
                    "expected": {
                      "description": "The expected value.",
                      "type": "string"
                    },
                    "id": {
                      "description": "The id value.",
                      "type": "integer"
                    },
                    "step_number": {
                      "description": "The step number value.",
                      "type": "integer"
                    },
                    "test_case_id": {
                      "description": "The test case id value.",
                      "type": "integer"
                    },
                    "updated_at": {
                      "description": "The updated at value.",
                      "format": "date-time",
                      "type": "string"
                    }
                  },
                  "required": [
                    "action",
                    "created_at",
                    "data",
                    "expected",
                    "id",
                    "step_number",
                    "test_case_id",
                    "updated_at"
                  ],
                  "type": "object"
                },
                "type": "array"
              },
              "title": {
                "description": "The title value.",
                "type": "string"
              },
              "updated_at": {
                "description": "The updated at value.",
                "format": "date-time",
                "type": "string"
              },
              "workspace_id": {
                "description": "The workspace id value.",
                "type": "integer"
              }
            },
            "required": [
              "created_at",
              "estimated_duration",
              "id",
              "name",
              "preconditions",
              "priority",
              "sort_order",
              "status",
              "title",
              "updated_at",
              "workspace_id"
            ],
            "type": "object"
          }
        },
        "required": [
          "data"
        ],
        "type": "object"
      },
      "GetWorkspacesWorkspaceIdTestCasesTestCaseIdStepsResult": {
        "additionalProperties": false,
        "properties": {
          "data": {
            "items": {
              "additionalProperties": false,
              "properties": {
                "action": {
                  "description": "The action value.",
                  "type": "string"
                },
                "created_at": {
                  "description": "The created at value.",
                  "format": "date-time",
                  "type": "string"
                },
                "data": {
                  "description": "The data value.",
                  "type": "string"
                },
                "expected": {
                  "description": "The expected value.",
                  "type": "string"
                },
                "id": {
                  "description": "The id value.",
                  "type": "integer"
                },
                "step_number": {
                  "description": "The step number value.",
                  "type": "integer"
                },
                "test_case_id": {
                  "description": "The test case id value.",
                  "type": "integer"
                },
                "updated_at": {
                  "description": "The updated at value.",
                  "format": "date-time",
                  "type": "string"
                }
              },
              "required": [
                "action",
                "created_at",
                "data",
                "expected",
                "id",
                "step_number",
                "test_case_id",
                "updated_at"
              ],
              "type": "object"
            },
            "type": "array"
          }
        },
        "required": [
          "data"
        ],
        "type": "object"
      },
      "GetWorkspacesWorkspaceIdTestCoverageConfigResult": {
        "additionalProperties": false,
        "properties": {
          "data": {
            "additionalProperties": false,
            "nullable": true,
            "properties": {
              "collection_id": {
                "description": "The collection id value.",
                "nullable": true,
                "type": "integer"
              },
              "created_at": {
                "description": "The created at value.",
                "format": "date-time",
                "type": "string"
              },
              "id": {
                "description": "The id value.",
                "type": "integer"
              },
              "requirement_item_type_ids": {
                "description": "The requirement item type ids value.",
                "items": {
                  "type": "integer"
                },
                "type": "array"
              },
              "updated_at": {
                "description": "The updated at value.",
                "format": "date-time",
                "type": "string"
              },
              "workspace_id": {
                "description": "The workspace id value.",
                "nullable": true,
                "type": "integer"
              }
            },
            "required": [
              "created_at",
              "id",
              "requirement_item_type_ids",
              "updated_at"
            ],
            "type": "object"
          }
        },
        "required": [
          "data"
        ],
        "type": "object"
      },
      "GetWorkspacesWorkspaceIdTestCoverageRequirementsResult": {
        "additionalProperties": false,
        "properties": {
          "data": {
            "items": {
              "additionalProperties": false,
              "properties": {
                "is_covered": {
                  "description": "The is covered value.",
                  "type": "boolean"
                },
                "item_id": {
                  "description": "The item id value.",
                  "type": "integer"
                },
                "item_type_color": {
                  "description": "The item type color value.",
                  "type": "string"
                },
                "item_type_icon": {
                  "description": "The item type icon value.",
                  "type": "string"
                },
                "item_type_id": {
                  "description": "The item type id value.",
                  "type": "integer"
                },
                "item_type_name": {
                  "description": "The item type name value.",
                  "type": "string"
                },
                "linked_test_count": {
                  "description": "The linked test count value.",
                  "type": "integer"
                },
                "status_id": {
                  "description": "The status id value.",
                  "nullable": true,
                  "type": "integer"
                },
                "status_name": {
                  "description": "The status name value.",
                  "type": "string"
                },
                "title": {
                  "description": "The title value.",
                  "type": "string"
                },
                "workspace_item_number": {
                  "description": "The workspace item number value.",
                  "type": "integer"
                },
                "workspace_key": {
                  "description": "The workspace key value.",
                  "type": "string"
                }
              },
              "required": [
                "is_covered",
                "item_id",
                "item_type_color",
                "item_type_icon",
                "item_type_id",
                "item_type_name",
                "linked_test_count",
                "title",
                "workspace_item_number",
                "workspace_key"
              ],
              "type": "object"
            },
            "type": "array"
          },
          "meta": {
            "additionalProperties": false,
            "properties": {
              "summary": {
                "additionalProperties": false,
                "description": "The summary value.",
                "properties": {
                  "coverage_rate": {
                    "description": "The coverage rate value.",
                    "type": "number"
                  },
                  "covered": {
                    "description": "The covered value.",
                    "type": "integer"
                  },
                  "not_covered": {
                    "description": "The not covered value.",
                    "type": "integer"
                  },
                  "total": {
                    "description": "The total value.",
                    "type": "integer"
                  }
                },
                "required": [
                  "coverage_rate",
                  "covered",
                  "not_covered",
                  "total"
                ],
                "type": "object"
              }
            },
            "required": [
              "summary"
            ],
            "type": "object"
          },
          "pagination": {
            "$ref": "#/components/schemas/Pagination"
          }
        },
        "required": [
          "data",
          "pagination",
          "meta"
        ],
        "type": "object"
      },
      "GetWorkspacesWorkspaceIdTestCoverageSummaryResult": {
        "additionalProperties": false,
        "properties": {
          "data": {
            "additionalProperties": false,
            "properties": {
              "coverage_rate": {
                "description": "The coverage rate value.",
                "type": "number"
              },
              "covered": {
                "description": "The covered value.",
                "type": "integer"
              },
              "not_covered": {
                "description": "The not covered value.",
                "type": "integer"
              },
              "total": {
                "description": "The total value.",
                "type": "integer"
              }
            },
            "required": [
              "coverage_rate",
              "covered",
              "not_covered",
              "total"
            ],
            "type": "object"
          }
        },
        "required": [
          "data"
        ],
        "type": "object"
      },
      "GetWorkspacesWorkspaceIdTestFoldersFolderIdResult": {
        "additionalProperties": false,
        "properties": {
          "data": {
            "additionalProperties": false,
            "nullable": true,
            "properties": {
              "created_at": {
                "description": "The created at value.",
                "format": "date-time",
                "type": "string"
              },
              "description": {
                "description": "The description value.",
                "type": "string"
              },
              "id": {
                "description": "The id value.",
                "type": "integer"
              },
              "name": {
                "description": "The name value.",
                "type": "string"
              },
              "parent_id": {
                "description": "The parent id value.",
                "nullable": true,
                "type": "integer"
              },
              "sort_order": {
                "description": "The sort order value.",
                "type": "integer"
              },
              "test_case_count": {
                "description": "The test case count value.",
                "type": "integer"
              },
              "updated_at": {
                "description": "The updated at value.",
                "format": "date-time",
                "type": "string"
              },
              "workspace_id": {
                "description": "The workspace id value.",
                "type": "integer"
              }
            },
            "required": [
              "created_at",
              "description",
              "id",
              "name",
              "sort_order",
              "updated_at",
              "workspace_id"
            ],
            "type": "object"
          }
        },
        "required": [
          "data"
        ],
        "type": "object"
      },
      "GetWorkspacesWorkspaceIdTestFoldersResult": {
        "additionalProperties": false,
        "properties": {
          "data": {
            "items": {
              "additionalProperties": false,
              "nullable": true,
              "properties": {
                "created_at": {
                  "description": "The created at value.",
                  "format": "date-time",
                  "type": "string"
                },
                "description": {
                  "description": "The description value.",
                  "type": "string"
                },
                "id": {
                  "description": "The id value.",
                  "type": "integer"
                },
                "name": {
                  "description": "The name value.",
                  "type": "string"
                },
                "parent_id": {
                  "description": "The parent id value.",
                  "nullable": true,
                  "type": "integer"
                },
                "sort_order": {
                  "description": "The sort order value.",
                  "type": "integer"
                },
                "test_case_count": {
                  "description": "The test case count value.",
                  "type": "integer"
                },
                "updated_at": {
                  "description": "The updated at value.",
                  "format": "date-time",
                  "type": "string"
                },
                "workspace_id": {
                  "description": "The workspace id value.",
                  "type": "integer"
                }
              },
              "required": [
                "created_at",
                "description",
                "id",
                "name",
                "sort_order",
                "updated_at",
                "workspace_id"
              ],
              "type": "object"
            },
            "type": "array"
          },
          "pagination": {
            "$ref": "#/components/schemas/Pagination"
          }
        },
        "required": [
          "data",
          "pagination"
        ],
        "type": "object"
      },
      "GetWorkspacesWorkspaceIdTestLabelsResult": {
        "additionalProperties": false,
        "properties": {
          "data": {
            "items": {
              "additionalProperties": false,
              "properties": {
                "color": {
                  "description": "The color value.",
                  "type": "string"
                },
                "created_at": {
                  "description": "The created at value.",
                  "format": "date-time",
                  "type": "string"
                },
                "description": {
                  "description": "The description value.",
                  "type": "string"
                },
                "id": {
                  "description": "The id value.",
                  "type": "integer"
                },
                "name": {
                  "description": "The name value.",
                  "type": "string"
                },
                "updated_at": {
                  "description": "The updated at value.",
                  "format": "date-time",
                  "type": "string"
                },
                "workspace_id": {
                  "description": "The workspace id value.",
                  "type": "integer"
                }
              },
              "required": [
                "color",
                "created_at",
                "description",
                "id",
                "name",
                "updated_at",
                "workspace_id"
              ],
              "type": "object"
            },
            "type": "array"
          }
        },
        "required": [
          "data"
        ],
        "type": "object"
      },
      "GetWorkspacesWorkspaceIdTestPlansPlanIdResult": {
        "additionalProperties": false,
        "properties": {
          "data": {
            "additionalProperties": false,
            "nullable": true,
            "properties": {
              "created_at": {
                "description": "The created at value.",
                "format": "date-time",
                "type": "string"
              },
              "description": {
                "description": "The description value.",
                "type": "string"
              },
              "failed_runs": {
                "description": "The failed runs value.",
                "type": "integer"
              },
              "id": {
                "description": "The id value.",
                "type": "integer"
              },
              "last_run_date": {
                "description": "The last run date value.",
                "format": "date-time",
                "nullable": true,
                "type": "string"
              },
              "last_run_status": {
                "description": "The last run status value.",
                "type": "string"
              },
              "milestone_id": {
                "description": "The milestone id value.",
                "nullable": true,
                "type": "integer"
              },
              "milestone_name": {
                "description": "The milestone name value.",
                "type": "string"
              },
              "name": {
                "description": "The name value.",
                "type": "string"
              },
              "successful_runs": {
                "description": "The successful runs value.",
                "type": "integer"
              },
              "test_case_count": {
                "description": "The test case count value.",
                "type": "integer"
              },
              "total_runs": {
                "description": "The total runs value.",
                "type": "integer"
              },
              "updated_at": {
                "description": "The updated at value.",
                "format": "date-time",
                "type": "string"
              },
              "workspace_id": {
                "description": "The workspace id value.",
                "type": "integer"
              }
            },
            "required": [
              "created_at",
              "description",
              "id",
              "name",
              "updated_at",
              "workspace_id"
            ],
            "type": "object"
          }
        },
        "required": [
          "data"
        ],
        "type": "object"
      },
      "GetWorkspacesWorkspaceIdTestPlansPlanIdRunsResult": {
        "additionalProperties": false,
        "properties": {
          "data": {
            "items": {
              "additionalProperties": false,
              "properties": {
                "assignee_avatar": {
                  "description": "The assignee avatar value.",
                  "type": "string"
                },
                "assignee_email": {
                  "description": "The assignee email value.",
                  "type": "string"
                },
                "assignee_id": {
                  "description": "The assignee id value.",
                  "nullable": true,
                  "type": "integer"
                },
                "assignee_name": {
                  "description": "The assignee name value.",
                  "type": "string"
                },
                "created_at": {
                  "description": "The created at value.",
                  "format": "date-time",
                  "type": "string"
                },
                "ended_at": {
                  "description": "The ended at value.",
                  "format": "date-time",
                  "nullable": true,
                  "type": "string"
                },
                "id": {
                  "description": "The id value.",
                  "type": "integer"
                },
                "name": {
                  "description": "The name value.",
                  "type": "string"
                },
                "plan_id": {
                  "description": "The plan id value.",
                  "type": "integer"
                },
                "started_at": {
                  "description": "The started at value.",
                  "format": "date-time",
                  "type": "string"
                },
                "template_id": {
                  "description": "The template id value.",
                  "type": "integer"
                },
                "workspace_id": {
                  "description": "The workspace id value.",
                  "type": "integer"
                }
              },
              "required": [
                "created_at",
                "id",
                "name",
                "plan_id",
                "started_at",
                "workspace_id"
              ],
              "type": "object"
            },
            "type": "array"
          }
        },
        "required": [
          "data"
        ],
        "type": "object"
      },
      "GetWorkspacesWorkspaceIdTestPlansPlanIdTestCasesResult": {
        "additionalProperties": false,
        "properties": {
          "data": {
            "items": {
              "additionalProperties": false,
              "properties": {
                "created_at": {
                  "description": "The created at value.",
                  "format": "date-time",
                  "type": "string"
                },
                "estimated_duration": {
                  "description": "The estimated duration value.",
                  "type": "integer"
                },
                "folder_id": {
                  "description": "The folder id value.",
                  "nullable": true,
                  "type": "integer"
                },
                "folder_name": {
                  "description": "The folder name value.",
                  "type": "string"
                },
                "id": {
                  "description": "The id value.",
                  "type": "integer"
                },
                "labels": {
                  "description": "The labels value.",
                  "items": {
                    "additionalProperties": false,
                    "properties": {
                      "color": {
                        "description": "The color value.",
                        "type": "string"
                      },
                      "created_at": {
                        "description": "The created at value.",
                        "format": "date-time",
                        "type": "string"
                      },
                      "description": {
                        "description": "The description value.",
                        "type": "string"
                      },
                      "id": {
                        "description": "The id value.",
                        "type": "integer"
                      },
                      "name": {
                        "description": "The name value.",
                        "type": "string"
                      },
                      "updated_at": {
                        "description": "The updated at value.",
                        "format": "date-time",
                        "type": "string"
                      },
                      "workspace_id": {
                        "description": "The workspace id value.",
                        "type": "integer"
                      }
                    },
                    "required": [
                      "color",
                      "created_at",
                      "description",
                      "id",
                      "name",
                      "updated_at",
                      "workspace_id"
                    ],
                    "type": "object"
                  },
                  "type": "array"
                },
                "name": {
                  "description": "The name value.",
                  "type": "string"
                },
                "preconditions": {
                  "description": "The preconditions value.",
                  "type": "string"
                },
                "priority": {
                  "description": "The priority value.",
                  "type": "string"
                },
                "sort_order": {
                  "description": "The sort order value.",
                  "type": "integer"
                },
                "status": {
                  "description": "The status value.",
                  "type": "string"
                },
                "test_steps": {
                  "description": "The test steps value.",
                  "items": {
                    "additionalProperties": false,
                    "properties": {
                      "action": {
                        "description": "The action value.",
                        "type": "string"
                      },
                      "created_at": {
                        "description": "The created at value.",
                        "format": "date-time",
                        "type": "string"
                      },
                      "data": {
                        "description": "The data value.",
                        "type": "string"
                      },
                      "expected": {
                        "description": "The expected value.",
                        "type": "string"
                      },
                      "id": {
                        "description": "The id value.",
                        "type": "integer"
                      },
                      "step_number": {
                        "description": "The step number value.",
                        "type": "integer"
                      },
                      "test_case_id": {
                        "description": "The test case id value.",
                        "type": "integer"
                      },
                      "updated_at": {
                        "description": "The updated at value.",
                        "format": "date-time",
                        "type": "string"
                      }
                    },
                    "required": [
                      "action",
                      "created_at",
                      "data",
                      "expected",
                      "id",
                      "step_number",
                      "test_case_id",
                      "updated_at"
                    ],
                    "type": "object"
                  },
                  "type": "array"
                },
                "title": {
                  "description": "The title value.",
                  "type": "string"
                },
                "updated_at": {
                  "description": "The updated at value.",
                  "format": "date-time",
                  "type": "string"
                },
                "workspace_id": {
                  "description": "The workspace id value.",
                  "type": "integer"
                }
              },
              "required": [
                "created_at",
                "estimated_duration",
                "id",
                "name",
                "preconditions",
                "priority",
                "sort_order",
                "status",
                "title",
                "updated_at",
                "workspace_id"
              ],
              "type": "object"
            },
            "type": "array"
          }
        },
        "required": [
          "data"
        ],
        "type": "object"
      },
      "GetWorkspacesWorkspaceIdTestPlansResult": {
        "additionalProperties": false,
        "properties": {
          "data": {
            "items": {
              "additionalProperties": false,
              "nullable": true,
              "properties": {
                "created_at": {
                  "description": "The created at value.",
                  "format": "date-time",
                  "type": "string"
                },
                "description": {
                  "description": "The description value.",
                  "type": "string"
                },
                "failed_runs": {
                  "description": "The failed runs value.",
                  "type": "integer"
                },
                "id": {
                  "description": "The id value.",
                  "type": "integer"
                },
                "last_run_date": {
                  "description": "The last run date value.",
                  "format": "date-time",
                  "nullable": true,
                  "type": "string"
                },
                "last_run_status": {
                  "description": "The last run status value.",
                  "type": "string"
                },
                "milestone_id": {
                  "description": "The milestone id value.",
                  "nullable": true,
                  "type": "integer"
                },
                "milestone_name": {
                  "description": "The milestone name value.",
                  "type": "string"
                },
                "name": {
                  "description": "The name value.",
                  "type": "string"
                },
                "successful_runs": {
                  "description": "The successful runs value.",
                  "type": "integer"
                },
                "test_case_count": {
                  "description": "The test case count value.",
                  "type": "integer"
                },
                "total_runs": {
                  "description": "The total runs value.",
                  "type": "integer"
                },
                "updated_at": {
                  "description": "The updated at value.",
                  "format": "date-time",
                  "type": "string"
                },
                "workspace_id": {
                  "description": "The workspace id value.",
                  "type": "integer"
                }
              },
              "required": [
                "created_at",
                "description",
                "id",
                "name",
                "updated_at",
                "workspace_id"
              ],
              "type": "object"
            },
            "type": "array"
          },
          "pagination": {
            "$ref": "#/components/schemas/Pagination"
          }
        },
        "required": [
          "data",
          "pagination"
        ],
        "type": "object"
      },
      "GetWorkspacesWorkspaceIdTestReportsSummaryResult": {
        "additionalProperties": false,
        "properties": {
          "data": {
            "additionalProperties": false,
            "properties": {
              "overall": {
                "additionalProperties": false,
                "description": "The overall value.",
                "properties": {
                  "blocked": {
                    "description": "The blocked value.",
                    "type": "integer"
                  },
                  "failed": {
                    "description": "The failed value.",
                    "type": "integer"
                  },
                  "not_run": {
                    "description": "The not run value.",
                    "type": "integer"
                  },
                  "pass_rate": {
                    "description": "The pass rate value.",
                    "type": "number"
                  },
                  "passed": {
                    "description": "The passed value.",
                    "type": "integer"
                  },
                  "skipped": {
                    "description": "The skipped value.",
                    "type": "integer"
                  },
                  "total_runs": {
                    "description": "The total runs value.",
                    "type": "integer"
                  },
                  "total_tests": {
                    "description": "The total tests value.",
                    "type": "integer"
                  }
                },
                "required": [
                  "blocked",
                  "failed",
                  "not_run",
                  "pass_rate",
                  "passed",
                  "skipped",
                  "total_runs",
                  "total_tests"
                ],
                "type": "object"
              },
              "recent_blocked": {
                "description": "The recent blocked value.",
                "items": {
                  "additionalProperties": false,
                  "properties": {
                    "blocked_at": {
                      "description": "The blocked at value.",
                      "format": "date-time",
                      "nullable": true,
                      "type": "string"
                    },
                    "reason": {
                      "description": "The reason value.",
                      "type": "string"
                    },
                    "run_id": {
                      "description": "The run id value.",
                      "type": "integer"
                    },
                    "run_name": {
                      "description": "The run name value.",
                      "type": "string"
                    },
                    "test_case_id": {
                      "description": "The test case id value.",
                      "type": "integer"
                    },
                    "test_case_title": {
                      "description": "The test case title value.",
                      "type": "string"
                    }
                  },
                  "required": [
                    "reason",
                    "run_id",
                    "run_name",
                    "test_case_id",
                    "test_case_title"
                  ],
                  "type": "object"
                },
                "type": "array"
              },
              "recent_failures": {
                "description": "The recent failures value.",
                "items": {
                  "additionalProperties": false,
                  "properties": {
                    "failed_at": {
                      "description": "The failed at value.",
                      "format": "date-time",
                      "nullable": true,
                      "type": "string"
                    },
                    "run_id": {
                      "description": "The run id value.",
                      "type": "integer"
                    },
                    "run_name": {
                      "description": "The run name value.",
                      "type": "string"
                    },
                    "test_case_id": {
                      "description": "The test case id value.",
                      "type": "integer"
                    },
                    "test_case_title": {
                      "description": "The test case title value.",
                      "type": "string"
                    }
                  },
                  "required": [
                    "run_id",
                    "run_name",
                    "test_case_id",
                    "test_case_title"
                  ],
                  "type": "object"
                },
                "type": "array"
              },
              "trend": {
                "description": "The trend value.",
                "items": {
                  "additionalProperties": false,
                  "properties": {
                    "date": {
                      "description": "The date value.",
                      "type": "string"
                    },
                    "pass_rate": {
                      "description": "The pass rate value.",
                      "type": "number"
                    },
                    "total": {
                      "description": "The total value.",
                      "type": "integer"
                    }
                  },
                  "required": [
                    "date",
                    "pass_rate",
                    "total"
                  ],
                  "type": "object"
                },
                "type": "array"
              }
            },
            "required": [
              "overall",
              "recent_blocked",
              "recent_failures",
              "trend"
            ],
            "type": "object"
          }
        },
        "required": [
          "data"
        ],
        "type": "object"
      },
      "GetWorkspacesWorkspaceIdTestResultsResultIdItemsResult": {
        "additionalProperties": false,
        "properties": {
          "data": {
            "items": {
              "additionalProperties": false,
              "properties": {
                "assignee_avatar": {
                  "description": "The assignee avatar value.",
                  "type": "string"
                },
                "assignee_email": {
                  "description": "The assignee email value.",
                  "type": "string"
                },
                "assignee_id": {
                  "description": "The assignee id value.",
                  "nullable": true,
                  "type": "integer"
                },
                "assignee_name": {
                  "description": "The assignee name value.",
                  "type": "string"
                },
                "calendar_data": {
                  "description": "The calendar data value.",
                  "items": {
                    "additionalProperties": false,
                    "properties": {
                      "created_at": {
                        "description": "The created at value.",
                        "type": "string"
                      },
                      "duration_minutes": {
                        "description": "The duration minutes value.",
                        "type": "integer"
                      },
                      "notes": {
                        "description": "The notes value.",
                        "type": "string"
                      },
                      "scheduled_date": {
                        "description": "The scheduled date value.",
                        "type": "string"
                      },
                      "scheduled_time": {
                        "description": "The scheduled time value.",
                        "type": "string"
                      },
                      "user_id": {
                        "description": "The user id value.",
                        "type": "integer"
                      },
                      "workspace_id": {
                        "description": "The workspace id value.",
                        "type": "integer"
                      }
                    },
                    "required": [
                      "created_at",
                      "scheduled_date",
                      "user_id",
                      "workspace_id"
                    ],
                    "type": "object"
                  },
                  "type": "array"
                },
                "channel_id": {
                  "description": "The channel id value.",
                  "nullable": true,
                  "type": "integer"
                },
                "channel_name": {
                  "description": "The channel name value.",
                  "type": "string"
                },
                "children": {
                  "description": "The children value.",
                  "items": {
                    "description": "Nested resource reference.",
                    "type": "object"
                  },
                  "type": "array"
                },
                "completed_at": {
                  "description": "The completed at value.",
                  "format": "date-time",
                  "nullable": true,
                  "type": "string"
                },
                "created_at": {
                  "description": "The created at value.",
                  "format": "date-time",
                  "type": "string"
                },
                "creator_email": {
                  "description": "The creator email value.",
                  "type": "string"
                },
                "creator_id": {
                  "description": "The creator id value.",
                  "nullable": true,
                  "type": "integer"
                },
                "creator_name": {
                  "description": "The creator name value.",
                  "type": "string"
                },
                "creator_portal_customer_email": {
                  "description": "The creator portal customer email value.",
                  "type": "string"
                },
                "creator_portal_customer_id": {
                  "description": "The creator portal customer id value.",
                  "nullable": true,
                  "type": "integer"
                },
                "creator_portal_customer_name": {
                  "description": "The creator portal customer name value.",
                  "type": "string"
                },
                "custom_field_values": {
                  "additionalProperties": {
                    "description": "Arbitrary JSON extension value."
                  },
                  "description": "The custom field values value.",
                  "type": "object"
                },
                "description": {
                  "description": "The description value.",
                  "type": "string"
                },
                "description_html": {
                  "description": "The description html value.",
                  "type": "string"
                },
                "due_date": {
                  "description": "The due date value.",
                  "format": "date-time",
                  "nullable": true,
                  "type": "string"
                },
                "effective_project_id": {
                  "description": "The effective project id value.",
                  "nullable": true,
                  "type": "integer"
                },
                "effective_project_name": {
                  "description": "The effective project name value.",
                  "type": "string"
                },
                "end_date": {
                  "description": "The end date value.",
                  "format": "date-time",
                  "nullable": true,
                  "type": "string"
                },
                "estimate_minutes": {
                  "description": "The estimate minutes value.",
                  "nullable": true,
                  "type": "integer"
                },
                "frac_index": {
                  "description": "The frac index value.",
                  "nullable": true,
                  "type": "string"
                },
                "id": {
                  "description": "The id value.",
                  "type": "integer"
                },
                "inherit_project": {
                  "description": "The inherit project value.",
                  "type": "boolean"
                },
                "is_task": {
                  "description": "Whether the item is a personal task. True is valid only in the authenticated caller's personal workspace and only with the Open or Done system status.",
                  "type": "boolean"
                },
                "item_type_builtin_key": {
                  "description": "The item type builtin key value.",
                  "type": "string"
                },
                "item_type_id": {
                  "description": "The item type id value.",
                  "nullable": true,
                  "type": "integer"
                },
                "item_type_name": {
                  "description": "The item type name value.",
                  "type": "string"
                },
                "iteration_end_date": {
                  "description": "The iteration end date value.",
                  "type": "string"
                },
                "iteration_id": {
                  "description": "The iteration id value.",
                  "nullable": true,
                  "type": "integer"
                },
                "iteration_name": {
                  "description": "The iteration name value.",
                  "type": "string"
                },
                "key": {
                  "description": "The key value.",
                  "type": "string"
                },
                "labels": {
                  "description": "The labels value.",
                  "items": {
                    "additionalProperties": false,
                    "properties": {
                      "color": {
                        "description": "The color value.",
                        "type": "string"
                      },
                      "created_at": {
                        "description": "The created at value.",
                        "format": "date-time",
                        "type": "string"
                      },
                      "id": {
                        "description": "The id value.",
                        "type": "integer"
                      },
                      "name": {
                        "description": "The name value.",
                        "type": "string"
                      },
                      "updated_at": {
                        "description": "The updated at value.",
                        "format": "date-time",
                        "type": "string"
                      }
                    },
                    "required": [
                      "color",
                      "created_at",
                      "id",
                      "name",
                      "updated_at"
                    ],
                    "type": "object"
                  },
                  "type": "array"
                },
                "last_active_at": {
                  "description": "The last active at value.",
                  "format": "date-time",
                  "type": "string"
                },
                "milestones": {
                  "description": "The milestones value.",
                  "items": {
                    "additionalProperties": false,
                    "properties": {
                      "category_color": {
                        "description": "The category color value.",
                        "type": "string"
                      },
                      "category_id": {
                        "description": "The category id value.",
                        "nullable": true,
                        "type": "integer"
                      },
                      "category_name": {
                        "description": "The category name value.",
                        "type": "string"
                      },
                      "created_at": {
                        "description": "The created at value.",
                        "format": "date-time",
                        "type": "string"
                      },
                      "description": {
                        "description": "The description value.",
                        "type": "string"
                      },
                      "external_key": {
                        "description": "The external key value.",
                        "nullable": true,
                        "type": "string"
                      },
                      "id": {
                        "description": "The id value.",
                        "type": "integer"
                      },
                      "is_global": {
                        "description": "The is global value.",
                        "type": "boolean"
                      },
                      "latest_release": {
                        "additionalProperties": false,
                        "description": "The latest release value.",
                        "nullable": true,
                        "properties": {
                          "body": {
                            "description": "The body value.",
                            "type": "string"
                          },
                          "created_at": {
                            "description": "The created at value.",
                            "type": "string"
                          },
                          "created_by": {
                            "description": "The created by value.",
                            "nullable": true,
                            "type": "integer"
                          },
                          "id": {
                            "description": "The id value.",
                            "type": "integer"
                          },
                          "is_draft": {
                            "description": "The is draft value.",
                            "type": "boolean"
                          },
                          "is_prerelease": {
                            "description": "The is prerelease value.",
                            "type": "boolean"
                          },
                          "milestone_id": {
                            "description": "The milestone id value.",
                            "type": "integer"
                          },
                          "name": {
                            "description": "The name value.",
                            "type": "string"
                          },
                          "scm_connection_id": {
                            "description": "The scm connection id value.",
                            "nullable": true,
                            "type": "integer"
                          },
                          "scm_release_id": {
                            "description": "The scm release id value.",
                            "nullable": true,
                            "type": "string"
                          },
                          "scm_release_url": {
                            "description": "The scm release url value.",
                            "nullable": true,
                            "type": "string"
                          },
                          "scm_repository": {
                            "description": "The scm repository value.",
                            "nullable": true,
                            "type": "string"
                          },
                          "tag_name": {
                            "description": "The tag name value.",
                            "type": "string"
                          },
                          "target_commitish": {
                            "description": "The target commitish value.",
                            "type": "string"
                          }
                        },
                        "required": [
                          "created_at",
                          "id",
                          "is_draft",
                          "is_prerelease",
                          "milestone_id",
                          "tag_name"
                        ],
                        "type": "object"
                      },
                      "name": {
                        "description": "The name value.",
                        "type": "string"
                      },
                      "position": {
                        "description": "The position value.",
                        "type": "integer"
                      },
                      "releases": {
                        "description": "The releases value.",
                        "items": {
                          "additionalProperties": false,
                          "properties": {
                            "body": {
                              "description": "The body value.",
                              "type": "string"
                            },
                            "created_at": {
                              "description": "The created at value.",
                              "type": "string"
                            },
                            "created_by": {
                              "description": "The created by value.",
                              "nullable": true,
                              "type": "integer"
                            },
                            "id": {
                              "description": "The id value.",
                              "type": "integer"
                            },
                            "is_draft": {
                              "description": "The is draft value.",
                              "type": "boolean"
                            },
                            "is_prerelease": {
                              "description": "The is prerelease value.",
                              "type": "boolean"
                            },
                            "milestone_id": {
                              "description": "The milestone id value.",
                              "type": "integer"
                            },
                            "name": {
                              "description": "The name value.",
                              "type": "string"
                            },
                            "scm_connection_id": {
                              "description": "The scm connection id value.",
                              "nullable": true,
                              "type": "integer"
                            },
                            "scm_release_id": {
                              "description": "The scm release id value.",
                              "nullable": true,
                              "type": "string"
                            },
                            "scm_release_url": {
                              "description": "The scm release url value.",
                              "nullable": true,
                              "type": "string"
                            },
                            "scm_repository": {
                              "description": "The scm repository value.",
                              "nullable": true,
                              "type": "string"
                            },
                            "tag_name": {
                              "description": "The tag name value.",
                              "type": "string"
                            },
                            "target_commitish": {
                              "description": "The target commitish value.",
                              "type": "string"
                            }
                          },
                          "required": [
                            "created_at",
                            "id",
                            "is_draft",
                            "is_prerelease",
                            "milestone_id",
                            "tag_name"
                          ],
                          "type": "object"
                        },
                        "type": "array"
                      },
                      "status": {
                        "description": "The status value.",
                        "type": "string"
                      },
                      "target_date": {
                        "description": "The target date value.",
                        "nullable": true,
                        "type": "string"
                      },
                      "updated_at": {
                        "description": "The updated at value.",
                        "format": "date-time",
                        "type": "string"
                      },
                      "workspace_id": {
                        "description": "The workspace id value.",
                        "nullable": true,
                        "type": "integer"
                      },
                      "workspace_name": {
                        "description": "The workspace name value.",
                        "type": "string"
                      }
                    },
                    "required": [
                      "created_at",
                      "description",
                      "id",
                      "is_global",
                      "name",
                      "position",
                      "status",
                      "updated_at"
                    ],
                    "type": "object"
                  },
                  "type": "array"
                },
                "parent_id": {
                  "description": "The parent id value.",
                  "nullable": true,
                  "type": "integer"
                },
                "parent_key": {
                  "description": "The parent key value.",
                  "type": "string"
                },
                "parent_title": {
                  "description": "The parent title value.",
                  "type": "string"
                },
                "parent_workspace_item_number": {
                  "description": "The parent workspace item number value.",
                  "nullable": true,
                  "type": "integer"
                },
                "personal_labels": {
                  "description": "The personal labels value.",
                  "items": {
                    "additionalProperties": false,
                    "properties": {
                      "color": {
                        "description": "The color value.",
                        "type": "string"
                      },
                      "created_at": {
                        "description": "The created at value.",
                        "format": "date-time",
                        "type": "string"
                      },
                      "id": {
                        "description": "The id value.",
                        "type": "integer"
                      },
                      "name": {
                        "description": "The name value.",
                        "type": "string"
                      },
                      "updated_at": {
                        "description": "The updated at value.",
                        "format": "date-time",
                        "type": "string"
                      },
                      "user_id": {
                        "description": "The user id value.",
                        "nullable": true,
                        "type": "integer"
                      }
                    },
                    "required": [
                      "color",
                      "created_at",
                      "id",
                      "name",
                      "updated_at"
                    ],
                    "type": "object"
                  },
                  "type": "array"
                },
                "priority_builtin_key": {
                  "description": "The priority builtin key value.",
                  "type": "string"
                },
                "priority_color": {
                  "description": "The priority color value.",
                  "type": "string"
                },
                "priority_icon": {
                  "description": "The priority icon value.",
                  "type": "string"
                },
                "priority_id": {
                  "description": "The priority id value.",
                  "nullable": true,
                  "type": "integer"
                },
                "priority_name": {
                  "description": "The priority name value.",
                  "type": "string"
                },
                "project_id": {
                  "description": "The project id value.",
                  "nullable": true,
                  "type": "integer"
                },
                "project_inheritance_mode": {
                  "description": "The project inheritance mode value.",
                  "type": "string"
                },
                "project_name": {
                  "description": "The project name value.",
                  "type": "string"
                },
                "related_work_item_id": {
                  "description": "The related work item id value.",
                  "nullable": true,
                  "type": "integer"
                },
                "related_work_item_number": {
                  "description": "The related work item number value.",
                  "type": "integer"
                },
                "related_work_item_title": {
                  "description": "The related work item title value.",
                  "type": "string"
                },
                "related_work_item_workspace_id": {
                  "description": "The related work item workspace id value.",
                  "type": "integer"
                },
                "related_work_item_workspace_key": {
                  "description": "The related work item workspace key value.",
                  "type": "string"
                },
                "reporter_avatar": {
                  "description": "The reporter avatar value.",
                  "type": "string"
                },
                "reporter_email": {
                  "description": "The reporter email value.",
                  "type": "string"
                },
                "reporter_id": {
                  "description": "The reporter id value.",
                  "nullable": true,
                  "type": "integer"
                },
                "reporter_name": {
                  "description": "The reporter name value.",
                  "type": "string"
                },
                "request_type_id": {
                  "description": "The request type id value.",
                  "nullable": true,
                  "type": "integer"
                },
                "request_type_name": {
                  "description": "The request type name value.",
                  "type": "string"
                },
                "start_date": {
                  "description": "The start date value.",
                  "format": "date-time",
                  "nullable": true,
                  "type": "string"
                },
                "status_builtin_key": {
                  "description": "The status builtin key value.",
                  "type": "string"
                },
                "status_color": {
                  "description": "The status color value.",
                  "type": "string"
                },
                "status_id": {
                  "description": "The status id value.",
                  "nullable": true,
                  "type": "integer"
                },
                "status_name": {
                  "description": "The status name value.",
                  "type": "string"
                },
                "status_since": {
                  "description": "The status since value.",
                  "format": "date-time",
                  "nullable": true,
                  "type": "string"
                },
                "story_points": {
                  "description": "The story points value.",
                  "nullable": true,
                  "type": "number"
                },
                "time_project_id": {
                  "description": "The time project id value.",
                  "nullable": true,
                  "type": "integer"
                },
                "time_project_name": {
                  "description": "The time project name value.",
                  "type": "string"
                },
                "title": {
                  "description": "The title value.",
                  "type": "string"
                },
                "updated_at": {
                  "description": "The updated at value.",
                  "format": "date-time",
                  "type": "string"
                },
                "virtual_field_data": {
                  "additionalProperties": {
                    "description": "Arbitrary JSON extension value."
                  },
                  "description": "The virtual field data value.",
                  "type": "object"
                },
                "workspace_id": {
                  "description": "The workspace id value.",
                  "type": "integer"
                },
                "workspace_item_number": {
                  "description": "The workspace item number value.",
                  "type": "integer"
                },
                "workspace_key": {
                  "description": "The workspace key value.",
                  "type": "string"
                },
                "workspace_name": {
                  "description": "The workspace name value.",
                  "type": "string"
                }
              },
              "required": [
                "created_at",
                "description",
                "id",
                "inherit_project",
                "is_task",
                "last_active_at",
                "title",
                "updated_at",
                "workspace_id",
                "workspace_item_number"
              ],
              "type": "object"
            },
            "type": "array"
          }
        },
        "required": [
          "data"
        ],
        "type": "object"
      },
      "GetWorkspacesWorkspaceIdTestRunTemplatesResult": {
        "additionalProperties": false,
        "properties": {
          "data": {
            "items": {
              "additionalProperties": false,
              "nullable": true,
              "properties": {
                "created_at": {
                  "description": "The created at value.",
                  "format": "date-time",
                  "type": "string"
                },
                "description": {
                  "description": "The description value.",
                  "type": "string"
                },
                "id": {
                  "description": "The id value.",
                  "type": "integer"
                },
                "name": {
                  "description": "The name value.",
                  "type": "string"
                },
                "plan_id": {
                  "description": "The plan id value.",
                  "type": "integer"
                },
                "plan_name": {
                  "description": "The plan name value.",
                  "type": "string"
                },
                "updated_at": {
                  "description": "The updated at value.",
                  "format": "date-time",
                  "type": "string"
                },
                "workspace_id": {
                  "description": "The workspace id value.",
                  "type": "integer"
                }
              },
              "required": [
                "created_at",
                "description",
                "id",
                "name",
                "plan_id",
                "updated_at",
                "workspace_id"
              ],
              "type": "object"
            },
            "type": "array"
          },
          "pagination": {
            "$ref": "#/components/schemas/Pagination"
          }
        },
        "required": [
          "data",
          "pagination"
        ],
        "type": "object"
      },
      "GetWorkspacesWorkspaceIdTestRunTemplatesTemplateIdExecutionsResult": {
        "additionalProperties": false,
        "properties": {
          "data": {
            "items": {
              "additionalProperties": false,
              "properties": {
                "assignee_avatar": {
                  "description": "The assignee avatar value.",
                  "type": "string"
                },
                "assignee_email": {
                  "description": "The assignee email value.",
                  "type": "string"
                },
                "assignee_id": {
                  "description": "The assignee id value.",
                  "nullable": true,
                  "type": "integer"
                },
                "assignee_name": {
                  "description": "The assignee name value.",
                  "type": "string"
                },
                "created_at": {
                  "description": "The created at value.",
                  "format": "date-time",
                  "type": "string"
                },
                "ended_at": {
                  "description": "The ended at value.",
                  "format": "date-time",
                  "nullable": true,
                  "type": "string"
                },
                "id": {
                  "description": "The id value.",
                  "type": "integer"
                },
                "name": {
                  "description": "The name value.",
                  "type": "string"
                },
                "plan_id": {
                  "description": "The plan id value.",
                  "type": "integer"
                },
                "started_at": {
                  "description": "The started at value.",
                  "format": "date-time",
                  "type": "string"
                },
                "template_id": {
                  "description": "The template id value.",
                  "type": "integer"
                },
                "workspace_id": {
                  "description": "The workspace id value.",
                  "type": "integer"
                }
              },
              "required": [
                "created_at",
                "id",
                "name",
                "plan_id",
                "started_at",
                "workspace_id"
              ],
              "type": "object"
            },
            "type": "array"
          }
        },
        "required": [
          "data"
        ],
        "type": "object"
      },
      "GetWorkspacesWorkspaceIdTestRunTemplatesTemplateIdResult": {
        "additionalProperties": false,
        "properties": {
          "data": {
            "additionalProperties": false,
            "nullable": true,
            "properties": {
              "created_at": {
                "description": "The created at value.",
                "format": "date-time",
                "type": "string"
              },
              "description": {
                "description": "The description value.",
                "type": "string"
              },
              "id": {
                "description": "The id value.",
                "type": "integer"
              },
              "name": {
                "description": "The name value.",
                "type": "string"
              },
              "plan_id": {
                "description": "The plan id value.",
                "type": "integer"
              },
              "plan_name": {
                "description": "The plan name value.",
                "type": "string"
              },
              "updated_at": {
                "description": "The updated at value.",
                "format": "date-time",
                "type": "string"
              },
              "workspace_id": {
                "description": "The workspace id value.",
                "type": "integer"
              }
            },
            "required": [
              "created_at",
              "description",
              "id",
              "name",
              "plan_id",
              "updated_at",
              "workspace_id"
            ],
            "type": "object"
          }
        },
        "required": [
          "data"
        ],
        "type": "object"
      },
      "GetWorkspacesWorkspaceIdTestRunsResult": {
        "additionalProperties": false,
        "properties": {
          "data": {
            "items": {
              "additionalProperties": false,
              "nullable": true,
              "properties": {
                "assignee_avatar": {
                  "description": "The assignee avatar value.",
                  "type": "string"
                },
                "assignee_email": {
                  "description": "The assignee email value.",
                  "type": "string"
                },
                "assignee_id": {
                  "description": "The assignee id value.",
                  "nullable": true,
                  "type": "integer"
                },
                "assignee_name": {
                  "description": "The assignee name value.",
                  "type": "string"
                },
                "created_at": {
                  "description": "The created at value.",
                  "format": "date-time",
                  "type": "string"
                },
                "ended_at": {
                  "description": "The ended at value.",
                  "format": "date-time",
                  "nullable": true,
                  "type": "string"
                },
                "id": {
                  "description": "The id value.",
                  "type": "integer"
                },
                "name": {
                  "description": "The name value.",
                  "type": "string"
                },
                "plan_id": {
                  "description": "The plan id value.",
                  "type": "integer"
                },
                "started_at": {
                  "description": "The started at value.",
                  "format": "date-time",
                  "type": "string"
                },
                "template_id": {
                  "description": "The template id value.",
                  "type": "integer"
                },
                "workspace_id": {
                  "description": "The workspace id value.",
                  "type": "integer"
                }
              },
              "required": [
                "created_at",
                "id",
                "name",
                "plan_id",
                "started_at",
                "workspace_id"
              ],
              "type": "object"
            },
            "type": "array"
          },
          "pagination": {
            "$ref": "#/components/schemas/Pagination"
          }
        },
        "required": [
          "data",
          "pagination"
        ],
        "type": "object"
      },
      "GetWorkspacesWorkspaceIdTestRunsRunIdDetailResult": {
        "additionalProperties": false,
        "properties": {
          "data": {
            "additionalProperties": false,
            "nullable": true,
            "properties": {
              "results": {
                "description": "The results value.",
                "items": {
                  "additionalProperties": false,
                  "properties": {
                    "actual_result": {
                      "description": "The actual result value.",
                      "type": "string"
                    },
                    "created_at": {
                      "description": "The created at value.",
                      "format": "date-time",
                      "type": "string"
                    },
                    "executed_at": {
                      "description": "The executed at value.",
                      "format": "date-time",
                      "nullable": true,
                      "type": "string"
                    },
                    "id": {
                      "description": "The id value.",
                      "type": "integer"
                    },
                    "notes": {
                      "description": "The notes value.",
                      "type": "string"
                    },
                    "run_id": {
                      "description": "The run id value.",
                      "type": "integer"
                    },
                    "status": {
                      "description": "The status value.",
                      "type": "string"
                    },
                    "test_case_id": {
                      "description": "The test case id value.",
                      "type": "integer"
                    },
                    "test_case_title": {
                      "description": "The test case title value.",
                      "type": "string"
                    },
                    "updated_at": {
                      "description": "The updated at value.",
                      "format": "date-time",
                      "type": "string"
                    }
                  },
                  "required": [
                    "actual_result",
                    "created_at",
                    "id",
                    "notes",
                    "run_id",
                    "status",
                    "test_case_id",
                    "test_case_title",
                    "updated_at"
                  ],
                  "type": "object"
                },
                "type": "array"
              },
              "run": {
                "additionalProperties": false,
                "description": "The run value.",
                "nullable": true,
                "properties": {
                  "assignee_avatar": {
                    "description": "The assignee avatar value.",
                    "type": "string"
                  },
                  "assignee_email": {
                    "description": "The assignee email value.",
                    "type": "string"
                  },
                  "assignee_id": {
                    "description": "The assignee id value.",
                    "nullable": true,
                    "type": "integer"
                  },
                  "assignee_name": {
                    "description": "The assignee name value.",
                    "type": "string"
                  },
                  "created_at": {
                    "description": "The created at value.",
                    "format": "date-time",
                    "type": "string"
                  },
                  "ended_at": {
                    "description": "The ended at value.",
                    "format": "date-time",
                    "nullable": true,
                    "type": "string"
                  },
                  "id": {
                    "description": "The id value.",
                    "type": "integer"
                  },
                  "name": {
                    "description": "The name value.",
                    "type": "string"
                  },
                  "plan_id": {
                    "description": "The plan id value.",
                    "type": "integer"
                  },
                  "started_at": {
                    "description": "The started at value.",
                    "format": "date-time",
                    "type": "string"
                  },
                  "template_id": {
                    "description": "The template id value.",
                    "type": "integer"
                  },
                  "workspace_id": {
                    "description": "The workspace id value.",
                    "type": "integer"
                  }
                },
                "required": [
                  "created_at",
                  "id",
                  "name",
                  "plan_id",
                  "started_at",
                  "workspace_id"
                ],
                "type": "object"
              },
              "step_results": {
                "description": "The step results value.",
                "items": {
                  "additionalProperties": false,
                  "properties": {
                    "actual_result": {
                      "description": "The actual result value.",
                      "type": "string"
                    },
                    "executed_at": {
                      "description": "The executed at value.",
                      "format": "date-time",
                      "nullable": true,
                      "type": "string"
                    },
                    "item_id": {
                      "description": "The item id value.",
                      "nullable": true,
                      "type": "integer"
                    },
                    "notes": {
                      "description": "The notes value.",
                      "type": "string"
                    },
                    "status": {
                      "description": "The status value.",
                      "type": "string"
                    },
                    "step_id": {
                      "description": "The step id value.",
                      "type": "integer"
                    },
                    "test_case_id": {
                      "description": "The test case id value.",
                      "type": "integer"
                    }
                  },
                  "required": [
                    "actual_result",
                    "notes",
                    "status",
                    "step_id",
                    "test_case_id"
                  ],
                  "type": "object"
                },
                "type": "array"
              },
              "test_cases": {
                "description": "The test cases value.",
                "items": {
                  "additionalProperties": false,
                  "properties": {
                    "created_at": {
                      "description": "The created at value.",
                      "format": "date-time",
                      "type": "string"
                    },
                    "estimated_duration": {
                      "description": "The estimated duration value.",
                      "type": "integer"
                    },
                    "folder_id": {
                      "description": "The folder id value.",
                      "nullable": true,
                      "type": "integer"
                    },
                    "folder_name": {
                      "description": "The folder name value.",
                      "type": "string"
                    },
                    "id": {
                      "description": "The id value.",
                      "type": "integer"
                    },
                    "labels": {
                      "description": "The labels value.",
                      "items": {
                        "additionalProperties": false,
                        "properties": {
                          "color": {
                            "description": "The color value.",
                            "type": "string"
                          },
                          "created_at": {
                            "description": "The created at value.",
                            "format": "date-time",
                            "type": "string"
                          },
                          "description": {
                            "description": "The description value.",
                            "type": "string"
                          },
                          "id": {
                            "description": "The id value.",
                            "type": "integer"
                          },
                          "name": {
                            "description": "The name value.",
                            "type": "string"
                          },
                          "updated_at": {
                            "description": "The updated at value.",
                            "format": "date-time",
                            "type": "string"
                          },
                          "workspace_id": {
                            "description": "The workspace id value.",
                            "type": "integer"
                          }
                        },
                        "required": [
                          "color",
                          "created_at",
                          "description",
                          "id",
                          "name",
                          "updated_at",
                          "workspace_id"
                        ],
                        "type": "object"
                      },
                      "type": "array"
                    },
                    "name": {
                      "description": "The name value.",
                      "type": "string"
                    },
                    "preconditions": {
                      "description": "The preconditions value.",
                      "type": "string"
                    },
                    "priority": {
                      "description": "The priority value.",
                      "type": "string"
                    },
                    "sort_order": {
                      "description": "The sort order value.",
                      "type": "integer"
                    },
                    "status": {
                      "description": "The status value.",
                      "type": "string"
                    },
                    "test_steps": {
                      "description": "The test steps value.",
                      "items": {
                        "additionalProperties": false,
                        "properties": {
                          "action": {
                            "description": "The action value.",
                            "type": "string"
                          },
                          "created_at": {
                            "description": "The created at value.",
                            "format": "date-time",
                            "type": "string"
                          },
                          "data": {
                            "description": "The data value.",
                            "type": "string"
                          },
                          "expected": {
                            "description": "The expected value.",
                            "type": "string"
                          },
                          "id": {
                            "description": "The id value.",
                            "type": "integer"
                          },
                          "step_number": {
                            "description": "The step number value.",
                            "type": "integer"
                          },
                          "test_case_id": {
                            "description": "The test case id value.",
                            "type": "integer"
                          },
                          "updated_at": {
                            "description": "The updated at value.",
                            "format": "date-time",
                            "type": "string"
                          }
                        },
                        "required": [
                          "action",
                          "created_at",
                          "data",
                          "expected",
                          "id",
                          "step_number",
                          "test_case_id",
                          "updated_at"
                        ],
                        "type": "object"
                      },
                      "type": "array"
                    },
                    "title": {
                      "description": "The title value.",
                      "type": "string"
                    },
                    "updated_at": {
                      "description": "The updated at value.",
                      "format": "date-time",
                      "type": "string"
                    },
                    "workspace_id": {
                      "description": "The workspace id value.",
                      "type": "integer"
                    }
                  },
                  "required": [
                    "created_at",
                    "estimated_duration",
                    "id",
                    "name",
                    "preconditions",
                    "priority",
                    "sort_order",
                    "status",
                    "title",
                    "updated_at",
                    "workspace_id"
                  ],
                  "type": "object"
                },
                "type": "array"
              }
            },
            "required": [
              "results",
              "step_results",
              "test_cases"
            ],
            "type": "object"
          }
        },
        "required": [
          "data"
        ],
        "type": "object"
      },
      "GetWorkspacesWorkspaceIdTestRunsRunIdResult": {
        "additionalProperties": false,
        "properties": {
          "data": {
            "additionalProperties": false,
            "nullable": true,
            "properties": {
              "assignee_avatar": {
                "description": "The assignee avatar value.",
                "type": "string"
              },
              "assignee_email": {
                "description": "The assignee email value.",
                "type": "string"
              },
              "assignee_id": {
                "description": "The assignee id value.",
                "nullable": true,
                "type": "integer"
              },
              "assignee_name": {
                "description": "The assignee name value.",
                "type": "string"
              },
              "created_at": {
                "description": "The created at value.",
                "format": "date-time",
                "type": "string"
              },
              "ended_at": {
                "description": "The ended at value.",
                "format": "date-time",
                "nullable": true,
                "type": "string"
              },
              "id": {
                "description": "The id value.",
                "type": "integer"
              },
              "name": {
                "description": "The name value.",
                "type": "string"
              },
              "plan_id": {
                "description": "The plan id value.",
                "type": "integer"
              },
              "started_at": {
                "description": "The started at value.",
                "format": "date-time",
                "type": "string"
              },
              "template_id": {
                "description": "The template id value.",
                "type": "integer"
              },
              "workspace_id": {
                "description": "The workspace id value.",
                "type": "integer"
              }
            },
            "required": [
              "created_at",
              "id",
              "name",
              "plan_id",
              "started_at",
              "workspace_id"
            ],
            "type": "object"
          }
        },
        "required": [
          "data"
        ],
        "type": "object"
      },
      "GetWorkspacesWorkspaceIdTestRunsRunIdResultsResult": {
        "additionalProperties": false,
        "properties": {
          "data": {
            "items": {
              "additionalProperties": false,
              "properties": {
                "actual_result": {
                  "description": "The actual result value.",
                  "type": "string"
                },
                "created_at": {
                  "description": "The created at value.",
                  "format": "date-time",
                  "type": "string"
                },
                "executed_at": {
                  "description": "The executed at value.",
                  "format": "date-time",
                  "nullable": true,
                  "type": "string"
                },
                "id": {
                  "description": "The id value.",
                  "type": "integer"
                },
                "notes": {
                  "description": "The notes value.",
                  "type": "string"
                },
                "run_id": {
                  "description": "The run id value.",
                  "type": "integer"
                },
                "status": {
                  "description": "The status value.",
                  "type": "string"
                },
                "test_case_id": {
                  "description": "The test case id value.",
                  "type": "integer"
                },
                "test_case_title": {
                  "description": "The test case title value.",
                  "type": "string"
                },
                "updated_at": {
                  "description": "The updated at value.",
                  "format": "date-time",
                  "type": "string"
                }
              },
              "required": [
                "actual_result",
                "created_at",
                "id",
                "notes",
                "run_id",
                "status",
                "test_case_id",
                "test_case_title",
                "updated_at"
              ],
              "type": "object"
            },
            "type": "array"
          }
        },
        "required": [
          "data"
        ],
        "type": "object"
      },
      "GetWorkspacesWorkspaceIdTestRunsRunIdStepsResult": {
        "additionalProperties": false,
        "properties": {
          "data": {
            "items": {
              "additionalProperties": false,
              "properties": {
                "actual_result": {
                  "description": "The actual result value.",
                  "type": "string"
                },
                "executed_at": {
                  "description": "The executed at value.",
                  "format": "date-time",
                  "nullable": true,
                  "type": "string"
                },
                "item_id": {
                  "description": "The item id value.",
                  "nullable": true,
                  "type": "integer"
                },
                "notes": {
                  "description": "The notes value.",
                  "type": "string"
                },
                "status": {
                  "description": "The status value.",
                  "type": "string"
                },
                "step_id": {
                  "description": "The step id value.",
                  "type": "integer"
                },
                "test_case_id": {
                  "description": "The test case id value.",
                  "type": "integer"
                }
              },
              "required": [
                "actual_result",
                "notes",
                "status",
                "step_id",
                "test_case_id"
              ],
              "type": "object"
            },
            "type": "array"
          }
        },
        "required": [
          "data"
        ],
        "type": "object"
      },
      "GetWorkspacesWorkspaceIdTestRunsRunIdSummaryResult": {
        "additionalProperties": false,
        "properties": {
          "data": {
            "additionalProperties": false,
            "properties": {
              "markdown": {
                "description": "The markdown value.",
                "type": "string"
              }
            },
            "required": [
              "markdown"
            ],
            "type": "object"
          }
        },
        "required": [
          "data"
        ],
        "type": "object"
      },
      "GetWorkspacesWorkspaceIdTimeProjectsResult": {
        "additionalProperties": false,
        "properties": {
          "data": {
            "items": {
              "additionalProperties": false,
              "properties": {
                "category_color": {
                  "description": "The category color value.",
                  "type": "string"
                },
                "category_id": {
                  "description": "The category id value.",
                  "nullable": true,
                  "type": "integer"
                },
                "category_name": {
                  "description": "The category name value.",
                  "type": "string"
                },
                "color": {
                  "description": "The color value.",
                  "type": "string"
                },
                "created_at": {
                  "description": "The created at value.",
                  "type": "string"
                },
                "customer_id": {
                  "description": "The customer id value.",
                  "nullable": true,
                  "type": "integer"
                },
                "customer_name": {
                  "description": "The customer name value.",
                  "type": "string"
                },
                "description": {
                  "description": "The description value.",
                  "type": "string"
                },
                "hourly_rate": {
                  "description": "The hourly rate value.",
                  "type": "number"
                },
                "id": {
                  "description": "The id value.",
                  "type": "integer"
                },
                "name": {
                  "description": "The name value.",
                  "type": "string"
                },
                "settings": {
                  "additionalProperties": {
                    "description": "Arbitrary JSON extension value."
                  },
                  "description": "The settings value.",
                  "type": "object"
                },
                "status": {
                  "description": "The status value.",
                  "type": "string"
                },
                "total_hours": {
                  "description": "The total hours value.",
                  "nullable": true,
                  "type": "number"
                },
                "updated_at": {
                  "description": "The updated at value.",
                  "type": "string"
                }
              },
              "required": [
                "category_color",
                "category_name",
                "color",
                "created_at",
                "customer_name",
                "description",
                "hourly_rate",
                "id",
                "name",
                "settings",
                "status",
                "updated_at"
              ],
              "type": "object"
            },
            "type": "array"
          }
        },
        "required": [
          "data"
        ],
        "type": "object"
      },
      "GetWorkspacesWorkspaceIdTransitionMatrixResult": {
        "additionalProperties": false,
        "properties": {
          "data": {
            "items": {
              "additionalProperties": false,
              "properties": {
                "item_type_id": {
                  "description": "The item type id value.",
                  "type": "integer"
                },
                "status_id": {
                  "description": "The status id value.",
                  "type": "integer"
                },
                "transitions": {
                  "description": "The transitions value.",
                  "items": {
                    "additionalProperties": false,
                    "properties": {
                      "builtin_key": {
                        "description": "The builtin key value.",
                        "type": "string"
                      },
                      "category_color": {
                        "description": "The category color value.",
                        "type": "string"
                      },
                      "id": {
                        "description": "The id value.",
                        "type": "integer"
                      },
                      "name": {
                        "description": "The name value.",
                        "type": "string"
                      },
                      "value": {
                        "description": "The value value.",
                        "type": "string"
                      }
                    },
                    "required": [
                      "builtin_key",
                      "id",
                      "name",
                      "value"
                    ],
                    "type": "object"
                  },
                  "type": "array"
                }
              },
              "required": [
                "item_type_id",
                "status_id",
                "transitions"
              ],
              "type": "object"
            },
            "type": "array"
          }
        },
        "required": [
          "data"
        ],
        "type": "object"
      },
      "GetWorkspacesWorkspaceIdWorkflowsResult": {
        "additionalProperties": false,
        "properties": {
          "data": {
            "items": {
              "additionalProperties": false,
              "properties": {
                "builtin_key": {
                  "description": "The builtin key value.",
                  "nullable": true,
                  "type": "string"
                },
                "description": {
                  "description": "The description value.",
                  "type": "string"
                },
                "display_description": {
                  "description": "The display description value.",
                  "type": "string"
                },
                "display_name": {
                  "description": "The display name value.",
                  "type": "string"
                },
                "id": {
                  "description": "The id value.",
                  "type": "integer"
                },
                "is_default": {
                  "description": "The is default value.",
                  "type": "boolean"
                },
                "name": {
                  "description": "The name value.",
                  "type": "string"
                }
              },
              "required": [
                "description",
                "display_description",
                "display_name",
                "id",
                "is_default",
                "name"
              ],
              "type": "object"
            },
            "type": "array"
          }
        },
        "required": [
          "data"
        ],
        "type": "object"
      },
      "GetWorkspacesWorkspaceKeyItemsItemNumberDetailSummaryResult": {
        "additionalProperties": false,
        "properties": {
          "data": {
            "additionalProperties": false,
            "properties": {
              "ancestors": {
                "description": "The ancestors value.",
                "items": {
                  "additionalProperties": false,
                  "properties": {
                    "assignee_avatar": {
                      "description": "The assignee avatar value.",
                      "type": "string"
                    },
                    "assignee_email": {
                      "description": "The assignee email value.",
                      "type": "string"
                    },
                    "assignee_id": {
                      "description": "The assignee id value.",
                      "nullable": true,
                      "type": "integer"
                    },
                    "assignee_name": {
                      "description": "The assignee name value.",
                      "type": "string"
                    },
                    "calendar_data": {
                      "description": "The calendar data value.",
                      "items": {
                        "additionalProperties": false,
                        "properties": {
                          "created_at": {
                            "description": "The created at value.",
                            "type": "string"
                          },
                          "duration_minutes": {
                            "description": "The duration minutes value.",
                            "type": "integer"
                          },
                          "notes": {
                            "description": "The notes value.",
                            "type": "string"
                          },
                          "scheduled_date": {
                            "description": "The scheduled date value.",
                            "type": "string"
                          },
                          "scheduled_time": {
                            "description": "The scheduled time value.",
                            "type": "string"
                          },
                          "user_id": {
                            "description": "The user id value.",
                            "type": "integer"
                          },
                          "workspace_id": {
                            "description": "The workspace id value.",
                            "type": "integer"
                          }
                        },
                        "required": [
                          "created_at",
                          "scheduled_date",
                          "user_id",
                          "workspace_id"
                        ],
                        "type": "object"
                      },
                      "type": "array"
                    },
                    "channel_id": {
                      "description": "The channel id value.",
                      "nullable": true,
                      "type": "integer"
                    },
                    "channel_name": {
                      "description": "The channel name value.",
                      "type": "string"
                    },
                    "children": {
                      "description": "The children value.",
                      "items": {
                        "description": "Nested resource reference.",
                        "type": "object"
                      },
                      "type": "array"
                    },
                    "completed_at": {
                      "description": "The completed at value.",
                      "format": "date-time",
                      "nullable": true,
                      "type": "string"
                    },
                    "created_at": {
                      "description": "The created at value.",
                      "format": "date-time",
                      "type": "string"
                    },
                    "creator_email": {
                      "description": "The creator email value.",
                      "type": "string"
                    },
                    "creator_id": {
                      "description": "The creator id value.",
                      "nullable": true,
                      "type": "integer"
                    },
                    "creator_name": {
                      "description": "The creator name value.",
                      "type": "string"
                    },
                    "creator_portal_customer_email": {
                      "description": "The creator portal customer email value.",
                      "type": "string"
                    },
                    "creator_portal_customer_id": {
                      "description": "The creator portal customer id value.",
                      "nullable": true,
                      "type": "integer"
                    },
                    "creator_portal_customer_name": {
                      "description": "The creator portal customer name value.",
                      "type": "string"
                    },
                    "custom_field_values": {
                      "additionalProperties": {
                        "description": "Arbitrary JSON extension value."
                      },
                      "description": "The custom field values value.",
                      "type": "object"
                    },
                    "description": {
                      "description": "The description value.",
                      "type": "string"
                    },
                    "description_html": {
                      "description": "The description html value.",
                      "type": "string"
                    },
                    "due_date": {
                      "description": "The due date value.",
                      "format": "date-time",
                      "nullable": true,
                      "type": "string"
                    },
                    "effective_project_id": {
                      "description": "The effective project id value.",
                      "nullable": true,
                      "type": "integer"
                    },
                    "effective_project_name": {
                      "description": "The effective project name value.",
                      "type": "string"
                    },
                    "end_date": {
                      "description": "The end date value.",
                      "format": "date-time",
                      "nullable": true,
                      "type": "string"
                    },
                    "estimate_minutes": {
                      "description": "The estimate minutes value.",
                      "nullable": true,
                      "type": "integer"
                    },
                    "frac_index": {
                      "description": "The frac index value.",
                      "nullable": true,
                      "type": "string"
                    },
                    "id": {
                      "description": "The id value.",
                      "type": "integer"
                    },
                    "inherit_project": {
                      "description": "The inherit project value.",
                      "type": "boolean"
                    },
                    "is_task": {
                      "description": "Whether the item is a personal task. True is valid only in the authenticated caller's personal workspace and only with the Open or Done system status.",
                      "type": "boolean"
                    },
                    "item_type_builtin_key": {
                      "description": "The item type builtin key value.",
                      "type": "string"
                    },
                    "item_type_id": {
                      "description": "The item type id value.",
                      "nullable": true,
                      "type": "integer"
                    },
                    "item_type_name": {
                      "description": "The item type name value.",
                      "type": "string"
                    },
                    "iteration_end_date": {
                      "description": "The iteration end date value.",
                      "type": "string"
                    },
                    "iteration_id": {
                      "description": "The iteration id value.",
                      "nullable": true,
                      "type": "integer"
                    },
                    "iteration_name": {
                      "description": "The iteration name value.",
                      "type": "string"
                    },
                    "key": {
                      "description": "The key value.",
                      "type": "string"
                    },
                    "labels": {
                      "description": "The labels value.",
                      "items": {
                        "additionalProperties": false,
                        "properties": {
                          "color": {
                            "description": "The color value.",
                            "type": "string"
                          },
                          "created_at": {
                            "description": "The created at value.",
                            "format": "date-time",
                            "type": "string"
                          },
                          "id": {
                            "description": "The id value.",
                            "type": "integer"
                          },
                          "name": {
                            "description": "The name value.",
                            "type": "string"
                          },
                          "updated_at": {
                            "description": "The updated at value.",
                            "format": "date-time",
                            "type": "string"
                          }
                        },
                        "required": [
                          "color",
                          "created_at",
                          "id",
                          "name",
                          "updated_at"
                        ],
                        "type": "object"
                      },
                      "type": "array"
                    },
                    "last_active_at": {
                      "description": "The last active at value.",
                      "format": "date-time",
                      "type": "string"
                    },
                    "milestones": {
                      "description": "The milestones value.",
                      "items": {
                        "additionalProperties": false,
                        "properties": {
                          "category_color": {
                            "description": "The category color value.",
                            "type": "string"
                          },
                          "category_id": {
                            "description": "The category id value.",
                            "nullable": true,
                            "type": "integer"
                          },
                          "category_name": {
                            "description": "The category name value.",
                            "type": "string"
                          },
                          "created_at": {
                            "description": "The created at value.",
                            "format": "date-time",
                            "type": "string"
                          },
                          "description": {
                            "description": "The description value.",
                            "type": "string"
                          },
                          "external_key": {
                            "description": "The external key value.",
                            "nullable": true,
                            "type": "string"
                          },
                          "id": {
                            "description": "The id value.",
                            "type": "integer"
                          },
                          "is_global": {
                            "description": "The is global value.",
                            "type": "boolean"
                          },
                          "latest_release": {
                            "additionalProperties": false,
                            "description": "The latest release value.",
                            "nullable": true,
                            "properties": {
                              "body": {
                                "description": "The body value.",
                                "type": "string"
                              },
                              "created_at": {
                                "description": "The created at value.",
                                "type": "string"
                              },
                              "created_by": {
                                "description": "The created by value.",
                                "nullable": true,
                                "type": "integer"
                              },
                              "id": {
                                "description": "The id value.",
                                "type": "integer"
                              },
                              "is_draft": {
                                "description": "The is draft value.",
                                "type": "boolean"
                              },
                              "is_prerelease": {
                                "description": "The is prerelease value.",
                                "type": "boolean"
                              },
                              "milestone_id": {
                                "description": "The milestone id value.",
                                "type": "integer"
                              },
                              "name": {
                                "description": "The name value.",
                                "type": "string"
                              },
                              "scm_connection_id": {
                                "description": "The scm connection id value.",
                                "nullable": true,
                                "type": "integer"
                              },
                              "scm_release_id": {
                                "description": "The scm release id value.",
                                "nullable": true,
                                "type": "string"
                              },
                              "scm_release_url": {
                                "description": "The scm release url value.",
                                "nullable": true,
                                "type": "string"
                              },
                              "scm_repository": {
                                "description": "The scm repository value.",
                                "nullable": true,
                                "type": "string"
                              },
                              "tag_name": {
                                "description": "The tag name value.",
                                "type": "string"
                              },
                              "target_commitish": {
                                "description": "The target commitish value.",
                                "type": "string"
                              }
                            },
                            "required": [
                              "created_at",
                              "id",
                              "is_draft",
                              "is_prerelease",
                              "milestone_id",
                              "tag_name"
                            ],
                            "type": "object"
                          },
                          "name": {
                            "description": "The name value.",
                            "type": "string"
                          },
                          "position": {
                            "description": "The position value.",
                            "type": "integer"
                          },
                          "releases": {
                            "description": "The releases value.",
                            "items": {
                              "additionalProperties": false,
                              "properties": {
                                "body": {
                                  "description": "The body value.",
                                  "type": "string"
                                },
                                "created_at": {
                                  "description": "The created at value.",
                                  "type": "string"
                                },
                                "created_by": {
                                  "description": "The created by value.",
                                  "nullable": true,
                                  "type": "integer"
                                },
                                "id": {
                                  "description": "The id value.",
                                  "type": "integer"
                                },
                                "is_draft": {
                                  "description": "The is draft value.",
                                  "type": "boolean"
                                },
                                "is_prerelease": {
                                  "description": "The is prerelease value.",
                                  "type": "boolean"
                                },
                                "milestone_id": {
                                  "description": "The milestone id value.",
                                  "type": "integer"
                                },
                                "name": {
                                  "description": "The name value.",
                                  "type": "string"
                                },
                                "scm_connection_id": {
                                  "description": "The scm connection id value.",
                                  "nullable": true,
                                  "type": "integer"
                                },
                                "scm_release_id": {
                                  "description": "The scm release id value.",
                                  "nullable": true,
                                  "type": "string"
                                },
                                "scm_release_url": {
                                  "description": "The scm release url value.",
                                  "nullable": true,
                                  "type": "string"
                                },
                                "scm_repository": {
                                  "description": "The scm repository value.",
                                  "nullable": true,
                                  "type": "string"
                                },
                                "tag_name": {
                                  "description": "The tag name value.",
                                  "type": "string"
                                },
                                "target_commitish": {
                                  "description": "The target commitish value.",
                                  "type": "string"
                                }
                              },
                              "required": [
                                "created_at",
                                "id",
                                "is_draft",
                                "is_prerelease",
                                "milestone_id",
                                "tag_name"
                              ],
                              "type": "object"
                            },
                            "type": "array"
                          },
                          "status": {
                            "description": "The status value.",
                            "type": "string"
                          },
                          "target_date": {
                            "description": "The target date value.",
                            "nullable": true,
                            "type": "string"
                          },
                          "updated_at": {
                            "description": "The updated at value.",
                            "format": "date-time",
                            "type": "string"
                          },
                          "workspace_id": {
                            "description": "The workspace id value.",
                            "nullable": true,
                            "type": "integer"
                          },
                          "workspace_name": {
                            "description": "The workspace name value.",
                            "type": "string"
                          }
                        },
                        "required": [
                          "created_at",
                          "description",
                          "id",
                          "is_global",
                          "name",
                          "position",
                          "status",
                          "updated_at"
                        ],
                        "type": "object"
                      },
                      "type": "array"
                    },
                    "parent_id": {
                      "description": "The parent id value.",
                      "nullable": true,
                      "type": "integer"
                    },
                    "parent_key": {
                      "description": "The parent key value.",
                      "type": "string"
                    },
                    "parent_title": {
                      "description": "The parent title value.",
                      "type": "string"
                    },
                    "parent_workspace_item_number": {
                      "description": "The parent workspace item number value.",
                      "nullable": true,
                      "type": "integer"
                    },
                    "personal_labels": {
                      "description": "The personal labels value.",
                      "items": {
                        "additionalProperties": false,
                        "properties": {
                          "color": {
                            "description": "The color value.",
                            "type": "string"
                          },
                          "created_at": {
                            "description": "The created at value.",
                            "format": "date-time",
                            "type": "string"
                          },
                          "id": {
                            "description": "The id value.",
                            "type": "integer"
                          },
                          "name": {
                            "description": "The name value.",
                            "type": "string"
                          },
                          "updated_at": {
                            "description": "The updated at value.",
                            "format": "date-time",
                            "type": "string"
                          },
                          "user_id": {
                            "description": "The user id value.",
                            "nullable": true,
                            "type": "integer"
                          }
                        },
                        "required": [
                          "color",
                          "created_at",
                          "id",
                          "name",
                          "updated_at"
                        ],
                        "type": "object"
                      },
                      "type": "array"
                    },
                    "priority_builtin_key": {
                      "description": "The priority builtin key value.",
                      "type": "string"
                    },
                    "priority_color": {
                      "description": "The priority color value.",
                      "type": "string"
                    },
                    "priority_icon": {
                      "description": "The priority icon value.",
                      "type": "string"
                    },
                    "priority_id": {
                      "description": "The priority id value.",
                      "nullable": true,
                      "type": "integer"
                    },
                    "priority_name": {
                      "description": "The priority name value.",
                      "type": "string"
                    },
                    "project_id": {
                      "description": "The project id value.",
                      "nullable": true,
                      "type": "integer"
                    },
                    "project_inheritance_mode": {
                      "description": "The project inheritance mode value.",
                      "type": "string"
                    },
                    "project_name": {
                      "description": "The project name value.",
                      "type": "string"
                    },
                    "related_work_item_id": {
                      "description": "The related work item id value.",
                      "nullable": true,
                      "type": "integer"
                    },
                    "related_work_item_number": {
                      "description": "The related work item number value.",
                      "type": "integer"
                    },
                    "related_work_item_title": {
                      "description": "The related work item title value.",
                      "type": "string"
                    },
                    "related_work_item_workspace_id": {
                      "description": "The related work item workspace id value.",
                      "type": "integer"
                    },
                    "related_work_item_workspace_key": {
                      "description": "The related work item workspace key value.",
                      "type": "string"
                    },
                    "reporter_avatar": {
                      "description": "The reporter avatar value.",
                      "type": "string"
                    },
                    "reporter_email": {
                      "description": "The reporter email value.",
                      "type": "string"
                    },
                    "reporter_id": {
                      "description": "The reporter id value.",
                      "nullable": true,
                      "type": "integer"
                    },
                    "reporter_name": {
                      "description": "The reporter name value.",
                      "type": "string"
                    },
                    "request_type_id": {
                      "description": "The request type id value.",
                      "nullable": true,
                      "type": "integer"
                    },
                    "request_type_name": {
                      "description": "The request type name value.",
                      "type": "string"
                    },
                    "start_date": {
                      "description": "The start date value.",
                      "format": "date-time",
                      "nullable": true,
                      "type": "string"
                    },
                    "status_builtin_key": {
                      "description": "The status builtin key value.",
                      "type": "string"
                    },
                    "status_color": {
                      "description": "The status color value.",
                      "type": "string"
                    },
                    "status_id": {
                      "description": "The status id value.",
                      "nullable": true,
                      "type": "integer"
                    },
                    "status_name": {
                      "description": "The status name value.",
                      "type": "string"
                    },
                    "status_since": {
                      "description": "The status since value.",
                      "format": "date-time",
                      "nullable": true,
                      "type": "string"
                    },
                    "story_points": {
                      "description": "The story points value.",
                      "nullable": true,
                      "type": "number"
                    },
                    "time_project_id": {
                      "description": "The time project id value.",
                      "nullable": true,
                      "type": "integer"
                    },
                    "time_project_name": {
                      "description": "The time project name value.",
                      "type": "string"
                    },
                    "title": {
                      "description": "The title value.",
                      "type": "string"
                    },
                    "updated_at": {
                      "description": "The updated at value.",
                      "format": "date-time",
                      "type": "string"
                    },
                    "virtual_field_data": {
                      "additionalProperties": {
                        "description": "Arbitrary JSON extension value."
                      },
                      "description": "The virtual field data value.",
                      "type": "object"
                    },
                    "workspace_id": {
                      "description": "The workspace id value.",
                      "type": "integer"
                    },
                    "workspace_item_number": {
                      "description": "The workspace item number value.",
                      "type": "integer"
                    },
                    "workspace_key": {
                      "description": "The workspace key value.",
                      "type": "string"
                    },
                    "workspace_name": {
                      "description": "The workspace name value.",
                      "type": "string"
                    }
                  },
                  "required": [
                    "created_at",
                    "description",
                    "id",
                    "inherit_project",
                    "is_task",
                    "last_active_at",
                    "title",
                    "updated_at",
                    "workspace_id",
                    "workspace_item_number"
                  ],
                  "type": "object"
                },
                "type": "array"
              },
              "available_sub_issue_types": {
                "description": "The available sub issue types value.",
                "items": {
                  "additionalProperties": false,
                  "properties": {
                    "builtin_key": {
                      "description": "The builtin key value.",
                      "type": "string"
                    },
                    "color": {
                      "description": "The color value.",
                      "type": "string"
                    },
                    "description": {
                      "description": "The description value.",
                      "type": "string"
                    },
                    "hierarchy_level": {
                      "description": "The hierarchy level value.",
                      "type": "integer"
                    },
                    "icon": {
                      "description": "The icon value.",
                      "type": "string"
                    },
                    "id": {
                      "description": "The id value.",
                      "type": "integer"
                    },
                    "is_default": {
                      "description": "The is default value.",
                      "type": "boolean"
                    },
                    "name": {
                      "description": "The name value.",
                      "type": "string"
                    },
                    "sort_order": {
                      "description": "The sort order value.",
                      "type": "integer"
                    }
                  },
                  "required": [
                    "color",
                    "description",
                    "hierarchy_level",
                    "icon",
                    "id",
                    "is_default",
                    "name",
                    "sort_order"
                  ],
                  "type": "object"
                },
                "type": "array"
              },
              "children": {
                "description": "The children value.",
                "items": {
                  "additionalProperties": false,
                  "properties": {
                    "assignee_avatar": {
                      "description": "The assignee avatar value.",
                      "type": "string"
                    },
                    "assignee_email": {
                      "description": "The assignee email value.",
                      "type": "string"
                    },
                    "assignee_id": {
                      "description": "The assignee id value.",
                      "nullable": true,
                      "type": "integer"
                    },
                    "assignee_name": {
                      "description": "The assignee name value.",
                      "type": "string"
                    },
                    "calendar_data": {
                      "description": "The calendar data value.",
                      "items": {
                        "additionalProperties": false,
                        "properties": {
                          "created_at": {
                            "description": "The created at value.",
                            "type": "string"
                          },
                          "duration_minutes": {
                            "description": "The duration minutes value.",
                            "type": "integer"
                          },
                          "notes": {
                            "description": "The notes value.",
                            "type": "string"
                          },
                          "scheduled_date": {
                            "description": "The scheduled date value.",
                            "type": "string"
                          },
                          "scheduled_time": {
                            "description": "The scheduled time value.",
                            "type": "string"
                          },
                          "user_id": {
                            "description": "The user id value.",
                            "type": "integer"
                          },
                          "workspace_id": {
                            "description": "The workspace id value.",
                            "type": "integer"
                          }
                        },
                        "required": [
                          "created_at",
                          "scheduled_date",
                          "user_id",
                          "workspace_id"
                        ],
                        "type": "object"
                      },
                      "type": "array"
                    },
                    "channel_id": {
                      "description": "The channel id value.",
                      "nullable": true,
                      "type": "integer"
                    },
                    "channel_name": {
                      "description": "The channel name value.",
                      "type": "string"
                    },
                    "children": {
                      "description": "The children value.",
                      "items": {
                        "description": "Nested resource reference.",
                        "type": "object"
                      },
                      "type": "array"
                    },
                    "completed_at": {
                      "description": "The completed at value.",
                      "format": "date-time",
                      "nullable": true,
                      "type": "string"
                    },
                    "created_at": {
                      "description": "The created at value.",
                      "format": "date-time",
                      "type": "string"
                    },
                    "creator_email": {
                      "description": "The creator email value.",
                      "type": "string"
                    },
                    "creator_id": {
                      "description": "The creator id value.",
                      "nullable": true,
                      "type": "integer"
                    },
                    "creator_name": {
                      "description": "The creator name value.",
                      "type": "string"
                    },
                    "creator_portal_customer_email": {
                      "description": "The creator portal customer email value.",
                      "type": "string"
                    },
                    "creator_portal_customer_id": {
                      "description": "The creator portal customer id value.",
                      "nullable": true,
                      "type": "integer"
                    },
                    "creator_portal_customer_name": {
                      "description": "The creator portal customer name value.",
                      "type": "string"
                    },
                    "custom_field_values": {
                      "additionalProperties": {
                        "description": "Arbitrary JSON extension value."
                      },
                      "description": "The custom field values value.",
                      "type": "object"
                    },
                    "description": {
                      "description": "The description value.",
                      "type": "string"
                    },
                    "description_html": {
                      "description": "The description html value.",
                      "type": "string"
                    },
                    "due_date": {
                      "description": "The due date value.",
                      "format": "date-time",
                      "nullable": true,
                      "type": "string"
                    },
                    "effective_project_id": {
                      "description": "The effective project id value.",
                      "nullable": true,
                      "type": "integer"
                    },
                    "effective_project_name": {
                      "description": "The effective project name value.",
                      "type": "string"
                    },
                    "end_date": {
                      "description": "The end date value.",
                      "format": "date-time",
                      "nullable": true,
                      "type": "string"
                    },
                    "estimate_minutes": {
                      "description": "The estimate minutes value.",
                      "nullable": true,
                      "type": "integer"
                    },
                    "frac_index": {
                      "description": "The frac index value.",
                      "nullable": true,
                      "type": "string"
                    },
                    "id": {
                      "description": "The id value.",
                      "type": "integer"
                    },
                    "inherit_project": {
                      "description": "The inherit project value.",
                      "type": "boolean"
                    },
                    "is_task": {
                      "description": "Whether the item is a personal task. True is valid only in the authenticated caller's personal workspace and only with the Open or Done system status.",
                      "type": "boolean"
                    },
                    "item_type_builtin_key": {
                      "description": "The item type builtin key value.",
                      "type": "string"
                    },
                    "item_type_id": {
                      "description": "The item type id value.",
                      "nullable": true,
                      "type": "integer"
                    },
                    "item_type_name": {
                      "description": "The item type name value.",
                      "type": "string"
                    },
                    "iteration_end_date": {
                      "description": "The iteration end date value.",
                      "type": "string"
                    },
                    "iteration_id": {
                      "description": "The iteration id value.",
                      "nullable": true,
                      "type": "integer"
                    },
                    "iteration_name": {
                      "description": "The iteration name value.",
                      "type": "string"
                    },
                    "key": {
                      "description": "The key value.",
                      "type": "string"
                    },
                    "labels": {
                      "description": "The labels value.",
                      "items": {
                        "additionalProperties": false,
                        "properties": {
                          "color": {
                            "description": "The color value.",
                            "type": "string"
                          },
                          "created_at": {
                            "description": "The created at value.",
                            "format": "date-time",
                            "type": "string"
                          },
                          "id": {
                            "description": "The id value.",
                            "type": "integer"
                          },
                          "name": {
                            "description": "The name value.",
                            "type": "string"
                          },
                          "updated_at": {
                            "description": "The updated at value.",
                            "format": "date-time",
                            "type": "string"
                          }
                        },
                        "required": [
                          "color",
                          "created_at",
                          "id",
                          "name",
                          "updated_at"
                        ],
                        "type": "object"
                      },
                      "type": "array"
                    },
                    "last_active_at": {
                      "description": "The last active at value.",
                      "format": "date-time",
                      "type": "string"
                    },
                    "milestones": {
                      "description": "The milestones value.",
                      "items": {
                        "additionalProperties": false,
                        "properties": {
                          "category_color": {
                            "description": "The category color value.",
                            "type": "string"
                          },
                          "category_id": {
                            "description": "The category id value.",
                            "nullable": true,
                            "type": "integer"
                          },
                          "category_name": {
                            "description": "The category name value.",
                            "type": "string"
                          },
                          "created_at": {
                            "description": "The created at value.",
                            "format": "date-time",
                            "type": "string"
                          },
                          "description": {
                            "description": "The description value.",
                            "type": "string"
                          },
                          "external_key": {
                            "description": "The external key value.",
                            "nullable": true,
                            "type": "string"
                          },
                          "id": {
                            "description": "The id value.",
                            "type": "integer"
                          },
                          "is_global": {
                            "description": "The is global value.",
                            "type": "boolean"
                          },
                          "latest_release": {
                            "additionalProperties": false,
                            "description": "The latest release value.",
                            "nullable": true,
                            "properties": {
                              "body": {
                                "description": "The body value.",
                                "type": "string"
                              },
                              "created_at": {
                                "description": "The created at value.",
                                "type": "string"
                              },
                              "created_by": {
                                "description": "The created by value.",
                                "nullable": true,
                                "type": "integer"
                              },
                              "id": {
                                "description": "The id value.",
                                "type": "integer"
                              },
                              "is_draft": {
                                "description": "The is draft value.",
                                "type": "boolean"
                              },
                              "is_prerelease": {
                                "description": "The is prerelease value.",
                                "type": "boolean"
                              },
                              "milestone_id": {
                                "description": "The milestone id value.",
                                "type": "integer"
                              },
                              "name": {
                                "description": "The name value.",
                                "type": "string"
                              },
                              "scm_connection_id": {
                                "description": "The scm connection id value.",
                                "nullable": true,
                                "type": "integer"
                              },
                              "scm_release_id": {
                                "description": "The scm release id value.",
                                "nullable": true,
                                "type": "string"
                              },
                              "scm_release_url": {
                                "description": "The scm release url value.",
                                "nullable": true,
                                "type": "string"
                              },
                              "scm_repository": {
                                "description": "The scm repository value.",
                                "nullable": true,
                                "type": "string"
                              },
                              "tag_name": {
                                "description": "The tag name value.",
                                "type": "string"
                              },
                              "target_commitish": {
                                "description": "The target commitish value.",
                                "type": "string"
                              }
                            },
                            "required": [
                              "created_at",
                              "id",
                              "is_draft",
                              "is_prerelease",
                              "milestone_id",
                              "tag_name"
                            ],
                            "type": "object"
                          },
                          "name": {
                            "description": "The name value.",
                            "type": "string"
                          },
                          "position": {
                            "description": "The position value.",
                            "type": "integer"
                          },
                          "releases": {
                            "description": "The releases value.",
                            "items": {
                              "additionalProperties": false,
                              "properties": {
                                "body": {
                                  "description": "The body value.",
                                  "type": "string"
                                },
                                "created_at": {
                                  "description": "The created at value.",
                                  "type": "string"
                                },
                                "created_by": {
                                  "description": "The created by value.",
                                  "nullable": true,
                                  "type": "integer"
                                },
                                "id": {
                                  "description": "The id value.",
                                  "type": "integer"
                                },
                                "is_draft": {
                                  "description": "The is draft value.",
                                  "type": "boolean"
                                },
                                "is_prerelease": {
                                  "description": "The is prerelease value.",
                                  "type": "boolean"
                                },
                                "milestone_id": {
                                  "description": "The milestone id value.",
                                  "type": "integer"
                                },
                                "name": {
                                  "description": "The name value.",
                                  "type": "string"
                                },
                                "scm_connection_id": {
                                  "description": "The scm connection id value.",
                                  "nullable": true,
                                  "type": "integer"
                                },
                                "scm_release_id": {
                                  "description": "The scm release id value.",
                                  "nullable": true,
                                  "type": "string"
                                },
                                "scm_release_url": {
                                  "description": "The scm release url value.",
                                  "nullable": true,
                                  "type": "string"
                                },
                                "scm_repository": {
                                  "description": "The scm repository value.",
                                  "nullable": true,
                                  "type": "string"
                                },
                                "tag_name": {
                                  "description": "The tag name value.",
                                  "type": "string"
                                },
                                "target_commitish": {
                                  "description": "The target commitish value.",
                                  "type": "string"
                                }
                              },
                              "required": [
                                "created_at",
                                "id",
                                "is_draft",
                                "is_prerelease",
                                "milestone_id",
                                "tag_name"
                              ],
                              "type": "object"
                            },
                            "type": "array"
                          },
                          "status": {
                            "description": "The status value.",
                            "type": "string"
                          },
                          "target_date": {
                            "description": "The target date value.",
                            "nullable": true,
                            "type": "string"
                          },
                          "updated_at": {
                            "description": "The updated at value.",
                            "format": "date-time",
                            "type": "string"
                          },
                          "workspace_id": {
                            "description": "The workspace id value.",
                            "nullable": true,
                            "type": "integer"
                          },
                          "workspace_name": {
                            "description": "The workspace name value.",
                            "type": "string"
                          }
                        },
                        "required": [
                          "created_at",
                          "description",
                          "id",
                          "is_global",
                          "name",
                          "position",
                          "status",
                          "updated_at"
                        ],
                        "type": "object"
                      },
                      "type": "array"
                    },
                    "parent_id": {
                      "description": "The parent id value.",
                      "nullable": true,
                      "type": "integer"
                    },
                    "parent_key": {
                      "description": "The parent key value.",
                      "type": "string"
                    },
                    "parent_title": {
                      "description": "The parent title value.",
                      "type": "string"
                    },
                    "parent_workspace_item_number": {
                      "description": "The parent workspace item number value.",
                      "nullable": true,
                      "type": "integer"
                    },
                    "personal_labels": {
                      "description": "The personal labels value.",
                      "items": {
                        "additionalProperties": false,
                        "properties": {
                          "color": {
                            "description": "The color value.",
                            "type": "string"
                          },
                          "created_at": {
                            "description": "The created at value.",
                            "format": "date-time",
                            "type": "string"
                          },
                          "id": {
                            "description": "The id value.",
                            "type": "integer"
                          },
                          "name": {
                            "description": "The name value.",
                            "type": "string"
                          },
                          "updated_at": {
                            "description": "The updated at value.",
                            "format": "date-time",
                            "type": "string"
                          },
                          "user_id": {
                            "description": "The user id value.",
                            "nullable": true,
                            "type": "integer"
                          }
                        },
                        "required": [
                          "color",
                          "created_at",
                          "id",
                          "name",
                          "updated_at"
                        ],
                        "type": "object"
                      },
                      "type": "array"
                    },
                    "priority_builtin_key": {
                      "description": "The priority builtin key value.",
                      "type": "string"
                    },
                    "priority_color": {
                      "description": "The priority color value.",
                      "type": "string"
                    },
                    "priority_icon": {
                      "description": "The priority icon value.",
                      "type": "string"
                    },
                    "priority_id": {
                      "description": "The priority id value.",
                      "nullable": true,
                      "type": "integer"
                    },
                    "priority_name": {
                      "description": "The priority name value.",
                      "type": "string"
                    },
                    "project_id": {
                      "description": "The project id value.",
                      "nullable": true,
                      "type": "integer"
                    },
                    "project_inheritance_mode": {
                      "description": "The project inheritance mode value.",
                      "type": "string"
                    },
                    "project_name": {
                      "description": "The project name value.",
                      "type": "string"
                    },
                    "related_work_item_id": {
                      "description": "The related work item id value.",
                      "nullable": true,
                      "type": "integer"
                    },
                    "related_work_item_number": {
                      "description": "The related work item number value.",
                      "type": "integer"
                    },
                    "related_work_item_title": {
                      "description": "The related work item title value.",
                      "type": "string"
                    },
                    "related_work_item_workspace_id": {
                      "description": "The related work item workspace id value.",
                      "type": "integer"
                    },
                    "related_work_item_workspace_key": {
                      "description": "The related work item workspace key value.",
                      "type": "string"
                    },
                    "reporter_avatar": {
                      "description": "The reporter avatar value.",
                      "type": "string"
                    },
                    "reporter_email": {
                      "description": "The reporter email value.",
                      "type": "string"
                    },
                    "reporter_id": {
                      "description": "The reporter id value.",
                      "nullable": true,
                      "type": "integer"
                    },
                    "reporter_name": {
                      "description": "The reporter name value.",
                      "type": "string"
                    },
                    "request_type_id": {
                      "description": "The request type id value.",
                      "nullable": true,
                      "type": "integer"
                    },
                    "request_type_name": {
                      "description": "The request type name value.",
                      "type": "string"
                    },
                    "start_date": {
                      "description": "The start date value.",
                      "format": "date-time",
                      "nullable": true,
                      "type": "string"
                    },
                    "status_builtin_key": {
                      "description": "The status builtin key value.",
                      "type": "string"
                    },
                    "status_color": {
                      "description": "The status color value.",
                      "type": "string"
                    },
                    "status_id": {
                      "description": "The status id value.",
                      "nullable": true,
                      "type": "integer"
                    },
                    "status_name": {
                      "description": "The status name value.",
                      "type": "string"
                    },
                    "status_since": {
                      "description": "The status since value.",
                      "format": "date-time",
                      "nullable": true,
                      "type": "string"
                    },
                    "story_points": {
                      "description": "The story points value.",
                      "nullable": true,
                      "type": "number"
                    },
                    "time_project_id": {
                      "description": "The time project id value.",
                      "nullable": true,
                      "type": "integer"
                    },
                    "time_project_name": {
                      "description": "The time project name value.",
                      "type": "string"
                    },
                    "title": {
                      "description": "The title value.",
                      "type": "string"
                    },
                    "updated_at": {
                      "description": "The updated at value.",
                      "format": "date-time",
                      "type": "string"
                    },
                    "virtual_field_data": {
                      "additionalProperties": {
                        "description": "Arbitrary JSON extension value."
                      },
                      "description": "The virtual field data value.",
                      "type": "object"
                    },
                    "workspace_id": {
                      "description": "The workspace id value.",
                      "type": "integer"
                    },
                    "workspace_item_number": {
                      "description": "The workspace item number value.",
                      "type": "integer"
                    },
                    "workspace_key": {
                      "description": "The workspace key value.",
                      "type": "string"
                    },
                    "workspace_name": {
                      "description": "The workspace name value.",
                      "type": "string"
                    }
                  },
                  "required": [
                    "created_at",
                    "description",
                    "id",
                    "inherit_project",
                    "is_task",
                    "last_active_at",
                    "title",
                    "updated_at",
                    "workspace_id",
                    "workspace_item_number"
                  ],
                  "type": "object"
                },
                "type": "array"
              },
              "current_hierarchy_level": {
                "additionalProperties": false,
                "description": "The current hierarchy level value.",
                "nullable": true,
                "properties": {
                  "builtin_key": {
                    "description": "The builtin key value.",
                    "type": "string"
                  },
                  "created_at": {
                    "description": "The created at value.",
                    "format": "date-time",
                    "type": "string"
                  },
                  "description": {
                    "description": "The description value.",
                    "type": "string"
                  },
                  "display_description": {
                    "description": "The display description value.",
                    "type": "string"
                  },
                  "display_name": {
                    "description": "The display name value.",
                    "type": "string"
                  },
                  "id": {
                    "description": "The id value.",
                    "type": "integer"
                  },
                  "level": {
                    "description": "The level value.",
                    "type": "integer"
                  },
                  "name": {
                    "description": "The name value.",
                    "type": "string"
                  },
                  "updated_at": {
                    "description": "The updated at value.",
                    "format": "date-time",
                    "type": "string"
                  }
                },
                "required": [
                  "created_at",
                  "description",
                  "display_name",
                  "id",
                  "level",
                  "name",
                  "updated_at"
                ],
                "type": "object"
              },
              "current_item_type": {
                "additionalProperties": false,
                "description": "The current item type value.",
                "nullable": true,
                "properties": {
                  "builtin_key": {
                    "description": "The builtin key value.",
                    "type": "string"
                  },
                  "color": {
                    "description": "The color value.",
                    "type": "string"
                  },
                  "description": {
                    "description": "The description value.",
                    "type": "string"
                  },
                  "hierarchy_level": {
                    "description": "The hierarchy level value.",
                    "type": "integer"
                  },
                  "icon": {
                    "description": "The icon value.",
                    "type": "string"
                  },
                  "id": {
                    "description": "The id value.",
                    "type": "integer"
                  },
                  "is_default": {
                    "description": "The is default value.",
                    "type": "boolean"
                  },
                  "name": {
                    "description": "The name value.",
                    "type": "string"
                  },
                  "sort_order": {
                    "description": "The sort order value.",
                    "type": "integer"
                  }
                },
                "required": [
                  "color",
                  "description",
                  "hierarchy_level",
                  "icon",
                  "id",
                  "is_default",
                  "name",
                  "sort_order"
                ],
                "type": "object"
              },
              "has_agent_runs": {
                "description": "The has agent runs value.",
                "type": "boolean"
              },
              "item": {
                "additionalProperties": false,
                "description": "The item value.",
                "nullable": true,
                "properties": {
                  "assignee_avatar": {
                    "description": "The assignee avatar value.",
                    "type": "string"
                  },
                  "assignee_email": {
                    "description": "The assignee email value.",
                    "type": "string"
                  },
                  "assignee_id": {
                    "description": "The assignee id value.",
                    "nullable": true,
                    "type": "integer"
                  },
                  "assignee_name": {
                    "description": "The assignee name value.",
                    "type": "string"
                  },
                  "calendar_data": {
                    "description": "The calendar data value.",
                    "items": {
                      "additionalProperties": false,
                      "properties": {
                        "created_at": {
                          "description": "The created at value.",
                          "type": "string"
                        },
                        "duration_minutes": {
                          "description": "The duration minutes value.",
                          "type": "integer"
                        },
                        "notes": {
                          "description": "The notes value.",
                          "type": "string"
                        },
                        "scheduled_date": {
                          "description": "The scheduled date value.",
                          "type": "string"
                        },
                        "scheduled_time": {
                          "description": "The scheduled time value.",
                          "type": "string"
                        },
                        "user_id": {
                          "description": "The user id value.",
                          "type": "integer"
                        },
                        "workspace_id": {
                          "description": "The workspace id value.",
                          "type": "integer"
                        }
                      },
                      "required": [
                        "created_at",
                        "scheduled_date",
                        "user_id",
                        "workspace_id"
                      ],
                      "type": "object"
                    },
                    "type": "array"
                  },
                  "channel_id": {
                    "description": "The channel id value.",
                    "nullable": true,
                    "type": "integer"
                  },
                  "channel_name": {
                    "description": "The channel name value.",
                    "type": "string"
                  },
                  "children": {
                    "description": "The children value.",
                    "items": {
                      "description": "Nested resource reference.",
                      "type": "object"
                    },
                    "type": "array"
                  },
                  "completed_at": {
                    "description": "The completed at value.",
                    "format": "date-time",
                    "nullable": true,
                    "type": "string"
                  },
                  "created_at": {
                    "description": "The created at value.",
                    "format": "date-time",
                    "type": "string"
                  },
                  "creator_email": {
                    "description": "The creator email value.",
                    "type": "string"
                  },
                  "creator_id": {
                    "description": "The creator id value.",
                    "nullable": true,
                    "type": "integer"
                  },
                  "creator_name": {
                    "description": "The creator name value.",
                    "type": "string"
                  },
                  "creator_portal_customer_email": {
                    "description": "The creator portal customer email value.",
                    "type": "string"
                  },
                  "creator_portal_customer_id": {
                    "description": "The creator portal customer id value.",
                    "nullable": true,
                    "type": "integer"
                  },
                  "creator_portal_customer_name": {
                    "description": "The creator portal customer name value.",
                    "type": "string"
                  },
                  "custom_field_values": {
                    "additionalProperties": {
                      "description": "Arbitrary JSON extension value."
                    },
                    "description": "The custom field values value.",
                    "type": "object"
                  },
                  "description": {
                    "description": "The description value.",
                    "type": "string"
                  },
                  "description_html": {
                    "description": "The description html value.",
                    "type": "string"
                  },
                  "due_date": {
                    "description": "The due date value.",
                    "format": "date-time",
                    "nullable": true,
                    "type": "string"
                  },
                  "effective_project_id": {
                    "description": "The effective project id value.",
                    "nullable": true,
                    "type": "integer"
                  },
                  "effective_project_name": {
                    "description": "The effective project name value.",
                    "type": "string"
                  },
                  "end_date": {
                    "description": "The end date value.",
                    "format": "date-time",
                    "nullable": true,
                    "type": "string"
                  },
                  "estimate_minutes": {
                    "description": "The estimate minutes value.",
                    "nullable": true,
                    "type": "integer"
                  },
                  "frac_index": {
                    "description": "The frac index value.",
                    "nullable": true,
                    "type": "string"
                  },
                  "id": {
                    "description": "The id value.",
                    "type": "integer"
                  },
                  "inherit_project": {
                    "description": "The inherit project value.",
                    "type": "boolean"
                  },
                  "is_task": {
                    "description": "Whether the item is a personal task. True is valid only in the authenticated caller's personal workspace and only with the Open or Done system status.",
                    "type": "boolean"
                  },
                  "item_type_builtin_key": {
                    "description": "The item type builtin key value.",
                    "type": "string"
                  },
                  "item_type_id": {
                    "description": "The item type id value.",
                    "nullable": true,
                    "type": "integer"
                  },
                  "item_type_name": {
                    "description": "The item type name value.",
                    "type": "string"
                  },
                  "iteration_end_date": {
                    "description": "The iteration end date value.",
                    "type": "string"
                  },
                  "iteration_id": {
                    "description": "The iteration id value.",
                    "nullable": true,
                    "type": "integer"
                  },
                  "iteration_name": {
                    "description": "The iteration name value.",
                    "type": "string"
                  },
                  "key": {
                    "description": "The key value.",
                    "type": "string"
                  },
                  "labels": {
                    "description": "The labels value.",
                    "items": {
                      "additionalProperties": false,
                      "properties": {
                        "color": {
                          "description": "The color value.",
                          "type": "string"
                        },
                        "created_at": {
                          "description": "The created at value.",
                          "format": "date-time",
                          "type": "string"
                        },
                        "id": {
                          "description": "The id value.",
                          "type": "integer"
                        },
                        "name": {
                          "description": "The name value.",
                          "type": "string"
                        },
                        "updated_at": {
                          "description": "The updated at value.",
                          "format": "date-time",
                          "type": "string"
                        }
                      },
                      "required": [
                        "color",
                        "created_at",
                        "id",
                        "name",
                        "updated_at"
                      ],
                      "type": "object"
                    },
                    "type": "array"
                  },
                  "last_active_at": {
                    "description": "The last active at value.",
                    "format": "date-time",
                    "type": "string"
                  },
                  "milestones": {
                    "description": "The milestones value.",
                    "items": {
                      "additionalProperties": false,
                      "properties": {
                        "category_color": {
                          "description": "The category color value.",
                          "type": "string"
                        },
                        "category_id": {
                          "description": "The category id value.",
                          "nullable": true,
                          "type": "integer"
                        },
                        "category_name": {
                          "description": "The category name value.",
                          "type": "string"
                        },
                        "created_at": {
                          "description": "The created at value.",
                          "format": "date-time",
                          "type": "string"
                        },
                        "description": {
                          "description": "The description value.",
                          "type": "string"
                        },
                        "external_key": {
                          "description": "The external key value.",
                          "nullable": true,
                          "type": "string"
                        },
                        "id": {
                          "description": "The id value.",
                          "type": "integer"
                        },
                        "is_global": {
                          "description": "The is global value.",
                          "type": "boolean"
                        },
                        "latest_release": {
                          "additionalProperties": false,
                          "description": "The latest release value.",
                          "nullable": true,
                          "properties": {
                            "body": {
                              "description": "The body value.",
                              "type": "string"
                            },
                            "created_at": {
                              "description": "The created at value.",
                              "type": "string"
                            },
                            "created_by": {
                              "description": "The created by value.",
                              "nullable": true,
                              "type": "integer"
                            },
                            "id": {
                              "description": "The id value.",
                              "type": "integer"
                            },
                            "is_draft": {
                              "description": "The is draft value.",
                              "type": "boolean"
                            },
                            "is_prerelease": {
                              "description": "The is prerelease value.",
                              "type": "boolean"
                            },
                            "milestone_id": {
                              "description": "The milestone id value.",
                              "type": "integer"
                            },
                            "name": {
                              "description": "The name value.",
                              "type": "string"
                            },
                            "scm_connection_id": {
                              "description": "The scm connection id value.",
                              "nullable": true,
                              "type": "integer"
                            },
                            "scm_release_id": {
                              "description": "The scm release id value.",
                              "nullable": true,
                              "type": "string"
                            },
                            "scm_release_url": {
                              "description": "The scm release url value.",
                              "nullable": true,
                              "type": "string"
                            },
                            "scm_repository": {
                              "description": "The scm repository value.",
                              "nullable": true,
                              "type": "string"
                            },
                            "tag_name": {
                              "description": "The tag name value.",
                              "type": "string"
                            },
                            "target_commitish": {
                              "description": "The target commitish value.",
                              "type": "string"
                            }
                          },
                          "required": [
                            "created_at",
                            "id",
                            "is_draft",
                            "is_prerelease",
                            "milestone_id",
                            "tag_name"
                          ],
                          "type": "object"
                        },
                        "name": {
                          "description": "The name value.",
                          "type": "string"
                        },
                        "position": {
                          "description": "The position value.",
                          "type": "integer"
                        },
                        "releases": {
                          "description": "The releases value.",
                          "items": {
                            "additionalProperties": false,
                            "properties": {
                              "body": {
                                "description": "The body value.",
                                "type": "string"
                              },
                              "created_at": {
                                "description": "The created at value.",
                                "type": "string"
                              },
                              "created_by": {
                                "description": "The created by value.",
                                "nullable": true,
                                "type": "integer"
                              },
                              "id": {
                                "description": "The id value.",
                                "type": "integer"
                              },
                              "is_draft": {
                                "description": "The is draft value.",
                                "type": "boolean"
                              },
                              "is_prerelease": {
                                "description": "The is prerelease value.",
                                "type": "boolean"
                              },
                              "milestone_id": {
                                "description": "The milestone id value.",
                                "type": "integer"
                              },
                              "name": {
                                "description": "The name value.",
                                "type": "string"
                              },
                              "scm_connection_id": {
                                "description": "The scm connection id value.",
                                "nullable": true,
                                "type": "integer"
                              },
                              "scm_release_id": {
                                "description": "The scm release id value.",
                                "nullable": true,
                                "type": "string"
                              },
                              "scm_release_url": {
                                "description": "The scm release url value.",
                                "nullable": true,
                                "type": "string"
                              },
                              "scm_repository": {
                                "description": "The scm repository value.",
                                "nullable": true,
                                "type": "string"
                              },
                              "tag_name": {
                                "description": "The tag name value.",
                                "type": "string"
                              },
                              "target_commitish": {
                                "description": "The target commitish value.",
                                "type": "string"
                              }
                            },
                            "required": [
                              "created_at",
                              "id",
                              "is_draft",
                              "is_prerelease",
                              "milestone_id",
                              "tag_name"
                            ],
                            "type": "object"
                          },
                          "type": "array"
                        },
                        "status": {
                          "description": "The status value.",
                          "type": "string"
                        },
                        "target_date": {
                          "description": "The target date value.",
                          "nullable": true,
                          "type": "string"
                        },
                        "updated_at": {
                          "description": "The updated at value.",
                          "format": "date-time",
                          "type": "string"
                        },
                        "workspace_id": {
                          "description": "The workspace id value.",
                          "nullable": true,
                          "type": "integer"
                        },
                        "workspace_name": {
                          "description": "The workspace name value.",
                          "type": "string"
                        }
                      },
                      "required": [
                        "created_at",
                        "description",
                        "id",
                        "is_global",
                        "name",
                        "position",
                        "status",
                        "updated_at"
                      ],
                      "type": "object"
                    },
                    "type": "array"
                  },
                  "parent_id": {
                    "description": "The parent id value.",
                    "nullable": true,
                    "type": "integer"
                  },
                  "parent_key": {
                    "description": "The parent key value.",
                    "type": "string"
                  },
                  "parent_title": {
                    "description": "The parent title value.",
                    "type": "string"
                  },
                  "parent_workspace_item_number": {
                    "description": "The parent workspace item number value.",
                    "nullable": true,
                    "type": "integer"
                  },
                  "personal_labels": {
                    "description": "The personal labels value.",
                    "items": {
                      "additionalProperties": false,
                      "properties": {
                        "color": {
                          "description": "The color value.",
                          "type": "string"
                        },
                        "created_at": {
                          "description": "The created at value.",
                          "format": "date-time",
                          "type": "string"
                        },
                        "id": {
                          "description": "The id value.",
                          "type": "integer"
                        },
                        "name": {
                          "description": "The name value.",
                          "type": "string"
                        },
                        "updated_at": {
                          "description": "The updated at value.",
                          "format": "date-time",
                          "type": "string"
                        },
                        "user_id": {
                          "description": "The user id value.",
                          "nullable": true,
                          "type": "integer"
                        }
                      },
                      "required": [
                        "color",
                        "created_at",
                        "id",
                        "name",
                        "updated_at"
                      ],
                      "type": "object"
                    },
                    "type": "array"
                  },
                  "priority_builtin_key": {
                    "description": "The priority builtin key value.",
                    "type": "string"
                  },
                  "priority_color": {
                    "description": "The priority color value.",
                    "type": "string"
                  },
                  "priority_icon": {
                    "description": "The priority icon value.",
                    "type": "string"
                  },
                  "priority_id": {
                    "description": "The priority id value.",
                    "nullable": true,
                    "type": "integer"
                  },
                  "priority_name": {
                    "description": "The priority name value.",
                    "type": "string"
                  },
                  "project_id": {
                    "description": "The project id value.",
                    "nullable": true,
                    "type": "integer"
                  },
                  "project_inheritance_mode": {
                    "description": "The project inheritance mode value.",
                    "type": "string"
                  },
                  "project_name": {
                    "description": "The project name value.",
                    "type": "string"
                  },
                  "related_work_item_id": {
                    "description": "The related work item id value.",
                    "nullable": true,
                    "type": "integer"
                  },
                  "related_work_item_number": {
                    "description": "The related work item number value.",
                    "type": "integer"
                  },
                  "related_work_item_title": {
                    "description": "The related work item title value.",
                    "type": "string"
                  },
                  "related_work_item_workspace_id": {
                    "description": "The related work item workspace id value.",
                    "type": "integer"
                  },
                  "related_work_item_workspace_key": {
                    "description": "The related work item workspace key value.",
                    "type": "string"
                  },
                  "reporter_avatar": {
                    "description": "The reporter avatar value.",
                    "type": "string"
                  },
                  "reporter_email": {
                    "description": "The reporter email value.",
                    "type": "string"
                  },
                  "reporter_id": {
                    "description": "The reporter id value.",
                    "nullable": true,
                    "type": "integer"
                  },
                  "reporter_name": {
                    "description": "The reporter name value.",
                    "type": "string"
                  },
                  "request_type_id": {
                    "description": "The request type id value.",
                    "nullable": true,
                    "type": "integer"
                  },
                  "request_type_name": {
                    "description": "The request type name value.",
                    "type": "string"
                  },
                  "start_date": {
                    "description": "The start date value.",
                    "format": "date-time",
                    "nullable": true,
                    "type": "string"
                  },
                  "status_builtin_key": {
                    "description": "The status builtin key value.",
                    "type": "string"
                  },
                  "status_color": {
                    "description": "The status color value.",
                    "type": "string"
                  },
                  "status_id": {
                    "description": "The status id value.",
                    "nullable": true,
                    "type": "integer"
                  },
                  "status_name": {
                    "description": "The status name value.",
                    "type": "string"
                  },
                  "status_since": {
                    "description": "The status since value.",
                    "format": "date-time",
                    "nullable": true,
                    "type": "string"
                  },
                  "story_points": {
                    "description": "The story points value.",
                    "nullable": true,
                    "type": "number"
                  },
                  "time_project_id": {
                    "description": "The time project id value.",
                    "nullable": true,
                    "type": "integer"
                  },
                  "time_project_name": {
                    "description": "The time project name value.",
                    "type": "string"
                  },
                  "title": {
                    "description": "The title value.",
                    "type": "string"
                  },
                  "updated_at": {
                    "description": "The updated at value.",
                    "format": "date-time",
                    "type": "string"
                  },
                  "virtual_field_data": {
                    "additionalProperties": {
                      "description": "Arbitrary JSON extension value."
                    },
                    "description": "The virtual field data value.",
                    "type": "object"
                  },
                  "workspace_id": {
                    "description": "The workspace id value.",
                    "type": "integer"
                  },
                  "workspace_item_number": {
                    "description": "The workspace item number value.",
                    "type": "integer"
                  },
                  "workspace_key": {
                    "description": "The workspace key value.",
                    "type": "string"
                  },
                  "workspace_name": {
                    "description": "The workspace name value.",
                    "type": "string"
                  }
                },
                "required": [
                  "created_at",
                  "description",
                  "id",
                  "inherit_project",
                  "is_task",
                  "last_active_at",
                  "title",
                  "updated_at",
                  "workspace_id",
                  "workspace_item_number"
                ],
                "type": "object"
              },
              "link_types": {
                "description": "The link types value.",
                "items": {
                  "additionalProperties": false,
                  "properties": {
                    "active": {
                      "description": "The active value.",
                      "type": "boolean"
                    },
                    "allowed_entity_types": {
                      "description": "The allowed entity types value.",
                      "items": {
                        "type": "string"
                      },
                      "type": "array"
                    },
                    "builtin_key": {
                      "description": "The builtin key value.",
                      "type": "string"
                    },
                    "color": {
                      "description": "The color value.",
                      "type": "string"
                    },
                    "created_at": {
                      "description": "The created at value.",
                      "format": "date-time",
                      "type": "string"
                    },
                    "description": {
                      "description": "The description value.",
                      "type": "string"
                    },
                    "display_description": {
                      "description": "The display description value.",
                      "type": "string"
                    },
                    "display_name": {
                      "description": "The display name value.",
                      "type": "string"
                    },
                    "forward_label": {
                      "description": "The forward label value.",
                      "type": "string"
                    },
                    "id": {
                      "description": "The id value.",
                      "type": "integer"
                    },
                    "is_system": {
                      "description": "The is system value.",
                      "type": "boolean"
                    },
                    "name": {
                      "description": "The name value.",
                      "type": "string"
                    },
                    "reverse_label": {
                      "description": "The reverse label value.",
                      "type": "string"
                    },
                    "updated_at": {
                      "description": "The updated at value.",
                      "format": "date-time",
                      "type": "string"
                    }
                  },
                  "required": [
                    "active",
                    "allowed_entity_types",
                    "color",
                    "created_at",
                    "description",
                    "display_name",
                    "forward_label",
                    "id",
                    "is_system",
                    "name",
                    "reverse_label",
                    "updated_at"
                  ],
                  "type": "object"
                },
                "type": "array"
              },
              "links": {
                "additionalProperties": false,
                "description": "The links value.",
                "properties": {
                  "incoming": {
                    "description": "The incoming value.",
                    "items": {
                      "additionalProperties": false,
                      "properties": {
                        "created_at": {
                          "description": "The created at value.",
                          "format": "date-time",
                          "type": "string"
                        },
                        "created_by": {
                          "description": "The created by value.",
                          "nullable": true,
                          "type": "integer"
                        },
                        "created_by_name": {
                          "description": "The created by name value.",
                          "type": "string"
                        },
                        "custom_field_id": {
                          "description": "The custom field id value.",
                          "nullable": true,
                          "type": "integer"
                        },
                        "custom_field_name": {
                          "description": "The custom field name value.",
                          "type": "string"
                        },
                        "id": {
                          "description": "The id value.",
                          "type": "integer"
                        },
                        "link_type_color": {
                          "description": "The link type color value.",
                          "type": "string"
                        },
                        "link_type_forward_label": {
                          "description": "The link type forward label value.",
                          "type": "string"
                        },
                        "link_type_id": {
                          "description": "The link type id value.",
                          "type": "integer"
                        },
                        "link_type_name": {
                          "description": "The link type name value.",
                          "type": "string"
                        },
                        "link_type_reverse_label": {
                          "description": "The link type reverse label value.",
                          "type": "string"
                        },
                        "source_id": {
                          "description": "The source id value.",
                          "type": "integer"
                        },
                        "source_item_number": {
                          "description": "The source item number value.",
                          "nullable": true,
                          "type": "integer"
                        },
                        "source_item_type_color": {
                          "description": "The source item type color value.",
                          "type": "string"
                        },
                        "source_item_type_icon": {
                          "description": "The source item type icon value.",
                          "type": "string"
                        },
                        "source_item_type_id": {
                          "description": "The source item type id value.",
                          "nullable": true,
                          "type": "integer"
                        },
                        "source_item_type_name": {
                          "description": "The source item type name value.",
                          "type": "string"
                        },
                        "source_status_color": {
                          "description": "The source status color value.",
                          "type": "string"
                        },
                        "source_status_id": {
                          "description": "The source status id value.",
                          "nullable": true,
                          "type": "integer"
                        },
                        "source_status_name": {
                          "description": "The source status name value.",
                          "type": "string"
                        },
                        "source_title": {
                          "description": "The source title value.",
                          "type": "string"
                        },
                        "source_type": {
                          "description": "The source type value.",
                          "type": "string"
                        },
                        "source_workspace_id": {
                          "description": "The source workspace id value.",
                          "nullable": true,
                          "type": "integer"
                        },
                        "source_workspace_key": {
                          "description": "The source workspace key value.",
                          "type": "string"
                        },
                        "target_id": {
                          "description": "The target id value.",
                          "type": "integer"
                        },
                        "target_item_number": {
                          "description": "The target item number value.",
                          "nullable": true,
                          "type": "integer"
                        },
                        "target_item_type_color": {
                          "description": "The target item type color value.",
                          "type": "string"
                        },
                        "target_item_type_icon": {
                          "description": "The target item type icon value.",
                          "type": "string"
                        },
                        "target_item_type_id": {
                          "description": "The target item type id value.",
                          "nullable": true,
                          "type": "integer"
                        },
                        "target_item_type_name": {
                          "description": "The target item type name value.",
                          "type": "string"
                        },
                        "target_status_color": {
                          "description": "The target status color value.",
                          "type": "string"
                        },
                        "target_status_id": {
                          "description": "The target status id value.",
                          "nullable": true,
                          "type": "integer"
                        },
                        "target_status_name": {
                          "description": "The target status name value.",
                          "type": "string"
                        },
                        "target_title": {
                          "description": "The target title value.",
                          "type": "string"
                        },
                        "target_type": {
                          "description": "The target type value.",
                          "type": "string"
                        },
                        "target_workspace_id": {
                          "description": "The target workspace id value.",
                          "nullable": true,
                          "type": "integer"
                        },
                        "target_workspace_key": {
                          "description": "The target workspace key value.",
                          "type": "string"
                        }
                      },
                      "required": [
                        "created_at",
                        "id",
                        "link_type_id",
                        "source_id",
                        "source_type",
                        "target_id",
                        "target_type"
                      ],
                      "type": "object"
                    },
                    "type": "array"
                  },
                  "outgoing": {
                    "description": "The outgoing value.",
                    "items": {
                      "additionalProperties": false,
                      "properties": {
                        "created_at": {
                          "description": "The created at value.",
                          "format": "date-time",
                          "type": "string"
                        },
                        "created_by": {
                          "description": "The created by value.",
                          "nullable": true,
                          "type": "integer"
                        },
                        "created_by_name": {
                          "description": "The created by name value.",
                          "type": "string"
                        },
                        "custom_field_id": {
                          "description": "The custom field id value.",
                          "nullable": true,
                          "type": "integer"
                        },
                        "custom_field_name": {
                          "description": "The custom field name value.",
                          "type": "string"
                        },
                        "id": {
                          "description": "The id value.",
                          "type": "integer"
                        },
                        "link_type_color": {
                          "description": "The link type color value.",
                          "type": "string"
                        },
                        "link_type_forward_label": {
                          "description": "The link type forward label value.",
                          "type": "string"
                        },
                        "link_type_id": {
                          "description": "The link type id value.",
                          "type": "integer"
                        },
                        "link_type_name": {
                          "description": "The link type name value.",
                          "type": "string"
                        },
                        "link_type_reverse_label": {
                          "description": "The link type reverse label value.",
                          "type": "string"
                        },
                        "source_id": {
                          "description": "The source id value.",
                          "type": "integer"
                        },
                        "source_item_number": {
                          "description": "The source item number value.",
                          "nullable": true,
                          "type": "integer"
                        },
                        "source_item_type_color": {
                          "description": "The source item type color value.",
                          "type": "string"
                        },
                        "source_item_type_icon": {
                          "description": "The source item type icon value.",
                          "type": "string"
                        },
                        "source_item_type_id": {
                          "description": "The source item type id value.",
                          "nullable": true,
                          "type": "integer"
                        },
                        "source_item_type_name": {
                          "description": "The source item type name value.",
                          "type": "string"
                        },
                        "source_status_color": {
                          "description": "The source status color value.",
                          "type": "string"
                        },
                        "source_status_id": {
                          "description": "The source status id value.",
                          "nullable": true,
                          "type": "integer"
                        },
                        "source_status_name": {
                          "description": "The source status name value.",
                          "type": "string"
                        },
                        "source_title": {
                          "description": "The source title value.",
                          "type": "string"
                        },
                        "source_type": {
                          "description": "The source type value.",
                          "type": "string"
                        },
                        "source_workspace_id": {
                          "description": "The source workspace id value.",
                          "nullable": true,
                          "type": "integer"
                        },
                        "source_workspace_key": {
                          "description": "The source workspace key value.",
                          "type": "string"
                        },
                        "target_id": {
                          "description": "The target id value.",
                          "type": "integer"
                        },
                        "target_item_number": {
                          "description": "The target item number value.",
                          "nullable": true,
                          "type": "integer"
                        },
                        "target_item_type_color": {
                          "description": "The target item type color value.",
                          "type": "string"
                        },
                        "target_item_type_icon": {
                          "description": "The target item type icon value.",
                          "type": "string"
                        },
                        "target_item_type_id": {
                          "description": "The target item type id value.",
                          "nullable": true,
                          "type": "integer"
                        },
                        "target_item_type_name": {
                          "description": "The target item type name value.",
                          "type": "string"
                        },
                        "target_status_color": {
                          "description": "The target status color value.",
                          "type": "string"
                        },
                        "target_status_id": {
                          "description": "The target status id value.",
                          "nullable": true,
                          "type": "integer"
                        },
                        "target_status_name": {
                          "description": "The target status name value.",
                          "type": "string"
                        },
                        "target_title": {
                          "description": "The target title value.",
                          "type": "string"
                        },
                        "target_type": {
                          "description": "The target type value.",
                          "type": "string"
                        },
                        "target_workspace_id": {
                          "description": "The target workspace id value.",
                          "nullable": true,
                          "type": "integer"
                        },
                        "target_workspace_key": {
                          "description": "The target workspace key value.",
                          "type": "string"
                        }
                      },
                      "required": [
                        "created_at",
                        "id",
                        "link_type_id",
                        "source_id",
                        "source_type",
                        "target_id",
                        "target_type"
                      ],
                      "type": "object"
                    },
                    "type": "array"
                  }
                },
                "required": [
                  "incoming",
                  "outgoing"
                ],
                "type": "object"
              },
              "manual_actions": {
                "description": "The manual actions value.",
                "items": {
                  "additionalProperties": false,
                  "nullable": true,
                  "properties": {
                    "actor_name": {
                      "description": "The actor name value.",
                      "type": "string"
                    },
                    "actor_user_id": {
                      "description": "The actor user id value.",
                      "nullable": true,
                      "type": "integer"
                    },
                    "allowed_role_ids": {
                      "description": "The allowed role ids value.",
                      "items": {
                        "type": "integer"
                      },
                      "type": "array"
                    },
                    "created_at": {
                      "description": "The created at value.",
                      "format": "date-time",
                      "type": "string"
                    },
                    "created_by": {
                      "description": "The created by value.",
                      "nullable": true,
                      "type": "integer"
                    },
                    "creator_name": {
                      "description": "The creator name value.",
                      "type": "string"
                    },
                    "description": {
                      "description": "The description value.",
                      "type": "string"
                    },
                    "edges": {
                      "description": "The edges value.",
                      "items": {
                        "additionalProperties": false,
                        "properties": {
                          "action_id": {
                            "description": "The action id value.",
                            "type": "integer"
                          },
                          "created_at": {
                            "description": "The created at value.",
                            "format": "date-time",
                            "type": "string"
                          },
                          "edge_type": {
                            "description": "The edge type value.",
                            "type": "string"
                          },
                          "id": {
                            "description": "The id value.",
                            "type": "integer"
                          },
                          "source_handle": {
                            "description": "The source handle value.",
                            "type": "string"
                          },
                          "source_node_id": {
                            "description": "The source node id value.",
                            "type": "integer"
                          },
                          "target_handle": {
                            "description": "The target handle value.",
                            "type": "string"
                          },
                          "target_node_id": {
                            "description": "The target node id value.",
                            "type": "integer"
                          }
                        },
                        "required": [
                          "action_id",
                          "created_at",
                          "edge_type",
                          "id",
                          "source_node_id",
                          "target_node_id"
                        ],
                        "type": "object"
                      },
                      "type": "array"
                    },
                    "id": {
                      "description": "The id value.",
                      "type": "integer"
                    },
                    "is_enabled": {
                      "description": "The is enabled value.",
                      "type": "boolean"
                    },
                    "name": {
                      "description": "The name value.",
                      "type": "string"
                    },
                    "nodes": {
                      "description": "The nodes value.",
                      "items": {
                        "additionalProperties": false,
                        "properties": {
                          "action_id": {
                            "description": "The action id value.",
                            "type": "integer"
                          },
                          "created_at": {
                            "description": "The created at value.",
                            "format": "date-time",
                            "type": "string"
                          },
                          "id": {
                            "description": "The id value.",
                            "type": "integer"
                          },
                          "node_config": {
                            "description": "The node config value.",
                            "type": "string"
                          },
                          "node_type": {
                            "description": "The node type value.",
                            "type": "string"
                          },
                          "position_x": {
                            "description": "The position x value.",
                            "type": "number"
                          },
                          "position_y": {
                            "description": "The position y value.",
                            "type": "number"
                          },
                          "updated_at": {
                            "description": "The updated at value.",
                            "format": "date-time",
                            "type": "string"
                          }
                        },
                        "required": [
                          "action_id",
                          "created_at",
                          "id",
                          "node_config",
                          "node_type",
                          "position_x",
                          "position_y",
                          "updated_at"
                        ],
                        "type": "object"
                      },
                      "type": "array"
                    },
                    "trigger_config": {
                      "description": "The trigger config value.",
                      "type": "string"
                    },
                    "trigger_type": {
                      "description": "The trigger type value.",
                      "type": "string"
                    },
                    "updated_at": {
                      "description": "The updated at value.",
                      "format": "date-time",
                      "type": "string"
                    },
                    "workspace_id": {
                      "description": "The workspace id value.",
                      "type": "integer"
                    }
                  },
                  "required": [
                    "allowed_role_ids",
                    "created_at",
                    "id",
                    "is_enabled",
                    "name",
                    "trigger_type",
                    "updated_at",
                    "workspace_id"
                  ],
                  "type": "object"
                },
                "type": "array"
              },
              "personal_task_count": {
                "description": "The personal task count value.",
                "type": "integer"
              },
              "priorities": {
                "description": "The priorities value.",
                "items": {
                  "additionalProperties": false,
                  "properties": {
                    "builtin_key": {
                      "description": "The builtin key value.",
                      "type": "string"
                    },
                    "color": {
                      "description": "The color value.",
                      "type": "string"
                    },
                    "icon": {
                      "description": "The icon value.",
                      "type": "string"
                    },
                    "id": {
                      "description": "The id value.",
                      "type": "integer"
                    },
                    "name": {
                      "description": "The name value.",
                      "type": "string"
                    },
                    "sort_order": {
                      "description": "The sort order value.",
                      "type": "integer"
                    }
                  },
                  "required": [
                    "color",
                    "icon",
                    "id",
                    "name",
                    "sort_order"
                  ],
                  "type": "object"
                },
                "type": "array"
              },
              "request_type_fields": {
                "description": "The request type fields value.",
                "items": {
                  "additionalProperties": false,
                  "properties": {
                    "created_at": {
                      "description": "The created at value.",
                      "format": "date-time",
                      "type": "string"
                    },
                    "description": {
                      "description": "The description value.",
                      "nullable": true,
                      "type": "string"
                    },
                    "display_name": {
                      "description": "The display name value.",
                      "nullable": true,
                      "type": "string"
                    },
                    "display_order": {
                      "description": "The display order value.",
                      "type": "integer"
                    },
                    "field_identifier": {
                      "description": "The field identifier value.",
                      "type": "string"
                    },
                    "field_label": {
                      "description": "The field label value.",
                      "type": "string"
                    },
                    "field_name": {
                      "description": "The field name value.",
                      "type": "string"
                    },
                    "field_type": {
                      "description": "The field type value.",
                      "type": "string"
                    },
                    "id": {
                      "description": "The id value.",
                      "type": "integer"
                    },
                    "is_required": {
                      "description": "The is required value.",
                      "type": "boolean"
                    },
                    "request_type_id": {
                      "description": "The request type id value.",
                      "type": "integer"
                    },
                    "step_number": {
                      "description": "The step number value.",
                      "type": "integer"
                    },
                    "updated_at": {
                      "description": "The updated at value.",
                      "format": "date-time",
                      "type": "string"
                    },
                    "virtual_field_options": {
                      "description": "The virtual field options value.",
                      "nullable": true,
                      "type": "string"
                    },
                    "virtual_field_type": {
                      "description": "The virtual field type value.",
                      "nullable": true,
                      "type": "string"
                    }
                  },
                  "required": [
                    "created_at",
                    "display_order",
                    "field_identifier",
                    "field_type",
                    "id",
                    "is_required",
                    "request_type_id",
                    "step_number",
                    "updated_at"
                  ],
                  "type": "object"
                },
                "type": "array"
              },
              "scm_available": {
                "description": "The scm available value.",
                "type": "boolean"
              },
              "screen_context": {
                "additionalProperties": false,
                "description": "The screen context value.",
                "properties": {
                  "edit": {
                    "additionalProperties": false,
                    "description": "The edit value.",
                    "nullable": true,
                    "properties": {
                      "builtin_key": {
                        "description": "The builtin key value.",
                        "type": "string"
                      },
                      "created_at": {
                        "description": "The created at value.",
                        "format": "date-time",
                        "type": "string"
                      },
                      "description": {
                        "description": "The description value.",
                        "type": "string"
                      },
                      "display_description": {
                        "description": "The display description value.",
                        "type": "string"
                      },
                      "display_name": {
                        "description": "The display name value.",
                        "type": "string"
                      },
                      "fields": {
                        "description": "The fields value.",
                        "items": {
                          "additionalProperties": false,
                          "properties": {
                            "display_order": {
                              "description": "The display order value.",
                              "type": "integer"
                            },
                            "field_config": {
                              "additionalProperties": {
                                "description": "Arbitrary JSON extension value."
                              },
                              "description": "The field config value.",
                              "type": "object"
                            },
                            "field_identifier": {
                              "description": "The field identifier value.",
                              "type": "string"
                            },
                            "field_label": {
                              "description": "The field label value.",
                              "type": "string"
                            },
                            "field_name": {
                              "description": "The field name value.",
                              "type": "string"
                            },
                            "field_type": {
                              "description": "The field type value.",
                              "type": "string"
                            },
                            "field_width": {
                              "description": "The field width value.",
                              "type": "string"
                            },
                            "id": {
                              "description": "The id value.",
                              "type": "integer"
                            },
                            "is_required": {
                              "description": "The is required value.",
                              "type": "boolean"
                            },
                            "screen_id": {
                              "description": "The screen id value.",
                              "type": "integer"
                            }
                          },
                          "required": [
                            "display_order",
                            "field_identifier",
                            "field_type",
                            "field_width",
                            "id",
                            "is_required",
                            "screen_id"
                          ],
                          "type": "object"
                        },
                        "type": "array"
                      },
                      "id": {
                        "description": "The id value.",
                        "type": "integer"
                      },
                      "name": {
                        "description": "The name value.",
                        "type": "string"
                      },
                      "system_fields": {
                        "description": "The system fields value.",
                        "items": {
                          "type": "string"
                        },
                        "type": "array"
                      },
                      "updated_at": {
                        "description": "The updated at value.",
                        "format": "date-time",
                        "type": "string"
                      }
                    },
                    "required": [
                      "created_at",
                      "description",
                      "display_name",
                      "id",
                      "name",
                      "updated_at"
                    ],
                    "type": "object"
                  },
                  "view": {
                    "additionalProperties": false,
                    "description": "The view value.",
                    "nullable": true,
                    "properties": {
                      "builtin_key": {
                        "description": "The builtin key value.",
                        "type": "string"
                      },
                      "created_at": {
                        "description": "The created at value.",
                        "format": "date-time",
                        "type": "string"
                      },
                      "description": {
                        "description": "The description value.",
                        "type": "string"
                      },
                      "display_description": {
                        "description": "The display description value.",
                        "type": "string"
                      },
                      "display_name": {
                        "description": "The display name value.",
                        "type": "string"
                      },
                      "fields": {
                        "description": "The fields value.",
                        "items": {
                          "additionalProperties": false,
                          "properties": {
                            "display_order": {
                              "description": "The display order value.",
                              "type": "integer"
                            },
                            "field_config": {
                              "additionalProperties": {
                                "description": "Arbitrary JSON extension value."
                              },
                              "description": "The field config value.",
                              "type": "object"
                            },
                            "field_identifier": {
                              "description": "The field identifier value.",
                              "type": "string"
                            },
                            "field_label": {
                              "description": "The field label value.",
                              "type": "string"
                            },
                            "field_name": {
                              "description": "The field name value.",
                              "type": "string"
                            },
                            "field_type": {
                              "description": "The field type value.",
                              "type": "string"
                            },
                            "field_width": {
                              "description": "The field width value.",
                              "type": "string"
                            },
                            "id": {
                              "description": "The id value.",
                              "type": "integer"
                            },
                            "is_required": {
                              "description": "The is required value.",
                              "type": "boolean"
                            },
                            "screen_id": {
                              "description": "The screen id value.",
                              "type": "integer"
                            }
                          },
                          "required": [
                            "display_order",
                            "field_identifier",
                            "field_type",
                            "field_width",
                            "id",
                            "is_required",
                            "screen_id"
                          ],
                          "type": "object"
                        },
                        "type": "array"
                      },
                      "id": {
                        "description": "The id value.",
                        "type": "integer"
                      },
                      "name": {
                        "description": "The name value.",
                        "type": "string"
                      },
                      "system_fields": {
                        "description": "The system fields value.",
                        "items": {
                          "type": "string"
                        },
                        "type": "array"
                      },
                      "updated_at": {
                        "description": "The updated at value.",
                        "format": "date-time",
                        "type": "string"
                      }
                    },
                    "required": [
                      "created_at",
                      "description",
                      "display_name",
                      "id",
                      "name",
                      "updated_at"
                    ],
                    "type": "object"
                  }
                },
                "type": "object"
              },
              "section_errors": {
                "description": "The section errors value.",
                "items": {
                  "additionalProperties": false,
                  "properties": {
                    "code": {
                      "description": "The code value.",
                      "type": "string"
                    },
                    "section": {
                      "description": "The section value.",
                      "type": "string"
                    }
                  },
                  "required": [
                    "code",
                    "section"
                  ],
                  "type": "object"
                },
                "type": "array"
              },
              "transitions": {
                "additionalProperties": false,
                "description": "The transitions value.",
                "properties": {
                  "available_transitions": {
                    "description": "The available transitions value.",
                    "items": {
                      "additionalProperties": false,
                      "properties": {
                        "builtin_key": {
                          "description": "The builtin key value.",
                          "type": "string"
                        },
                        "category_color": {
                          "description": "The category color value.",
                          "type": "string"
                        },
                        "id": {
                          "description": "The id value.",
                          "type": "integer"
                        },
                        "name": {
                          "description": "The name value.",
                          "type": "string"
                        },
                        "value": {
                          "description": "The value value.",
                          "type": "string"
                        }
                      },
                      "required": [
                        "builtin_key",
                        "id",
                        "name",
                        "value"
                      ],
                      "type": "object"
                    },
                    "type": "array"
                  },
                  "current_status": {
                    "description": "The current status value.",
                    "type": "string"
                  },
                  "pending_approval": {
                    "additionalProperties": false,
                    "description": "The pending approval value.",
                    "nullable": true,
                    "properties": {
                      "id": {
                        "description": "The id value.",
                        "type": "integer"
                      },
                      "status": {
                        "description": "The status value.",
                        "type": "string"
                      },
                      "you_can_decide": {
                        "description": "The you can decide value.",
                        "type": "boolean"
                      }
                    },
                    "required": [
                      "id",
                      "status",
                      "you_can_decide"
                    ],
                    "type": "object"
                  }
                },
                "required": [
                  "available_transitions",
                  "current_status"
                ],
                "type": "object"
              },
              "watching": {
                "description": "The watching value.",
                "type": "boolean"
              }
            },
            "required": [
              "ancestors",
              "available_sub_issue_types",
              "children",
              "has_agent_runs",
              "link_types",
              "links",
              "manual_actions",
              "personal_task_count",
              "priorities",
              "request_type_fields",
              "scm_available",
              "screen_context",
              "section_errors",
              "transitions",
              "watching"
            ],
            "type": "object"
          }
        },
        "required": [
          "data"
        ],
        "type": "object"
      },
      "GetWorkspacesWorkspaceKeyItemsItemNumberResult": {
        "additionalProperties": false,
        "properties": {
          "data": {
            "additionalProperties": false,
            "nullable": true,
            "properties": {
              "assignee_avatar": {
                "description": "The assignee avatar value.",
                "type": "string"
              },
              "assignee_email": {
                "description": "The assignee email value.",
                "type": "string"
              },
              "assignee_id": {
                "description": "The assignee id value.",
                "nullable": true,
                "type": "integer"
              },
              "assignee_name": {
                "description": "The assignee name value.",
                "type": "string"
              },
              "calendar_data": {
                "description": "The calendar data value.",
                "items": {
                  "additionalProperties": false,
                  "properties": {
                    "created_at": {
                      "description": "The created at value.",
                      "type": "string"
                    },
                    "duration_minutes": {
                      "description": "The duration minutes value.",
                      "type": "integer"
                    },
                    "notes": {
                      "description": "The notes value.",
                      "type": "string"
                    },
                    "scheduled_date": {
                      "description": "The scheduled date value.",
                      "type": "string"
                    },
                    "scheduled_time": {
                      "description": "The scheduled time value.",
                      "type": "string"
                    },
                    "user_id": {
                      "description": "The user id value.",
                      "type": "integer"
                    },
                    "workspace_id": {
                      "description": "The workspace id value.",
                      "type": "integer"
                    }
                  },
                  "required": [
                    "created_at",
                    "scheduled_date",
                    "user_id",
                    "workspace_id"
                  ],
                  "type": "object"
                },
                "type": "array"
              },
              "channel_id": {
                "description": "The channel id value.",
                "nullable": true,
                "type": "integer"
              },
              "channel_name": {
                "description": "The channel name value.",
                "type": "string"
              },
              "children": {
                "description": "The children value.",
                "items": {
                  "description": "Nested resource reference.",
                  "type": "object"
                },
                "type": "array"
              },
              "completed_at": {
                "description": "The completed at value.",
                "format": "date-time",
                "nullable": true,
                "type": "string"
              },
              "created_at": {
                "description": "The created at value.",
                "format": "date-time",
                "type": "string"
              },
              "creator_email": {
                "description": "The creator email value.",
                "type": "string"
              },
              "creator_id": {
                "description": "The creator id value.",
                "nullable": true,
                "type": "integer"
              },
              "creator_name": {
                "description": "The creator name value.",
                "type": "string"
              },
              "creator_portal_customer_email": {
                "description": "The creator portal customer email value.",
                "type": "string"
              },
              "creator_portal_customer_id": {
                "description": "The creator portal customer id value.",
                "nullable": true,
                "type": "integer"
              },
              "creator_portal_customer_name": {
                "description": "The creator portal customer name value.",
                "type": "string"
              },
              "custom_field_values": {
                "additionalProperties": {
                  "description": "Arbitrary JSON extension value."
                },
                "description": "The custom field values value.",
                "type": "object"
              },
              "description": {
                "description": "The description value.",
                "type": "string"
              },
              "description_html": {
                "description": "The description html value.",
                "type": "string"
              },
              "due_date": {
                "description": "The due date value.",
                "format": "date-time",
                "nullable": true,
                "type": "string"
              },
              "effective_project_id": {
                "description": "The effective project id value.",
                "nullable": true,
                "type": "integer"
              },
              "effective_project_name": {
                "description": "The effective project name value.",
                "type": "string"
              },
              "end_date": {
                "description": "The end date value.",
                "format": "date-time",
                "nullable": true,
                "type": "string"
              },
              "estimate_minutes": {
                "description": "The estimate minutes value.",
                "nullable": true,
                "type": "integer"
              },
              "frac_index": {
                "description": "The frac index value.",
                "nullable": true,
                "type": "string"
              },
              "id": {
                "description": "The id value.",
                "type": "integer"
              },
              "inherit_project": {
                "description": "The inherit project value.",
                "type": "boolean"
              },
              "is_task": {
                "description": "Whether the item is a personal task. True is valid only in the authenticated caller's personal workspace and only with the Open or Done system status.",
                "type": "boolean"
              },
              "item_type_builtin_key": {
                "description": "The item type builtin key value.",
                "type": "string"
              },
              "item_type_id": {
                "description": "The item type id value.",
                "nullable": true,
                "type": "integer"
              },
              "item_type_name": {
                "description": "The item type name value.",
                "type": "string"
              },
              "iteration_end_date": {
                "description": "The iteration end date value.",
                "type": "string"
              },
              "iteration_id": {
                "description": "The iteration id value.",
                "nullable": true,
                "type": "integer"
              },
              "iteration_name": {
                "description": "The iteration name value.",
                "type": "string"
              },
              "key": {
                "description": "The key value.",
                "type": "string"
              },
              "labels": {
                "description": "The labels value.",
                "items": {
                  "additionalProperties": false,
                  "properties": {
                    "color": {
                      "description": "The color value.",
                      "type": "string"
                    },
                    "created_at": {
                      "description": "The created at value.",
                      "format": "date-time",
                      "type": "string"
                    },
                    "id": {
                      "description": "The id value.",
                      "type": "integer"
                    },
                    "name": {
                      "description": "The name value.",
                      "type": "string"
                    },
                    "updated_at": {
                      "description": "The updated at value.",
                      "format": "date-time",
                      "type": "string"
                    }
                  },
                  "required": [
                    "color",
                    "created_at",
                    "id",
                    "name",
                    "updated_at"
                  ],
                  "type": "object"
                },
                "type": "array"
              },
              "last_active_at": {
                "description": "The last active at value.",
                "format": "date-time",
                "type": "string"
              },
              "milestones": {
                "description": "The milestones value.",
                "items": {
                  "additionalProperties": false,
                  "properties": {
                    "category_color": {
                      "description": "The category color value.",
                      "type": "string"
                    },
                    "category_id": {
                      "description": "The category id value.",
                      "nullable": true,
                      "type": "integer"
                    },
                    "category_name": {
                      "description": "The category name value.",
                      "type": "string"
                    },
                    "created_at": {
                      "description": "The created at value.",
                      "format": "date-time",
                      "type": "string"
                    },
                    "description": {
                      "description": "The description value.",
                      "type": "string"
                    },
                    "external_key": {
                      "description": "The external key value.",
                      "nullable": true,
                      "type": "string"
                    },
                    "id": {
                      "description": "The id value.",
                      "type": "integer"
                    },
                    "is_global": {
                      "description": "The is global value.",
                      "type": "boolean"
                    },
                    "latest_release": {
                      "additionalProperties": false,
                      "description": "The latest release value.",
                      "nullable": true,
                      "properties": {
                        "body": {
                          "description": "The body value.",
                          "type": "string"
                        },
                        "created_at": {
                          "description": "The created at value.",
                          "type": "string"
                        },
                        "created_by": {
                          "description": "The created by value.",
                          "nullable": true,
                          "type": "integer"
                        },
                        "id": {
                          "description": "The id value.",
                          "type": "integer"
                        },
                        "is_draft": {
                          "description": "The is draft value.",
                          "type": "boolean"
                        },
                        "is_prerelease": {
                          "description": "The is prerelease value.",
                          "type": "boolean"
                        },
                        "milestone_id": {
                          "description": "The milestone id value.",
                          "type": "integer"
                        },
                        "name": {
                          "description": "The name value.",
                          "type": "string"
                        },
                        "scm_connection_id": {
                          "description": "The scm connection id value.",
                          "nullable": true,
                          "type": "integer"
                        },
                        "scm_release_id": {
                          "description": "The scm release id value.",
                          "nullable": true,
                          "type": "string"
                        },
                        "scm_release_url": {
                          "description": "The scm release url value.",
                          "nullable": true,
                          "type": "string"
                        },
                        "scm_repository": {
                          "description": "The scm repository value.",
                          "nullable": true,
                          "type": "string"
                        },
                        "tag_name": {
                          "description": "The tag name value.",
                          "type": "string"
                        },
                        "target_commitish": {
                          "description": "The target commitish value.",
                          "type": "string"
                        }
                      },
                      "required": [
                        "created_at",
                        "id",
                        "is_draft",
                        "is_prerelease",
                        "milestone_id",
                        "tag_name"
                      ],
                      "type": "object"
                    },
                    "name": {
                      "description": "The name value.",
                      "type": "string"
                    },
                    "position": {
                      "description": "The position value.",
                      "type": "integer"
                    },
                    "releases": {
                      "description": "The releases value.",
                      "items": {
                        "additionalProperties": false,
                        "properties": {
                          "body": {
                            "description": "The body value.",
                            "type": "string"
                          },
                          "created_at": {
                            "description": "The created at value.",
                            "type": "string"
                          },
                          "created_by": {
                            "description": "The created by value.",
                            "nullable": true,
                            "type": "integer"
                          },
                          "id": {
                            "description": "The id value.",
                            "type": "integer"
                          },
                          "is_draft": {
                            "description": "The is draft value.",
                            "type": "boolean"
                          },
                          "is_prerelease": {
                            "description": "The is prerelease value.",
                            "type": "boolean"
                          },
                          "milestone_id": {
                            "description": "The milestone id value.",
                            "type": "integer"
                          },
                          "name": {
                            "description": "The name value.",
                            "type": "string"
                          },
                          "scm_connection_id": {
                            "description": "The scm connection id value.",
                            "nullable": true,
                            "type": "integer"
                          },
                          "scm_release_id": {
                            "description": "The scm release id value.",
                            "nullable": true,
                            "type": "string"
                          },
                          "scm_release_url": {
                            "description": "The scm release url value.",
                            "nullable": true,
                            "type": "string"
                          },
                          "scm_repository": {
                            "description": "The scm repository value.",
                            "nullable": true,
                            "type": "string"
                          },
                          "tag_name": {
                            "description": "The tag name value.",
                            "type": "string"
                          },
                          "target_commitish": {
                            "description": "The target commitish value.",
                            "type": "string"
                          }
                        },
                        "required": [
                          "created_at",
                          "id",
                          "is_draft",
                          "is_prerelease",
                          "milestone_id",
                          "tag_name"
                        ],
                        "type": "object"
                      },
                      "type": "array"
                    },
                    "status": {
                      "description": "The status value.",
                      "type": "string"
                    },
                    "target_date": {
                      "description": "The target date value.",
                      "nullable": true,
                      "type": "string"
                    },
                    "updated_at": {
                      "description": "The updated at value.",
                      "format": "date-time",
                      "type": "string"
                    },
                    "workspace_id": {
                      "description": "The workspace id value.",
                      "nullable": true,
                      "type": "integer"
                    },
                    "workspace_name": {
                      "description": "The workspace name value.",
                      "type": "string"
                    }
                  },
                  "required": [
                    "created_at",
                    "description",
                    "id",
                    "is_global",
                    "name",
                    "position",
                    "status",
                    "updated_at"
                  ],
                  "type": "object"
                },
                "type": "array"
              },
              "parent_id": {
                "description": "The parent id value.",
                "nullable": true,
                "type": "integer"
              },
              "parent_key": {
                "description": "The parent key value.",
                "type": "string"
              },
              "parent_title": {
                "description": "The parent title value.",
                "type": "string"
              },
              "parent_workspace_item_number": {
                "description": "The parent workspace item number value.",
                "nullable": true,
                "type": "integer"
              },
              "personal_labels": {
                "description": "The personal labels value.",
                "items": {
                  "additionalProperties": false,
                  "properties": {
                    "color": {
                      "description": "The color value.",
                      "type": "string"
                    },
                    "created_at": {
                      "description": "The created at value.",
                      "format": "date-time",
                      "type": "string"
                    },
                    "id": {
                      "description": "The id value.",
                      "type": "integer"
                    },
                    "name": {
                      "description": "The name value.",
                      "type": "string"
                    },
                    "updated_at": {
                      "description": "The updated at value.",
                      "format": "date-time",
                      "type": "string"
                    },
                    "user_id": {
                      "description": "The user id value.",
                      "nullable": true,
                      "type": "integer"
                    }
                  },
                  "required": [
                    "color",
                    "created_at",
                    "id",
                    "name",
                    "updated_at"
                  ],
                  "type": "object"
                },
                "type": "array"
              },
              "priority_builtin_key": {
                "description": "The priority builtin key value.",
                "type": "string"
              },
              "priority_color": {
                "description": "The priority color value.",
                "type": "string"
              },
              "priority_icon": {
                "description": "The priority icon value.",
                "type": "string"
              },
              "priority_id": {
                "description": "The priority id value.",
                "nullable": true,
                "type": "integer"
              },
              "priority_name": {
                "description": "The priority name value.",
                "type": "string"
              },
              "project_id": {
                "description": "The project id value.",
                "nullable": true,
                "type": "integer"
              },
              "project_inheritance_mode": {
                "description": "The project inheritance mode value.",
                "type": "string"
              },
              "project_name": {
                "description": "The project name value.",
                "type": "string"
              },
              "related_work_item_id": {
                "description": "The related work item id value.",
                "nullable": true,
                "type": "integer"
              },
              "related_work_item_number": {
                "description": "The related work item number value.",
                "type": "integer"
              },
              "related_work_item_title": {
                "description": "The related work item title value.",
                "type": "string"
              },
              "related_work_item_workspace_id": {
                "description": "The related work item workspace id value.",
                "type": "integer"
              },
              "related_work_item_workspace_key": {
                "description": "The related work item workspace key value.",
                "type": "string"
              },
              "reporter_avatar": {
                "description": "The reporter avatar value.",
                "type": "string"
              },
              "reporter_email": {
                "description": "The reporter email value.",
                "type": "string"
              },
              "reporter_id": {
                "description": "The reporter id value.",
                "nullable": true,
                "type": "integer"
              },
              "reporter_name": {
                "description": "The reporter name value.",
                "type": "string"
              },
              "request_type_id": {
                "description": "The request type id value.",
                "nullable": true,
                "type": "integer"
              },
              "request_type_name": {
                "description": "The request type name value.",
                "type": "string"
              },
              "start_date": {
                "description": "The start date value.",
                "format": "date-time",
                "nullable": true,
                "type": "string"
              },
              "status_builtin_key": {
                "description": "The status builtin key value.",
                "type": "string"
              },
              "status_color": {
                "description": "The status color value.",
                "type": "string"
              },
              "status_id": {
                "description": "The status id value.",
                "nullable": true,
                "type": "integer"
              },
              "status_name": {
                "description": "The status name value.",
                "type": "string"
              },
              "status_since": {
                "description": "The status since value.",
                "format": "date-time",
                "nullable": true,
                "type": "string"
              },
              "story_points": {
                "description": "The story points value.",
                "nullable": true,
                "type": "number"
              },
              "time_project_id": {
                "description": "The time project id value.",
                "nullable": true,
                "type": "integer"
              },
              "time_project_name": {
                "description": "The time project name value.",
                "type": "string"
              },
              "title": {
                "description": "The title value.",
                "type": "string"
              },
              "updated_at": {
                "description": "The updated at value.",
                "format": "date-time",
                "type": "string"
              },
              "virtual_field_data": {
                "additionalProperties": {
                  "description": "Arbitrary JSON extension value."
                },
                "description": "The virtual field data value.",
                "type": "object"
              },
              "workspace_id": {
                "description": "The workspace id value.",
                "type": "integer"
              },
              "workspace_item_number": {
                "description": "The workspace item number value.",
                "type": "integer"
              },
              "workspace_key": {
                "description": "The workspace key value.",
                "type": "string"
              },
              "workspace_name": {
                "description": "The workspace name value.",
                "type": "string"
              }
            },
            "required": [
              "created_at",
              "description",
              "id",
              "inherit_project",
              "is_task",
              "last_active_at",
              "title",
              "updated_at",
              "workspace_id",
              "workspace_item_number"
            ],
            "type": "object"
          }
        },
        "required": [
          "data"
        ],
        "type": "object"
      },
      "Item": {
        "additionalProperties": false,
        "description": "A work item with stable identifiers and permission-filtered joined display fields.",
        "properties": {
          "assignee_avatar": {
            "description": "Assignee avatar URL.",
            "readOnly": true,
            "type": "string"
          },
          "assignee_email": {
            "description": "Assignee email address.",
            "format": "email",
            "readOnly": true,
            "type": "string"
          },
          "assignee_id": {
            "description": "Assigned user.",
            "minimum": 1,
            "nullable": true,
            "type": "integer"
          },
          "assignee_name": {
            "description": "Assignee display name.",
            "readOnly": true,
            "type": "string"
          },
          "calendar_data": {
            "description": "Permission-filtered calendar placements.",
            "items": {
              "$ref": "#/components/schemas/CalendarScheduleEntry"
            },
            "readOnly": true,
            "type": "array"
          },
          "channel_id": {
            "description": "Portal channel used for submission.",
            "minimum": 1,
            "nullable": true,
            "readOnly": true,
            "type": "integer"
          },
          "channel_name": {
            "description": "Portal channel name.",
            "readOnly": true,
            "type": "string"
          },
          "children": {
            "description": "Nested children when explicitly populated.",
            "items": {
              "$ref": "#/components/schemas/Item"
            },
            "readOnly": true,
            "type": "array"
          },
          "completed_at": {
            "description": "Timestamp when the item most recently entered a completed status.",
            "format": "date-time",
            "nullable": true,
            "readOnly": true,
            "type": "string"
          },
          "created_at": {
            "description": "Creation timestamp.",
            "format": "date-time",
            "readOnly": true,
            "type": "string"
          },
          "creator_email": {
            "description": "Creator email address.",
            "format": "email",
            "readOnly": true,
            "type": "string"
          },
          "creator_id": {
            "description": "Internal user who created the item.",
            "minimum": 1,
            "nullable": true,
            "readOnly": true,
            "type": "integer"
          },
          "creator_name": {
            "description": "Creator display name.",
            "readOnly": true,
            "type": "string"
          },
          "creator_portal_customer_email": {
            "description": "Portal creator email address.",
            "format": "email",
            "readOnly": true,
            "type": "string"
          },
          "creator_portal_customer_id": {
            "description": "Portal customer who created the item.",
            "minimum": 1,
            "nullable": true,
            "readOnly": true,
            "type": "integer"
          },
          "creator_portal_customer_name": {
            "description": "Portal creator display name.",
            "readOnly": true,
            "type": "string"
          },
          "custom_field_values": {
            "additionalProperties": true,
            "description": "Stored custom-field values keyed by field identifier.",
            "type": "object"
          },
          "description": {
            "description": "Markdown source for the item description.",
            "type": "string"
          },
          "description_html": {
            "description": "Rendered safe HTML for the description.",
            "readOnly": true,
            "type": "string"
          },
          "due_date": {
            "description": "Due timestamp.",
            "format": "date-time",
            "nullable": true,
            "type": "string"
          },
          "effective_project_id": {
            "description": "Resolved time-project after inheritance.",
            "minimum": 1,
            "nullable": true,
            "readOnly": true,
            "type": "integer"
          },
          "effective_project_name": {
            "description": "Resolved time-project name.",
            "readOnly": true,
            "type": "string"
          },
          "end_date": {
            "description": "Planned end timestamp.",
            "format": "date-time",
            "nullable": true,
            "type": "string"
          },
          "estimate_minutes": {
            "description": "Time estimate in minutes.",
            "minimum": 0,
            "nullable": true,
            "type": "integer"
          },
          "frac_index": {
            "description": "Opaque fractional rank used for manual ordering.",
            "nullable": true,
            "readOnly": true,
            "type": "string"
          },
          "id": {
            "description": "Globally unique item identifier.",
            "minimum": 1,
            "readOnly": true,
            "type": "integer"
          },
          "inherit_project": {
            "description": "Whether time-project membership is inherited from the parent.",
            "type": "boolean"
          },
          "is_task": {
            "description": "Whether this is a personal task. True is valid only in the owning user's personal workspace with status Open or Done.",
            "type": "boolean"
          },
          "item_type_builtin_key": {
            "description": "Stable built-in item-type key.",
            "readOnly": true,
            "type": "string"
          },
          "item_type_id": {
            "description": "Configured item type.",
            "minimum": 1,
            "nullable": true,
            "type": "integer"
          },
          "item_type_name": {
            "description": "Item-type display name.",
            "readOnly": true,
            "type": "string"
          },
          "iteration_end_date": {
            "description": "Assigned iteration end date.",
            "format": "date",
            "readOnly": true,
            "type": "string"
          },
          "iteration_id": {
            "description": "Assigned iteration.",
            "minimum": 1,
            "nullable": true,
            "type": "integer"
          },
          "iteration_name": {
            "description": "Assigned iteration name.",
            "readOnly": true,
            "type": "string"
          },
          "key": {
            "description": "Ready-to-display workspace key and item number.",
            "example": "WI-42",
            "readOnly": true,
            "type": "string"
          },
          "labels": {
            "description": "Shared labels attached to the item.",
            "items": {
              "$ref": "#/components/schemas/Label"
            },
            "readOnly": true,
            "type": "array"
          },
          "last_active_at": {
            "description": "Most recent content activity timestamp.",
            "format": "date-time",
            "readOnly": true,
            "type": "string"
          },
          "milestones": {
            "description": "Milestones attached to the item.",
            "items": {
              "$ref": "#/components/schemas/MilestoneSummary"
            },
            "readOnly": true,
            "type": "array"
          },
          "parent_id": {
            "description": "Direct parent item; null for a root item.",
            "minimum": 1,
            "nullable": true,
            "type": "integer"
          },
          "parent_key": {
            "description": "Display key of the parent item.",
            "readOnly": true,
            "type": "string"
          },
          "parent_title": {
            "description": "Parent item title.",
            "readOnly": true,
            "type": "string"
          },
          "parent_workspace_item_number": {
            "description": "Parent's workspace-scoped item number.",
            "minimum": 1,
            "nullable": true,
            "readOnly": true,
            "type": "integer"
          },
          "personal_labels": {
            "description": "Personal labels attached to the item.",
            "items": {
              "$ref": "#/components/schemas/PersonalLabel"
            },
            "readOnly": true,
            "type": "array"
          },
          "priority_builtin_key": {
            "description": "Stable built-in priority key.",
            "readOnly": true,
            "type": "string"
          },
          "priority_color": {
            "description": "Priority display color.",
            "readOnly": true,
            "type": "string"
          },
          "priority_icon": {
            "description": "Priority icon identifier.",
            "readOnly": true,
            "type": "string"
          },
          "priority_id": {
            "description": "Current priority.",
            "minimum": 1,
            "nullable": true,
            "type": "integer"
          },
          "priority_name": {
            "description": "Priority display name.",
            "readOnly": true,
            "type": "string"
          },
          "project_id": {
            "description": "Direct time-project membership.",
            "minimum": 1,
            "nullable": true,
            "type": "integer"
          },
          "project_inheritance_mode": {
            "description": "How the effective project was selected.",
            "enum": [
              "none",
              "inherit",
              "direct"
            ],
            "readOnly": true,
            "type": "string"
          },
          "project_name": {
            "description": "Direct time-project name.",
            "readOnly": true,
            "type": "string"
          },
          "related_work_item_id": {
            "description": "Work item linked from a personal task.",
            "minimum": 1,
            "nullable": true,
            "type": "integer"
          },
          "related_work_item_number": {
            "description": "Linked work-item workspace-scoped number.",
            "minimum": 1,
            "readOnly": true,
            "type": "integer"
          },
          "related_work_item_title": {
            "description": "Linked work-item title.",
            "readOnly": true,
            "type": "string"
          },
          "related_work_item_workspace_id": {
            "description": "Linked work-item workspace ID.",
            "minimum": 1,
            "readOnly": true,
            "type": "integer"
          },
          "related_work_item_workspace_key": {
            "description": "Linked work-item workspace key.",
            "readOnly": true,
            "type": "string"
          },
          "reporter_avatar": {
            "description": "Reporter avatar URL.",
            "readOnly": true,
            "type": "string"
          },
          "reporter_email": {
            "description": "Reporter email address.",
            "format": "email",
            "readOnly": true,
            "type": "string"
          },
          "reporter_id": {
            "description": "Imported reporter user.",
            "minimum": 1,
            "nullable": true,
            "readOnly": true,
            "type": "integer"
          },
          "reporter_name": {
            "description": "Reporter display name.",
            "readOnly": true,
            "type": "string"
          },
          "request_type_id": {
            "description": "Portal request type used for submission.",
            "minimum": 1,
            "nullable": true,
            "readOnly": true,
            "type": "integer"
          },
          "request_type_name": {
            "description": "Portal request-type name.",
            "readOnly": true,
            "type": "string"
          },
          "start_date": {
            "description": "Planned start timestamp.",
            "format": "date-time",
            "nullable": true,
            "type": "string"
          },
          "status_builtin_key": {
            "description": "Stable built-in status key.",
            "readOnly": true,
            "type": "string"
          },
          "status_color": {
            "description": "Status category color.",
            "readOnly": true,
            "type": "string"
          },
          "status_id": {
            "description": "Current status.",
            "minimum": 1,
            "nullable": true,
            "type": "integer"
          },
          "status_name": {
            "description": "Status display name.",
            "readOnly": true,
            "type": "string"
          },
          "status_since": {
            "description": "Timestamp when the item entered its current status.",
            "format": "date-time",
            "nullable": true,
            "readOnly": true,
            "type": "string"
          },
          "story_points": {
            "description": "Relative effort estimate.",
            "format": "double",
            "nullable": true,
            "type": "number"
          },
          "time_project_id": {
            "description": "Per-item project override used when logging time.",
            "minimum": 1,
            "nullable": true,
            "type": "integer"
          },
          "time_project_name": {
            "description": "Time-project override name.",
            "readOnly": true,
            "type": "string"
          },
          "title": {
            "description": "Plain-text item title.",
            "maxLength": 255,
            "minLength": 1,
            "type": "string"
          },
          "updated_at": {
            "description": "Last update timestamp.",
            "format": "date-time",
            "readOnly": true,
            "type": "string"
          },
          "virtual_field_data": {
            "additionalProperties": true,
            "description": "Computed custom-field display data.",
            "readOnly": true,
            "type": "object"
          },
          "workspace_id": {
            "description": "Owning workspace identifier.",
            "minimum": 1,
            "type": "integer"
          },
          "workspace_item_number": {
            "description": "Sequential number unique within the workspace.",
            "minimum": 1,
            "readOnly": true,
            "type": "integer"
          },
          "workspace_key": {
            "description": "Workspace key used in item display keys.",
            "readOnly": true,
            "type": "string"
          },
          "workspace_name": {
            "description": "Workspace display name.",
            "readOnly": true,
            "type": "string"
          }
        },
        "required": [
          "id",
          "workspace_id",
          "workspace_item_number",
          "title",
          "description",
          "is_task",
          "inherit_project",
          "parent_id",
          "created_at",
          "updated_at",
          "last_active_at"
        ],
        "type": "object"
      },
      "ItemArrayDocument": {
        "additionalProperties": false,
        "properties": {
          "data": {
            "description": "Ordered item results.",
            "items": {
              "$ref": "#/components/schemas/Item"
            },
            "type": "array"
          }
        },
        "required": [
          "data"
        ],
        "type": "object"
      },
      "ItemBulkDocument": {
        "additionalProperties": false,
        "properties": {
          "data": {
            "$ref": "#/components/schemas/ItemBulkResult"
          }
        },
        "required": [
          "data"
        ],
        "type": "object"
      },
      "ItemBulkFields": {
        "additionalProperties": false,
        "description": "Fields accepted by atomic bulk item updates.",
        "minProperties": 1,
        "properties": {
          "assignee_id": {
            "description": "Replacement assignee.",
            "minimum": 1,
            "nullable": true,
            "type": "integer"
          },
          "creator_id": {
            "description": "Replacement internal creator.",
            "minimum": 1,
            "nullable": true,
            "type": "integer"
          },
          "custom_field_values": {
            "additionalProperties": true,
            "description": "Replacement custom-field values.",
            "nullable": true,
            "type": "object"
          },
          "description": {
            "description": "Replacement Markdown description.",
            "type": "string"
          },
          "due_date": {
            "description": "Replacement due timestamp.",
            "format": "date-time",
            "nullable": true,
            "type": "string"
          },
          "end_date": {
            "description": "Replacement end timestamp.",
            "format": "date-time",
            "nullable": true,
            "type": "string"
          },
          "estimate_minutes": {
            "description": "Replacement minute estimate.",
            "minimum": 0,
            "nullable": true,
            "type": "integer"
          },
          "inherit_project": {
            "description": "Replacement project-inheritance flag.",
            "type": "boolean"
          },
          "is_task": {
            "description": "Replacement personal-task flag. True is valid only for items in the caller's own personal workspace with status Open or Done.",
            "type": "boolean"
          },
          "iteration_id": {
            "description": "Replacement iteration.",
            "minimum": 1,
            "nullable": true,
            "type": "integer"
          },
          "parent_id": {
            "description": "Replacement parent.",
            "minimum": 1,
            "nullable": true,
            "type": "integer"
          },
          "priority_id": {
            "description": "Replacement priority.",
            "minimum": 1,
            "nullable": true,
            "type": "integer"
          },
          "project_id": {
            "description": "Replacement direct time project.",
            "minimum": 1,
            "nullable": true,
            "type": "integer"
          },
          "related_work_item_id": {
            "description": "Replacement related work item.",
            "minimum": 1,
            "nullable": true,
            "type": "integer"
          },
          "start_date": {
            "description": "Replacement start timestamp.",
            "format": "date-time",
            "nullable": true,
            "type": "string"
          },
          "story_points": {
            "description": "Replacement story-point estimate.",
            "format": "double",
            "minimum": 0,
            "nullable": true,
            "type": "number"
          },
          "time_project_id": {
            "description": "Replacement time-project override.",
            "minimum": 1,
            "nullable": true,
            "type": "integer"
          },
          "title": {
            "description": "Replacement title.",
            "maxLength": 255,
            "minLength": 1,
            "type": "string"
          }
        },
        "type": "object"
      },
      "ItemBulkPatchEntry": {
        "additionalProperties": false,
        "properties": {
          "item_id": {
            "description": "Item receiving this field set.",
            "minimum": 1,
            "type": "integer"
          },
          "set": {
            "$ref": "#/components/schemas/ItemBulkFields"
          }
        },
        "required": [
          "item_id",
          "set"
        ],
        "type": "object"
      },
      "ItemBulkPatchRequest": {
        "additionalProperties": false,
        "properties": {
          "patches": {
            "description": "Distinct patches; each item ID may appear only once.",
            "items": {
              "$ref": "#/components/schemas/ItemBulkPatchEntry"
            },
            "maxItems": 5000,
            "minItems": 1,
            "type": "array"
          }
        },
        "required": [
          "patches"
        ],
        "type": "object"
      },
      "ItemBulkResult": {
        "additionalProperties": false,
        "properties": {
          "atomic": {
            "description": "Always true: either every requested change commits or none do.",
            "type": "boolean"
          },
          "items": {
            "description": "Hydrated items that changed, in deterministic item-ID order.",
            "items": {
              "$ref": "#/components/schemas/Item"
            },
            "type": "array"
          },
          "requested_count": {
            "description": "Number of unique requested items.",
            "minimum": 1,
            "type": "integer"
          },
          "unchanged_count": {
            "description": "Number of items already matching the requested values.",
            "minimum": 0,
            "type": "integer"
          },
          "updated_count": {
            "description": "Number of items whose stored values changed.",
            "minimum": 0,
            "type": "integer"
          }
        },
        "required": [
          "atomic",
          "requested_count",
          "updated_count",
          "unchanged_count",
          "items"
        ],
        "type": "object"
      },
      "ItemBulkUpdateRequest": {
        "additionalProperties": false,
        "properties": {
          "item_ids": {
            "description": "Items receiving the shared field set.",
            "items": {
              "minimum": 1,
              "type": "integer"
            },
            "maxItems": 500,
            "minItems": 1,
            "type": "array",
            "uniqueItems": true
          },
          "set": {
            "$ref": "#/components/schemas/ItemBulkFields"
          }
        },
        "required": [
          "item_ids",
          "set"
        ],
        "type": "object"
      },
      "ItemChanges": {
        "additionalProperties": false,
        "properties": {
          "changed_item_ids": {
            "description": "Items changed since the supplied watermark.",
            "items": {
              "minimum": 1,
              "type": "integer"
            },
            "type": "array"
          },
          "membership_dirty": {
            "description": "Whether collection membership may have changed independently of item rows.",
            "type": "boolean"
          },
          "removed_item_ids": {
            "description": "Items removed from the selected result set.",
            "items": {
              "minimum": 1,
              "type": "integer"
            },
            "type": "array"
          },
          "requires_full_reload": {
            "description": "Whether the caller must discard its cached list and reload it.",
            "type": "boolean"
          },
          "watermark": {
            "description": "Watermark to send with the next incremental request.",
            "format": "int64",
            "minimum": 0,
            "type": "integer"
          }
        },
        "required": [
          "changed_item_ids",
          "removed_item_ids",
          "watermark",
          "requires_full_reload",
          "membership_dirty"
        ],
        "type": "object"
      },
      "ItemChangesDocument": {
        "additionalProperties": false,
        "properties": {
          "data": {
            "$ref": "#/components/schemas/ItemChanges"
          }
        },
        "required": [
          "data"
        ],
        "type": "object"
      },
      "ItemCreateRequest": {
        "additionalProperties": false,
        "description": "Fields accepted when creating an item.",
        "properties": {
          "assignee_id": {
            "description": "Initial assignee.",
            "minimum": 1,
            "nullable": true,
            "type": "integer"
          },
          "custom_field_values": {
            "additionalProperties": true,
            "description": "Custom-field values keyed by field identifier.",
            "type": "object"
          },
          "description": {
            "description": "Markdown description, limited to 256 KiB when UTF-8 encoded.",
            "type": "string"
          },
          "due_date": {
            "description": "Due timestamp.",
            "format": "date-time",
            "nullable": true,
            "type": "string"
          },
          "end_date": {
            "description": "Planned end timestamp.",
            "format": "date-time",
            "nullable": true,
            "type": "string"
          },
          "estimate_minutes": {
            "description": "Time estimate in minutes.",
            "minimum": 0,
            "nullable": true,
            "type": "integer"
          },
          "inherit_project": {
            "default": false,
            "description": "Inherit time-project membership from the parent.",
            "type": "boolean"
          },
          "is_task": {
            "default": false,
            "description": "Create a personal task. True is valid only when `workspace_id` is the caller's own personal workspace and the resolved status is Open or Done.",
            "type": "boolean"
          },
          "item_type_id": {
            "description": "Item type; omitted or null uses the workspace default.",
            "minimum": 1,
            "nullable": true,
            "type": "integer"
          },
          "iteration_id": {
            "description": "Initial iteration assignment.",
            "minimum": 1,
            "nullable": true,
            "type": "integer"
          },
          "label_ids": {
            "description": "Shared labels to attach.",
            "items": {
              "minimum": 1,
              "type": "integer"
            },
            "type": "array",
            "uniqueItems": true
          },
          "milestone_ids": {
            "description": "Milestones to attach.",
            "items": {
              "minimum": 1,
              "type": "integer"
            },
            "type": "array",
            "uniqueItems": true
          },
          "parent_id": {
            "description": "Parent item.",
            "minimum": 1,
            "nullable": true,
            "type": "integer"
          },
          "priority_id": {
            "description": "Initial priority.",
            "minimum": 1,
            "nullable": true,
            "type": "integer"
          },
          "project_id": {
            "description": "Direct time-project membership.",
            "minimum": 1,
            "nullable": true,
            "type": "integer"
          },
          "related_work_item_id": {
            "description": "Related work item for a personal task.",
            "minimum": 1,
            "nullable": true,
            "type": "integer"
          },
          "start_date": {
            "description": "Planned start timestamp.",
            "format": "date-time",
            "nullable": true,
            "type": "string"
          },
          "status_id": {
            "description": "Initial status; omitted or null uses the workspace default. When `is_task` is true, the resolved status must be Open or Done.",
            "minimum": 1,
            "nullable": true,
            "type": "integer"
          },
          "story_points": {
            "description": "Relative effort estimate.",
            "format": "double",
            "minimum": 0,
            "nullable": true,
            "type": "number"
          },
          "time_project_id": {
            "description": "Per-item project override for time logging.",
            "minimum": 1,
            "nullable": true,
            "type": "integer"
          },
          "title": {
            "description": "Plain-text item title.",
            "maxLength": 255,
            "minLength": 1,
            "type": "string"
          },
          "workspace_id": {
            "description": "Workspace that will own the item.",
            "minimum": 1,
            "type": "integer"
          }
        },
        "required": [
          "workspace_id",
          "title"
        ],
        "type": "object"
      },
      "ItemDeleteInfo": {
        "additionalProperties": false,
        "properties": {
          "descendant_count": {
            "description": "Total number of descendants affected by cascading deletion.",
            "minimum": 0,
            "type": "integer"
          },
          "has_children": {
            "description": "Whether the item has direct children.",
            "type": "boolean"
          },
          "hierarchy_level": {
            "description": "Configured hierarchy level.",
            "minimum": 0,
            "nullable": true,
            "type": "integer"
          },
          "item_type_id": {
            "description": "Current item type.",
            "minimum": 1,
            "nullable": true,
            "type": "integer"
          },
          "parent_id": {
            "description": "Current parent item.",
            "minimum": 1,
            "nullable": true,
            "type": "integer"
          },
          "title": {
            "description": "Item title for confirmation UI.",
            "type": "string"
          },
          "workspace_id": {
            "description": "Owning workspace.",
            "minimum": 1,
            "type": "integer"
          }
        },
        "required": [
          "has_children",
          "descendant_count",
          "parent_id",
          "title",
          "item_type_id",
          "workspace_id",
          "hierarchy_level"
        ],
        "type": "object"
      },
      "ItemDeleteInfoDocument": {
        "additionalProperties": false,
        "properties": {
          "data": {
            "$ref": "#/components/schemas/ItemDeleteInfo"
          }
        },
        "required": [
          "data"
        ],
        "type": "object"
      },
      "ItemDetailSectionError": {
        "additionalProperties": false,
        "properties": {
          "code": {
            "description": "Stable failure category; internal error details are not exposed.",
            "enum": [
              "unavailable"
            ],
            "type": "string"
          },
          "section": {
            "description": "Detail section that could not be loaded.",
            "type": "string"
          }
        },
        "required": [
          "section",
          "code"
        ],
        "type": "object"
      },
      "ItemDetailSummary": {
        "description": "Aggregate bootstrap state for the item detail screen.",
        "properties": {
          "ancestors": {
            "description": "Visible ancestor chain.",
            "items": {
              "$ref": "#/components/schemas/Item"
            },
            "type": "array"
          },
          "available_sub_issue_types": {
            "description": "Item types allowed beneath this item.",
            "items": {
              "additionalProperties": true,
              "type": "object"
            },
            "type": "array"
          },
          "children": {
            "description": "Direct visible children.",
            "items": {
              "$ref": "#/components/schemas/Item"
            },
            "type": "array"
          },
          "current_hierarchy_level": {
            "additionalProperties": true,
            "description": "Current hierarchy-level configuration.",
            "nullable": true,
            "type": "object"
          },
          "current_item_type": {
            "additionalProperties": true,
            "description": "Current item-type configuration.",
            "nullable": true,
            "type": "object"
          },
          "has_agent_runs": {
            "description": "Whether the item has coding-agent runs.",
            "type": "boolean"
          },
          "item": {
            "$ref": "#/components/schemas/Item"
          },
          "link_types": {
            "description": "Link types available for this item.",
            "items": {
              "additionalProperties": true,
              "type": "object"
            },
            "type": "array"
          },
          "links": {
            "additionalProperties": true,
            "description": "Incoming and outgoing entity links visible to the caller.",
            "type": "object"
          },
          "manual_actions": {
            "description": "Manual automations available to the caller.",
            "items": {
              "additionalProperties": true,
              "type": "object"
            },
            "type": "array"
          },
          "personal_task_count": {
            "description": "Number of linked personal tasks.",
            "minimum": 0,
            "type": "integer"
          },
          "priorities": {
            "description": "Priorities available in the workspace.",
            "items": {
              "additionalProperties": true,
              "type": "object"
            },
            "type": "array"
          },
          "request_type_fields": {
            "description": "Portal request fields visible for this item.",
            "items": {
              "additionalProperties": true,
              "type": "object"
            },
            "type": "array"
          },
          "scm_available": {
            "description": "Whether source-control integration is available.",
            "type": "boolean"
          },
          "screen_context": {
            "additionalProperties": true,
            "description": "View and edit screen configuration.",
            "type": "object"
          },
          "section_errors": {
            "description": "Sections that failed to load. An empty section with no matching entry loaded successfully.",
            "items": {
              "$ref": "#/components/schemas/ItemDetailSectionError"
            },
            "type": "array"
          },
          "transitions": {
            "$ref": "#/components/schemas/ItemTransitionSummary"
          },
          "watching": {
            "description": "Whether the authenticated user watches this item.",
            "type": "boolean"
          }
        },
        "required": [
          "item",
          "links",
          "link_types",
          "request_type_fields",
          "transitions",
          "watching",
          "children",
          "ancestors",
          "priorities",
          "screen_context",
          "manual_actions",
          "personal_task_count",
          "scm_available",
          "has_agent_runs",
          "section_errors"
        ],
        "type": "object"
      },
      "ItemDetailSummaryDocument": {
        "additionalProperties": false,
        "properties": {
          "data": {
            "$ref": "#/components/schemas/ItemDetailSummary"
          }
        },
        "required": [
          "data"
        ],
        "type": "object"
      },
      "ItemDocument": {
        "additionalProperties": false,
        "properties": {
          "data": {
            "$ref": "#/components/schemas/Item"
          }
        },
        "required": [
          "data"
        ],
        "type": "object"
      },
      "ItemHistory": {
        "additionalProperties": false,
        "properties": {
          "agent_owner_name": {
            "description": "Permission-filtered owner name for an agent actor.",
            "type": "string"
          },
          "changed_at": {
            "description": "Change timestamp.",
            "format": "date-time",
            "type": "string"
          },
          "field_name": {
            "description": "Changed field key.",
            "type": "string"
          },
          "id": {
            "description": "History entry identifier.",
            "minimum": 1,
            "type": "integer"
          },
          "is_agent": {
            "description": "Whether the actor is an agent.",
            "type": "boolean"
          },
          "item_id": {
            "description": "Changed item.",
            "minimum": 1,
            "type": "integer"
          },
          "new_value": {
            "description": "New stored value.",
            "nullable": true,
            "type": "string"
          },
          "old_value": {
            "description": "Previous stored value.",
            "nullable": true,
            "type": "string"
          },
          "resolved_new_value": {
            "description": "Human-readable new value.",
            "nullable": true,
            "type": "string"
          },
          "resolved_old_value": {
            "description": "Human-readable previous value.",
            "nullable": true,
            "type": "string"
          },
          "user_email": {
            "description": "Permission-filtered actor email.",
            "format": "email",
            "type": "string"
          },
          "user_id": {
            "description": "Actor user.",
            "minimum": 1,
            "type": "integer"
          },
          "user_name": {
            "description": "Permission-filtered actor name.",
            "type": "string"
          }
        },
        "required": [
          "id",
          "item_id",
          "user_id",
          "changed_at",
          "field_name",
          "old_value",
          "new_value",
          "is_agent"
        ],
        "type": "object"
      },
      "ItemHistoryDocument": {
        "additionalProperties": false,
        "properties": {
          "data": {
            "items": {
              "$ref": "#/components/schemas/ItemHistory"
            },
            "type": "array"
          }
        },
        "required": [
          "data"
        ],
        "type": "object"
      },
      "ItemMutationCount": {
        "additionalProperties": false,
        "properties": {
          "count": {
            "description": "Number of items affected by the mutation.",
            "minimum": 0,
            "type": "integer"
          }
        },
        "required": [
          "count"
        ],
        "type": "object"
      },
      "ItemMutationCountDocument": {
        "additionalProperties": false,
        "properties": {
          "data": {
            "$ref": "#/components/schemas/ItemMutationCount"
          }
        },
        "required": [
          "data"
        ],
        "type": "object"
      },
      "ItemPageDocument": {
        "additionalProperties": false,
        "properties": {
          "data": {
            "description": "Items in this page.",
            "items": {
              "$ref": "#/components/schemas/Item"
            },
            "type": "array"
          },
          "meta": {
            "$ref": "#/components/schemas/ItemPageMeta"
          },
          "pagination": {
            "$ref": "#/components/schemas/Pagination"
          }
        },
        "required": [
          "data",
          "pagination",
          "meta"
        ],
        "type": "object"
      },
      "ItemPageMeta": {
        "additionalProperties": false,
        "properties": {
          "next_cursor": {
            "description": "Opaque cursor for the next eligible item page.",
            "type": "string"
          },
          "sortable_fields": {
            "description": "System and custom fields currently available for sorting.",
            "items": {
              "type": "string"
            },
            "type": "array"
          },
          "watermark": {
            "description": "Current item-change watermark when requested.",
            "format": "int64",
            "minimum": 0,
            "type": "integer"
          }
        },
        "required": [
          "sortable_fields"
        ],
        "type": "object"
      },
      "ItemPatchRequest": {
        "additionalProperties": false,
        "description": "Editable item fields. Each property is optional; explicit null clears nullable fields.",
        "minProperties": 1,
        "properties": {
          "assignee_id": {
            "description": "Replacement assignee; null unassigns the item.",
            "minimum": 1,
            "nullable": true,
            "type": "integer"
          },
          "custom_field_values": {
            "additionalProperties": true,
            "description": "Complete custom-field value map; null clears all values.",
            "nullable": true,
            "type": "object"
          },
          "description": {
            "description": "Replacement Markdown description, limited to 256 KiB when UTF-8 encoded; null clears it.",
            "nullable": true,
            "type": "string"
          },
          "due_date": {
            "description": "Replacement due timestamp; null clears it.",
            "format": "date-time",
            "nullable": true,
            "type": "string"
          },
          "end_date": {
            "description": "Replacement end timestamp; null clears it.",
            "format": "date-time",
            "nullable": true,
            "type": "string"
          },
          "is_task": {
            "description": "Replacement personal-task flag. True requires the item to be in the caller's own personal workspace with status Open or Done; null is invalid.",
            "type": "boolean"
          },
          "iteration_id": {
            "description": "Replacement iteration; null removes the assignment.",
            "minimum": 1,
            "nullable": true,
            "type": "integer"
          },
          "milestone_ids": {
            "description": "Complete replacement milestone set; null clears all milestones.",
            "items": {
              "minimum": 1,
              "type": "integer"
            },
            "nullable": true,
            "type": "array",
            "uniqueItems": true
          },
          "parent_id": {
            "description": "Replacement parent; null makes the item top-level.",
            "minimum": 1,
            "nullable": true,
            "type": "integer"
          },
          "priority_id": {
            "description": "Replacement priority; null clears it.",
            "minimum": 1,
            "nullable": true,
            "type": "integer"
          },
          "project_id": {
            "description": "Replacement direct time project; null clears it.",
            "minimum": 1,
            "nullable": true,
            "type": "integer"
          },
          "start_date": {
            "description": "Replacement start timestamp; null clears it.",
            "format": "date-time",
            "nullable": true,
            "type": "string"
          },
          "title": {
            "description": "Replacement plain-text title.",
            "maxLength": 255,
            "minLength": 1,
            "type": "string"
          }
        },
        "type": "object"
      },
      "ItemRankRequest": {
        "additionalProperties": false,
        "description": "Neighbor IDs defining the item's new position.",
        "properties": {
          "next_item_id": {
            "description": "Item immediately after the new position; null means the end.",
            "minimum": 1,
            "nullable": true,
            "type": "integer"
          },
          "previous_item_id": {
            "description": "Item immediately before the new position; null means the start.",
            "minimum": 1,
            "nullable": true,
            "type": "integer"
          }
        },
        "type": "object"
      },
      "ItemReparentChildrenRequest": {
        "additionalProperties": false,
        "properties": {
          "parent_id": {
            "description": "New parent for all direct children; null or omission makes them top-level.",
            "minimum": 1,
            "nullable": true,
            "type": "integer"
          }
        },
        "type": "object"
      },
      "ItemStatusDuration": {
        "additionalProperties": false,
        "properties": {
          "duration_seconds": {
            "description": "Accumulated seconds in this status.",
            "format": "int64",
            "minimum": 0,
            "type": "integer"
          },
          "first_entered_at": {
            "description": "First entry timestamp.",
            "format": "date-time",
            "type": "string"
          },
          "is_current": {
            "description": "Whether this is the item's current status.",
            "type": "boolean"
          },
          "last_entered_at": {
            "description": "Most recent entry timestamp.",
            "format": "date-time",
            "type": "string"
          },
          "status_id": {
            "description": "Status identifier.",
            "minimum": 1,
            "type": "integer"
          },
          "status_name": {
            "description": "Status display name.",
            "type": "string"
          }
        },
        "required": [
          "status_id",
          "status_name",
          "duration_seconds",
          "first_entered_at",
          "last_entered_at",
          "is_current"
        ],
        "type": "object"
      },
      "ItemStatusDurations": {
        "additionalProperties": false,
        "properties": {
          "calculated_at": {
            "description": "Timestamp through which durations were calculated.",
            "format": "date-time",
            "type": "string"
          },
          "statuses": {
            "description": "Per-status accumulated durations.",
            "items": {
              "$ref": "#/components/schemas/ItemStatusDuration"
            },
            "type": "array"
          }
        },
        "required": [
          "statuses",
          "calculated_at"
        ],
        "type": "object"
      },
      "ItemStatusDurationsDocument": {
        "additionalProperties": false,
        "properties": {
          "data": {
            "$ref": "#/components/schemas/ItemStatusDurations"
          }
        },
        "required": [
          "data"
        ],
        "type": "object"
      },
      "ItemTimeRollup": {
        "additionalProperties": false,
        "properties": {
          "item_count": {
            "description": "Root and descendant items included in the totals.",
            "minimum": 1,
            "type": "integer"
          },
          "total_estimate_minutes": {
            "description": "Summed item estimates in minutes.",
            "format": "int64",
            "minimum": 0,
            "type": "integer"
          },
          "total_logged_minutes": {
            "description": "Summed worklog durations in minutes.",
            "format": "int64",
            "minimum": 0,
            "type": "integer"
          },
          "truncated": {
            "description": "Whether the server cap prevented a complete descendant traversal.",
            "type": "boolean"
          }
        },
        "required": [
          "item_count",
          "total_estimate_minutes",
          "total_logged_minutes",
          "truncated"
        ],
        "type": "object"
      },
      "ItemTimeRollupDocument": {
        "additionalProperties": false,
        "properties": {
          "data": {
            "$ref": "#/components/schemas/ItemTimeRollup"
          }
        },
        "required": [
          "data"
        ],
        "type": "object"
      },
      "ItemTransitionDocument": {
        "additionalProperties": false,
        "properties": {
          "data": {
            "$ref": "#/components/schemas/ItemTransitionResult"
          }
        },
        "required": [
          "data"
        ],
        "type": "object"
      },
      "ItemTransitionOption": {
        "additionalProperties": false,
        "properties": {
          "builtin_key": {
            "description": "Stable built-in status key, or an empty string for custom statuses.",
            "type": "string"
          },
          "category_color": {
            "description": "Destination status-category color.",
            "type": "string"
          },
          "id": {
            "description": "Destination status identifier.",
            "minimum": 1,
            "type": "integer"
          },
          "name": {
            "description": "Destination status display name.",
            "type": "string"
          },
          "value": {
            "description": "Destination status value used by clients.",
            "type": "string"
          }
        },
        "required": [
          "id",
          "builtin_key",
          "name",
          "value"
        ],
        "type": "object"
      },
      "ItemTransitionRequest": {
        "additionalProperties": false,
        "properties": {
          "to_status_id": {
            "description": "Destination status from the available transition set. A personal task can use only Open or Done.",
            "minimum": 1,
            "type": "integer"
          }
        },
        "required": [
          "to_status_id"
        ],
        "type": "object"
      },
      "ItemTransitionResult": {
        "additionalProperties": false,
        "properties": {
          "item": {
            "$ref": "#/components/schemas/Item"
          },
          "new_status_id": {
            "description": "Status after the request.",
            "minimum": 1,
            "nullable": true,
            "type": "integer"
          },
          "no_op": {
            "description": "Whether the item was already in the destination status.",
            "type": "boolean"
          },
          "old_status_id": {
            "description": "Status before the request.",
            "minimum": 1,
            "nullable": true,
            "type": "integer"
          }
        },
        "required": [
          "item",
          "old_status_id",
          "new_status_id",
          "no_op"
        ],
        "type": "object"
      },
      "ItemTransitionSummary": {
        "additionalProperties": false,
        "properties": {
          "available_transitions": {
            "description": "Workflow destinations currently available to the caller.",
            "items": {
              "$ref": "#/components/schemas/ItemTransitionOption"
            },
            "type": "array"
          },
          "current_status": {
            "description": "Current status display name.",
            "type": "string"
          },
          "pending_approval": {
            "$ref": "#/components/schemas/PendingApprovalSummary"
          }
        },
        "required": [
          "current_status",
          "available_transitions"
        ],
        "type": "object"
      },
      "ItemTransitionSummaryDocument": {
        "additionalProperties": false,
        "properties": {
          "data": {
            "$ref": "#/components/schemas/ItemTransitionSummary"
          }
        },
        "required": [
          "data"
        ],
        "type": "object"
      },
      "ItemTypeChangeAnalysis": {
        "additionalProperties": false,
        "properties": {
          "available_statuses": {
            "description": "Statuses compatible with the target workflow.",
            "items": {
              "$ref": "#/components/schemas/StatusChangeInfo"
            },
            "type": "array"
          },
          "can_change_without_status": {
            "description": "Whether target_status_id can be omitted when applying the change.",
            "type": "boolean"
          },
          "current_item_type_id": {
            "description": "Current item type.",
            "minimum": 1,
            "nullable": true,
            "type": "integer"
          },
          "current_item_type_name": {
            "description": "Current item-type name.",
            "type": "string"
          },
          "current_status_id": {
            "description": "Current status.",
            "minimum": 1,
            "nullable": true,
            "type": "integer"
          },
          "current_status_name": {
            "description": "Current status name.",
            "type": "string"
          },
          "current_workflow_id": {
            "description": "Workflow currently governing the item.",
            "minimum": 1,
            "nullable": true,
            "type": "integer"
          },
          "item_id": {
            "description": "Item being analyzed.",
            "minimum": 1,
            "type": "integer"
          },
          "requires_migration": {
            "description": "Whether the current status is unavailable in the target workflow.",
            "type": "boolean"
          },
          "suggested_status_id": {
            "description": "Suggested compatible target status.",
            "minimum": 1,
            "nullable": true,
            "type": "integer"
          },
          "suggested_status_name": {
            "description": "Suggested target-status name.",
            "type": "string"
          },
          "target_item_type_id": {
            "description": "Requested target item type.",
            "minimum": 1,
            "type": "integer"
          },
          "target_item_type_name": {
            "description": "Target item-type name.",
            "type": "string"
          },
          "target_workflow_id": {
            "description": "Workflow governing the target type.",
            "minimum": 1,
            "nullable": true,
            "type": "integer"
          }
        },
        "required": [
          "item_id",
          "current_item_type_id",
          "current_item_type_name",
          "target_item_type_id",
          "target_item_type_name",
          "current_workflow_id",
          "target_workflow_id",
          "current_status_id",
          "current_status_name",
          "requires_migration",
          "available_statuses",
          "can_change_without_status"
        ],
        "type": "object"
      },
      "ItemTypeChangeAnalysisDocument": {
        "additionalProperties": false,
        "properties": {
          "data": {
            "$ref": "#/components/schemas/ItemTypeChangeAnalysis"
          }
        },
        "required": [
          "data"
        ],
        "type": "object"
      },
      "ItemTypeChangeRequest": {
        "additionalProperties": false,
        "properties": {
          "target_item_type_id": {
            "description": "New item type.",
            "minimum": 1,
            "type": "integer"
          },
          "target_status_id": {
            "description": "Compatible target status when workflow migration is required. A personal task can use only Open or Done.",
            "minimum": 1,
            "nullable": true,
            "type": "integer"
          }
        },
        "required": [
          "target_item_type_id"
        ],
        "type": "object"
      },
      "ItemWatchDocument": {
        "additionalProperties": false,
        "properties": {
          "data": {
            "$ref": "#/components/schemas/ItemWatchStatus"
          }
        },
        "required": [
          "data"
        ],
        "type": "object"
      },
      "ItemWatchRequest": {
        "additionalProperties": false,
        "properties": {
          "reason": {
            "description": "Optional reason recorded for the watch.",
            "type": "string"
          }
        },
        "type": "object"
      },
      "ItemWatchStatus": {
        "additionalProperties": false,
        "properties": {
          "item_id": {
            "description": "Item identifier.",
            "minimum": 1,
            "type": "integer"
          },
          "watching": {
            "description": "Current watch state for the authenticated user.",
            "type": "boolean"
          }
        },
        "required": [
          "item_id",
          "watching"
        ],
        "type": "object"
      },
      "ItemWorkspaceMoveDocument": {
        "additionalProperties": false,
        "properties": {
          "data": {
            "$ref": "#/components/schemas/ItemWorkspaceMoveResult"
          }
        },
        "required": [
          "data"
        ],
        "type": "object"
      },
      "ItemWorkspaceMoveField": {
        "additionalProperties": false,
        "properties": {
          "action": {
            "description": "Planned mapping action.",
            "type": "string"
          },
          "field": {
            "description": "Affected field key.",
            "type": "string"
          },
          "from": {
            "description": "Current display value.",
            "type": "string"
          },
          "to": {
            "description": "Destination display value.",
            "type": "string"
          }
        },
        "required": [
          "field",
          "action"
        ],
        "type": "object"
      },
      "ItemWorkspaceMoveOption": {
        "additionalProperties": false,
        "properties": {
          "color": {
            "description": "Optional display color.",
            "type": "string"
          },
          "icon": {
            "description": "Optional display icon.",
            "type": "string"
          },
          "id": {
            "description": "Destination configuration identifier.",
            "minimum": 1,
            "type": "integer"
          },
          "is_default": {
            "description": "Whether this is the proposed default mapping.",
            "type": "boolean"
          },
          "name": {
            "description": "Display name.",
            "type": "string"
          }
        },
        "required": [
          "id",
          "name"
        ],
        "type": "object"
      },
      "ItemWorkspaceMovePreview": {
        "additionalProperties": false,
        "properties": {
          "children_detached": {
            "description": "Direct children that will be detached.",
            "minimum": 0,
            "type": "integer"
          },
          "custom_fields_dropped": {
            "description": "Custom-field names unavailable in the destination.",
            "items": {
              "type": "string"
            },
            "type": "array"
          },
          "custom_fields_kept": {
            "description": "Custom-field names retained in the destination.",
            "items": {
              "type": "string"
            },
            "type": "array"
          },
          "destination_workspace_id": {
            "description": "Destination workspace.",
            "minimum": 1,
            "type": "integer"
          },
          "destination_workspace_key": {
            "description": "Destination workspace key.",
            "type": "string"
          },
          "destination_workspace_name": {
            "description": "Destination workspace name.",
            "type": "string"
          },
          "fields": {
            "description": "Fields that will be kept, cleared, or mapped.",
            "items": {
              "$ref": "#/components/schemas/ItemWorkspaceMoveField"
            },
            "type": "array"
          },
          "item_types": {
            "description": "Compatible destination item types.",
            "items": {
              "$ref": "#/components/schemas/ItemWorkspaceMoveOption"
            },
            "type": "array"
          },
          "labels_dropped": {
            "description": "Label names unavailable in the destination.",
            "items": {
              "type": "string"
            },
            "type": "array"
          },
          "labels_kept": {
            "description": "Label names retained in the destination.",
            "items": {
              "type": "string"
            },
            "type": "array"
          },
          "priorities": {
            "description": "Compatible destination priorities.",
            "items": {
              "$ref": "#/components/schemas/ItemWorkspaceMoveOption"
            },
            "type": "array"
          },
          "source_key": {
            "description": "Current display key.",
            "type": "string"
          },
          "source_workspace_id": {
            "description": "Current workspace.",
            "minimum": 1,
            "type": "integer"
          },
          "source_workspace_name": {
            "description": "Current workspace name.",
            "type": "string"
          },
          "statuses": {
            "description": "Compatible destination statuses.",
            "items": {
              "$ref": "#/components/schemas/ItemWorkspaceMoveOption"
            },
            "type": "array"
          },
          "target_item_type_id": {
            "description": "Selected destination item type.",
            "minimum": 1,
            "type": "integer"
          },
          "target_priority_id": {
            "description": "Selected destination priority.",
            "minimum": 1,
            "nullable": true,
            "type": "integer"
          },
          "target_status_id": {
            "description": "Selected destination status.",
            "minimum": 1,
            "type": "integer"
          }
        },
        "required": [
          "source_workspace_id",
          "source_workspace_name",
          "source_key",
          "destination_workspace_id",
          "destination_workspace_name",
          "destination_workspace_key",
          "target_item_type_id",
          "target_status_id",
          "target_priority_id",
          "item_types",
          "statuses",
          "priorities",
          "fields",
          "labels_kept",
          "labels_dropped",
          "custom_fields_kept",
          "custom_fields_dropped",
          "children_detached"
        ],
        "type": "object"
      },
      "ItemWorkspaceMovePreviewDocument": {
        "additionalProperties": false,
        "properties": {
          "data": {
            "$ref": "#/components/schemas/ItemWorkspaceMovePreview"
          }
        },
        "required": [
          "data"
        ],
        "type": "object"
      },
      "ItemWorkspaceMoveRequest": {
        "additionalProperties": false,
        "properties": {
          "destination_workspace_id": {
            "description": "Workspace that will receive the item.",
            "minimum": 1,
            "type": "integer"
          },
          "target_item_type_id": {
            "description": "Compatible destination item type; omission selects the preview default.",
            "minimum": 1,
            "type": "integer"
          },
          "target_priority_id": {
            "description": "Compatible destination priority; null clears priority.",
            "minimum": 1,
            "nullable": true,
            "type": "integer"
          },
          "target_status_id": {
            "description": "Compatible destination status; omission selects the preview default. A personal task can use only Open or Done.",
            "minimum": 1,
            "type": "integer"
          }
        },
        "required": [
          "destination_workspace_id"
        ],
        "type": "object"
      },
      "ItemWorkspaceMoveResult": {
        "additionalProperties": false,
        "properties": {
          "item": {
            "$ref": "#/components/schemas/Item"
          },
          "new_key": {
            "description": "Display key assigned in the destination workspace.",
            "type": "string"
          },
          "old_key": {
            "description": "Display key before the move.",
            "type": "string"
          },
          "preview": {
            "$ref": "#/components/schemas/ItemWorkspaceMovePreview"
          }
        },
        "required": [
          "item",
          "old_key",
          "new_key",
          "preview"
        ],
        "type": "object"
      },
      "Label": {
        "additionalProperties": false,
        "description": "A shared item label.",
        "properties": {
          "color": {
            "description": "Display color.",
            "type": "string"
          },
          "created_at": {
            "description": "Creation timestamp.",
            "format": "date-time",
            "type": "string"
          },
          "id": {
            "description": "Label identifier.",
            "minimum": 1,
            "type": "integer"
          },
          "name": {
            "description": "Label name.",
            "type": "string"
          },
          "updated_at": {
            "description": "Last update timestamp.",
            "format": "date-time",
            "type": "string"
          }
        },
        "required": [
          "id",
          "name",
          "color",
          "created_at",
          "updated_at"
        ],
        "type": "object"
      },
      "MetadataDocument": {
        "properties": {
          "data": {},
          "meta": {
            "type": "object"
          }
        },
        "required": [
          "data",
          "meta"
        ],
        "type": "object"
      },
      "MilestoneSummary": {
        "description": "Milestone fields embedded in an item response.",
        "properties": {
          "category_id": {
            "description": "Optional milestone category.",
            "minimum": 1,
            "nullable": true,
            "type": "integer"
          },
          "created_at": {
            "description": "Creation timestamp.",
            "format": "date-time",
            "type": "string"
          },
          "description": {
            "description": "Milestone description.",
            "type": "string"
          },
          "external_key": {
            "description": "Optional stable automation upsert key.",
            "nullable": true,
            "type": "string"
          },
          "id": {
            "description": "Milestone identifier.",
            "minimum": 1,
            "type": "integer"
          },
          "is_global": {
            "description": "Whether the milestone is shared globally.",
            "type": "boolean"
          },
          "name": {
            "description": "Milestone name.",
            "type": "string"
          },
          "position": {
            "description": "Manual display position.",
            "type": "integer"
          },
          "status": {
            "description": "Lifecycle status.",
            "enum": [
              "planning",
              "in-progress",
              "completed",
              "cancelled"
            ],
            "type": "string"
          },
          "target_date": {
            "description": "Optional target date.",
            "format": "date",
            "nullable": true,
            "type": "string"
          },
          "updated_at": {
            "description": "Last update timestamp.",
            "format": "date-time",
            "type": "string"
          },
          "workspace_id": {
            "description": "Owning workspace for a local milestone.",
            "minimum": 1,
            "nullable": true,
            "type": "integer"
          }
        },
        "required": [
          "id",
          "name",
          "description",
          "status",
          "is_global",
          "position",
          "created_at",
          "updated_at"
        ],
        "type": "object"
      },
      "PageDocument": {
        "properties": {
          "data": {
            "items": {},
            "type": "array"
          },
          "pagination": {
            "properties": {
              "page": {
                "type": "integer"
              },
              "page_size": {
                "type": "integer"
              },
              "total_items": {
                "type": "integer"
              },
              "total_pages": {
                "type": "integer"
              }
            },
            "required": [
              "page",
              "page_size",
              "total_items",
              "total_pages"
            ],
            "type": "object"
          }
        },
        "required": [
          "data",
          "pagination"
        ],
        "type": "object"
      },
      "Pagination": {
        "additionalProperties": false,
        "properties": {
          "page": {
            "description": "Current one-based page number.",
            "minimum": 1,
            "type": "integer"
          },
          "page_size": {
            "description": "Requested maximum rows per page.",
            "minimum": 1,
            "type": "integer"
          },
          "total_items": {
            "description": "Total matching rows.",
            "minimum": 0,
            "type": "integer"
          },
          "total_pages": {
            "description": "Total pages for the requested page size.",
            "minimum": 0,
            "type": "integer"
          }
        },
        "required": [
          "page",
          "page_size",
          "total_items",
          "total_pages"
        ],
        "type": "object"
      },
      "PatchApprovalSetsApprovalSetIdPayload": {
        "additionalProperties": false,
        "properties": {
          "description": {
            "description": "The description value.",
            "nullable": true,
            "type": "string"
          },
          "name": {
            "description": "The name value.",
            "nullable": true,
            "type": "string"
          },
          "set_statuses": {
            "description": "The set statuses value.",
            "items": {
              "additionalProperties": false,
              "properties": {
                "approval_set_id": {
                  "description": "The approval set id value.",
                  "type": "integer"
                },
                "approve_transition_id": {
                  "description": "The approve transition id value.",
                  "type": "integer"
                },
                "created_at": {
                  "description": "The created at value.",
                  "format": "date-time",
                  "type": "string"
                },
                "deny_transition_id": {
                  "description": "The deny transition id value.",
                  "type": "integer"
                },
                "id": {
                  "description": "The id value.",
                  "type": "integer"
                },
                "status_id": {
                  "description": "The status id value.",
                  "type": "integer"
                },
                "status_name": {
                  "description": "The status name value.",
                  "type": "string"
                },
                "step_mode": {
                  "description": "The step mode value.",
                  "type": "string"
                },
                "steps": {
                  "description": "The steps value.",
                  "items": {
                    "additionalProperties": false,
                    "properties": {
                      "allow_self_approval": {
                        "description": "The allow self approval value.",
                        "type": "boolean"
                      },
                      "approval_set_status_id": {
                        "description": "The approval set status id value.",
                        "type": "integer"
                      },
                      "approver_field_id": {
                        "description": "The approver field id value.",
                        "nullable": true,
                        "type": "integer"
                      },
                      "approver_field_identifier": {
                        "description": "The approver field identifier value.",
                        "type": "string"
                      },
                      "approver_group_id": {
                        "description": "The approver group id value.",
                        "nullable": true,
                        "type": "integer"
                      },
                      "approver_role_id": {
                        "description": "The approver role id value.",
                        "nullable": true,
                        "type": "integer"
                      },
                      "approver_source": {
                        "description": "The approver source value.",
                        "type": "string"
                      },
                      "approver_user_id": {
                        "description": "The approver user id value.",
                        "nullable": true,
                        "type": "integer"
                      },
                      "created_at": {
                        "description": "The created at value.",
                        "format": "date-time",
                        "type": "string"
                      },
                      "display_order": {
                        "description": "The display order value.",
                        "type": "integer"
                      },
                      "escalation_action": {
                        "description": "The escalation action value.",
                        "type": "string"
                      },
                      "escalation_after_hours": {
                        "description": "The escalation after hours value.",
                        "nullable": true,
                        "type": "integer"
                      },
                      "escalation_target_field_id": {
                        "description": "The escalation target field id value.",
                        "nullable": true,
                        "type": "integer"
                      },
                      "escalation_target_field_identifier": {
                        "description": "The escalation target field identifier value.",
                        "type": "string"
                      },
                      "escalation_target_group_id": {
                        "description": "The escalation target group id value.",
                        "nullable": true,
                        "type": "integer"
                      },
                      "escalation_target_role_id": {
                        "description": "The escalation target role id value.",
                        "nullable": true,
                        "type": "integer"
                      },
                      "escalation_target_source": {
                        "description": "The escalation target source value.",
                        "type": "string"
                      },
                      "escalation_target_user_id": {
                        "description": "The escalation target user id value.",
                        "nullable": true,
                        "type": "integer"
                      },
                      "id": {
                        "description": "The id value.",
                        "type": "integer"
                      },
                      "max_escalations": {
                        "description": "The max escalations value.",
                        "nullable": true,
                        "type": "integer"
                      },
                      "name": {
                        "description": "The name value.",
                        "type": "string"
                      },
                      "on_leave_strategy": {
                        "description": "The on leave strategy value.",
                        "type": "string"
                      },
                      "quorum_count": {
                        "description": "The quorum count value.",
                        "nullable": true,
                        "type": "integer"
                      },
                      "quorum_mode": {
                        "description": "The quorum mode value.",
                        "type": "string"
                      },
                      "quorum_percent": {
                        "description": "The quorum percent value.",
                        "nullable": true,
                        "type": "integer"
                      },
                      "rejection_policy": {
                        "description": "The rejection policy value.",
                        "type": "string"
                      }
                    },
                    "required": [
                      "allow_self_approval",
                      "approval_set_status_id",
                      "approver_source",
                      "created_at",
                      "display_order",
                      "id",
                      "name",
                      "on_leave_strategy",
                      "quorum_mode",
                      "rejection_policy"
                    ],
                    "type": "object"
                  },
                  "type": "array"
                }
              },
              "required": [
                "approval_set_id",
                "approve_transition_id",
                "created_at",
                "deny_transition_id",
                "id",
                "status_id",
                "step_mode"
              ],
              "type": "object"
            },
            "nullable": true,
            "type": "array"
          },
          "workflow_id": {
            "description": "The workflow id value.",
            "nullable": true,
            "type": "integer"
          }
        },
        "type": "object"
      },
      "PatchApprovalSetsApprovalSetIdResult": {
        "additionalProperties": false,
        "properties": {
          "data": {
            "additionalProperties": false,
            "properties": {
              "created_at": {
                "description": "The created at value.",
                "format": "date-time",
                "type": "string"
              },
              "description": {
                "description": "The description value.",
                "type": "string"
              },
              "gated_statuses": {
                "description": "The gated statuses value.",
                "items": {
                  "additionalProperties": false,
                  "properties": {
                    "category_color": {
                      "description": "The category color value.",
                      "type": "string"
                    },
                    "status_id": {
                      "description": "The status id value.",
                      "type": "integer"
                    },
                    "status_name": {
                      "description": "The status name value.",
                      "type": "string"
                    }
                  },
                  "required": [
                    "status_id",
                    "status_name"
                  ],
                  "type": "object"
                },
                "type": "array"
              },
              "id": {
                "description": "The id value.",
                "type": "integer"
              },
              "name": {
                "description": "The name value.",
                "type": "string"
              },
              "set_statuses": {
                "description": "The set statuses value.",
                "items": {
                  "additionalProperties": false,
                  "properties": {
                    "approval_set_id": {
                      "description": "The approval set id value.",
                      "type": "integer"
                    },
                    "approve_transition_id": {
                      "description": "The approve transition id value.",
                      "type": "integer"
                    },
                    "created_at": {
                      "description": "The created at value.",
                      "format": "date-time",
                      "type": "string"
                    },
                    "deny_transition_id": {
                      "description": "The deny transition id value.",
                      "type": "integer"
                    },
                    "id": {
                      "description": "The id value.",
                      "type": "integer"
                    },
                    "status_id": {
                      "description": "The status id value.",
                      "type": "integer"
                    },
                    "status_name": {
                      "description": "The status name value.",
                      "type": "string"
                    },
                    "step_mode": {
                      "description": "The step mode value.",
                      "type": "string"
                    },
                    "steps": {
                      "description": "The steps value.",
                      "items": {
                        "additionalProperties": false,
                        "properties": {
                          "allow_self_approval": {
                            "description": "The allow self approval value.",
                            "type": "boolean"
                          },
                          "approval_set_status_id": {
                            "description": "The approval set status id value.",
                            "type": "integer"
                          },
                          "approver_field_id": {
                            "description": "The approver field id value.",
                            "nullable": true,
                            "type": "integer"
                          },
                          "approver_field_identifier": {
                            "description": "The approver field identifier value.",
                            "type": "string"
                          },
                          "approver_group_id": {
                            "description": "The approver group id value.",
                            "nullable": true,
                            "type": "integer"
                          },
                          "approver_role_id": {
                            "description": "The approver role id value.",
                            "nullable": true,
                            "type": "integer"
                          },
                          "approver_source": {
                            "description": "The approver source value.",
                            "type": "string"
                          },
                          "approver_user_id": {
                            "description": "The approver user id value.",
                            "nullable": true,
                            "type": "integer"
                          },
                          "created_at": {
                            "description": "The created at value.",
                            "format": "date-time",
                            "type": "string"
                          },
                          "display_order": {
                            "description": "The display order value.",
                            "type": "integer"
                          },
                          "escalation_action": {
                            "description": "The escalation action value.",
                            "type": "string"
                          },
                          "escalation_after_hours": {
                            "description": "The escalation after hours value.",
                            "nullable": true,
                            "type": "integer"
                          },
                          "escalation_target_field_id": {
                            "description": "The escalation target field id value.",
                            "nullable": true,
                            "type": "integer"
                          },
                          "escalation_target_field_identifier": {
                            "description": "The escalation target field identifier value.",
                            "type": "string"
                          },
                          "escalation_target_group_id": {
                            "description": "The escalation target group id value.",
                            "nullable": true,
                            "type": "integer"
                          },
                          "escalation_target_role_id": {
                            "description": "The escalation target role id value.",
                            "nullable": true,
                            "type": "integer"
                          },
                          "escalation_target_source": {
                            "description": "The escalation target source value.",
                            "type": "string"
                          },
                          "escalation_target_user_id": {
                            "description": "The escalation target user id value.",
                            "nullable": true,
                            "type": "integer"
                          },
                          "id": {
                            "description": "The id value.",
                            "type": "integer"
                          },
                          "max_escalations": {
                            "description": "The max escalations value.",
                            "nullable": true,
                            "type": "integer"
                          },
                          "name": {
                            "description": "The name value.",
                            "type": "string"
                          },
                          "on_leave_strategy": {
                            "description": "The on leave strategy value.",
                            "type": "string"
                          },
                          "quorum_count": {
                            "description": "The quorum count value.",
                            "nullable": true,
                            "type": "integer"
                          },
                          "quorum_mode": {
                            "description": "The quorum mode value.",
                            "type": "string"
                          },
                          "quorum_percent": {
                            "description": "The quorum percent value.",
                            "nullable": true,
                            "type": "integer"
                          },
                          "rejection_policy": {
                            "description": "The rejection policy value.",
                            "type": "string"
                          }
                        },
                        "required": [
                          "allow_self_approval",
                          "approval_set_status_id",
                          "approver_source",
                          "created_at",
                          "display_order",
                          "id",
                          "name",
                          "on_leave_strategy",
                          "quorum_mode",
                          "rejection_policy"
                        ],
                        "type": "object"
                      },
                      "type": "array"
                    }
                  },
                  "required": [
                    "approval_set_id",
                    "approve_transition_id",
                    "created_at",
                    "deny_transition_id",
                    "id",
                    "status_id",
                    "step_mode"
                  ],
                  "type": "object"
                },
                "type": "array"
              },
              "updated_at": {
                "description": "The updated at value.",
                "format": "date-time",
                "type": "string"
              },
              "workflow_id": {
                "description": "The workflow id value.",
                "type": "integer"
              },
              "workflow_name": {
                "description": "The workflow name value.",
                "type": "string"
              }
            },
            "required": [
              "created_at",
              "description",
              "id",
              "name",
              "updated_at",
              "workflow_id"
            ],
            "type": "object"
          }
        },
        "required": [
          "data"
        ],
        "type": "object"
      },
      "PatchAssetsAssetIdPayload": {
        "additionalProperties": false,
        "properties": {
          "asset_tag": {
            "description": "The asset tag value.",
            "nullable": true,
            "type": "string"
          },
          "asset_type_id": {
            "description": "The asset type id value.",
            "nullable": true,
            "type": "integer"
          },
          "category_id": {
            "description": "The category id value.",
            "nullable": true,
            "type": "integer"
          },
          "custom_field_values": {
            "additionalProperties": {
              "description": "Arbitrary JSON extension value."
            },
            "description": "The custom field values value.",
            "nullable": true,
            "type": "object"
          },
          "description": {
            "description": "The description value.",
            "nullable": true,
            "type": "string"
          },
          "status_id": {
            "description": "The status id value.",
            "nullable": true,
            "type": "integer"
          },
          "title": {
            "description": "The title value.",
            "nullable": true,
            "type": "string"
          }
        },
        "type": "object"
      },
      "PatchAssetsAssetIdResult": {
        "additionalProperties": false,
        "properties": {
          "data": {
            "additionalProperties": false,
            "nullable": true,
            "properties": {
              "asset_tag": {
                "description": "The asset tag value.",
                "type": "string"
              },
              "asset_type_color": {
                "description": "The asset type color value.",
                "type": "string"
              },
              "asset_type_icon": {
                "description": "The asset type icon value.",
                "type": "string"
              },
              "asset_type_id": {
                "description": "The asset type id value.",
                "type": "integer"
              },
              "asset_type_name": {
                "description": "The asset type name value.",
                "type": "string"
              },
              "category_id": {
                "description": "The category id value.",
                "nullable": true,
                "type": "integer"
              },
              "category_name": {
                "description": "The category name value.",
                "type": "string"
              },
              "category_path": {
                "description": "The category path value.",
                "type": "string"
              },
              "created_at": {
                "description": "The created at value.",
                "format": "date-time",
                "type": "string"
              },
              "created_by": {
                "description": "The created by value.",
                "nullable": true,
                "type": "integer"
              },
              "creator_email": {
                "description": "The creator email value.",
                "type": "string"
              },
              "creator_name": {
                "description": "The creator name value.",
                "type": "string"
              },
              "custom_field_values": {
                "additionalProperties": {
                  "description": "Arbitrary JSON extension value."
                },
                "description": "The custom field values value.",
                "type": "object"
              },
              "description": {
                "description": "The description value.",
                "type": "string"
              },
              "frac_index": {
                "description": "The frac index value.",
                "nullable": true,
                "type": "string"
              },
              "id": {
                "description": "The id value.",
                "type": "integer"
              },
              "linked_item_count": {
                "description": "The linked item count value.",
                "type": "integer"
              },
              "set_id": {
                "description": "The set id value.",
                "type": "integer"
              },
              "set_name": {
                "description": "The set name value.",
                "type": "string"
              },
              "status_color": {
                "description": "The status color value.",
                "type": "string"
              },
              "status_id": {
                "description": "The status id value.",
                "nullable": true,
                "type": "integer"
              },
              "status_name": {
                "description": "The status name value.",
                "type": "string"
              },
              "title": {
                "description": "The title value.",
                "type": "string"
              },
              "updated_at": {
                "description": "The updated at value.",
                "format": "date-time",
                "type": "string"
              },
              "warnings": {
                "description": "The warnings value.",
                "items": {
                  "type": "string"
                },
                "type": "array"
              }
            },
            "required": [
              "asset_type_id",
              "created_at",
              "description",
              "id",
              "set_id",
              "title",
              "updated_at"
            ],
            "type": "object"
          }
        },
        "required": [
          "data"
        ],
        "type": "object"
      },
      "PatchCollectionCategoriesCategoryIdPayload": {
        "additionalProperties": false,
        "properties": {
          "color": {
            "description": "The color value.",
            "nullable": true,
            "type": "string"
          },
          "description": {
            "description": "The description value.",
            "nullable": true,
            "type": "string"
          },
          "name": {
            "description": "The name value.",
            "nullable": true,
            "type": "string"
          }
        },
        "type": "object"
      },
      "PatchCollectionCategoriesCategoryIdResult": {
        "additionalProperties": false,
        "properties": {
          "data": {
            "additionalProperties": false,
            "properties": {
              "color": {
                "description": "The color value.",
                "type": "string"
              },
              "created_at": {
                "description": "The created at value.",
                "format": "date-time",
                "type": "string"
              },
              "description": {
                "description": "The description value.",
                "type": "string"
              },
              "id": {
                "description": "The id value.",
                "type": "integer"
              },
              "name": {
                "description": "The name value.",
                "type": "string"
              },
              "updated_at": {
                "description": "The updated at value.",
                "format": "date-time",
                "type": "string"
              }
            },
            "required": [
              "color",
              "created_at",
              "description",
              "id",
              "name",
              "updated_at"
            ],
            "type": "object"
          }
        },
        "required": [
          "data"
        ],
        "type": "object"
      },
      "PatchCollectionsCollectionIdPayload": {
        "additionalProperties": false,
        "properties": {
          "category_id": {
            "description": "The category id value.",
            "nullable": true,
            "type": "integer"
          },
          "description": {
            "description": "The description value.",
            "nullable": true,
            "type": "string"
          },
          "filter_state": {
            "description": "The filter state value.",
            "nullable": true,
            "type": "string"
          },
          "is_public": {
            "description": "The is public value.",
            "nullable": true,
            "type": "boolean"
          },
          "name": {
            "description": "The name value.",
            "nullable": true,
            "type": "string"
          },
          "public_slug": {
            "description": "The public slug value.",
            "nullable": true,
            "type": "string"
          },
          "ql_query": {
            "description": "The ql query value.",
            "nullable": true,
            "type": "string"
          },
          "workspace_id": {
            "description": "The workspace id value.",
            "nullable": true,
            "type": "integer"
          }
        },
        "type": "object"
      },
      "PatchCollectionsCollectionIdResult": {
        "additionalProperties": false,
        "properties": {
          "data": {
            "additionalProperties": false,
            "properties": {
              "category_color": {
                "description": "The category color value.",
                "type": "string"
              },
              "category_id": {
                "description": "The category id value.",
                "nullable": true,
                "type": "integer"
              },
              "category_name": {
                "description": "The category name value.",
                "type": "string"
              },
              "created_at": {
                "description": "The created at value.",
                "type": "string"
              },
              "created_by": {
                "description": "The created by value.",
                "nullable": true,
                "type": "integer"
              },
              "creator_email": {
                "description": "The creator email value.",
                "type": "string"
              },
              "creator_name": {
                "description": "The creator name value.",
                "type": "string"
              },
              "description": {
                "description": "The description value.",
                "type": "string"
              },
              "filter_state": {
                "description": "The filter state value.",
                "nullable": true,
                "type": "string"
              },
              "id": {
                "description": "The id value.",
                "type": "integer"
              },
              "is_public": {
                "description": "The is public value.",
                "type": "boolean"
              },
              "name": {
                "description": "The name value.",
                "type": "string"
              },
              "public_slug": {
                "description": "The public slug value.",
                "nullable": true,
                "type": "string"
              },
              "ql_query": {
                "description": "The ql query value.",
                "type": "string"
              },
              "updated_at": {
                "description": "The updated at value.",
                "type": "string"
              },
              "workspace_id": {
                "description": "The workspace id value.",
                "nullable": true,
                "type": "integer"
              }
            },
            "required": [
              "created_at",
              "description",
              "id",
              "is_public",
              "name",
              "ql_query",
              "updated_at"
            ],
            "type": "object"
          }
        },
        "required": [
          "data"
        ],
        "type": "object"
      },
      "PatchCollectionsCollectionIdSharingPayload": {
        "additionalProperties": false,
        "properties": {
          "is_public": {
            "description": "The is public value.",
            "nullable": true,
            "type": "boolean"
          },
          "public_slug": {
            "description": "The public slug value.",
            "nullable": true,
            "type": "string"
          }
        },
        "type": "object"
      },
      "PatchCollectionsCollectionIdSharingResult": {
        "additionalProperties": false,
        "properties": {
          "data": {
            "additionalProperties": false,
            "properties": {
              "category_color": {
                "description": "The category color value.",
                "type": "string"
              },
              "category_id": {
                "description": "The category id value.",
                "nullable": true,
                "type": "integer"
              },
              "category_name": {
                "description": "The category name value.",
                "type": "string"
              },
              "created_at": {
                "description": "The created at value.",
                "type": "string"
              },
              "created_by": {
                "description": "The created by value.",
                "nullable": true,
                "type": "integer"
              },
              "creator_email": {
                "description": "The creator email value.",
                "type": "string"
              },
              "creator_name": {
                "description": "The creator name value.",
                "type": "string"
              },
              "description": {
                "description": "The description value.",
                "type": "string"
              },
              "filter_state": {
                "description": "The filter state value.",
                "nullable": true,
                "type": "string"
              },
              "id": {
                "description": "The id value.",
                "type": "integer"
              },
              "is_public": {
                "description": "The is public value.",
                "type": "boolean"
              },
              "name": {
                "description": "The name value.",
                "type": "string"
              },
              "public_slug": {
                "description": "The public slug value.",
                "nullable": true,
                "type": "string"
              },
              "ql_query": {
                "description": "The ql query value.",
                "type": "string"
              },
              "updated_at": {
                "description": "The updated at value.",
                "type": "string"
              },
              "workspace_id": {
                "description": "The workspace id value.",
                "nullable": true,
                "type": "integer"
              }
            },
            "required": [
              "created_at",
              "description",
              "id",
              "is_public",
              "name",
              "ql_query",
              "updated_at"
            ],
            "type": "object"
          }
        },
        "required": [
          "data"
        ],
        "type": "object"
      },
      "PatchCollectionsCollectionIdTestCoverageConfigConfigIdPayload": {
        "additionalProperties": false,
        "properties": {
          "requirement_item_type_ids": {
            "description": "The requirement item type ids value.",
            "items": {
              "type": "integer"
            },
            "type": "array"
          }
        },
        "required": [
          "requirement_item_type_ids"
        ],
        "type": "object"
      },
      "PatchCollectionsCollectionIdTestCoverageConfigConfigIdResult": {
        "additionalProperties": false,
        "properties": {
          "data": {
            "additionalProperties": false,
            "nullable": true,
            "properties": {
              "collection_id": {
                "description": "The collection id value.",
                "nullable": true,
                "type": "integer"
              },
              "created_at": {
                "description": "The created at value.",
                "format": "date-time",
                "type": "string"
              },
              "id": {
                "description": "The id value.",
                "type": "integer"
              },
              "requirement_item_type_ids": {
                "description": "The requirement item type ids value.",
                "items": {
                  "type": "integer"
                },
                "type": "array"
              },
              "updated_at": {
                "description": "The updated at value.",
                "format": "date-time",
                "type": "string"
              },
              "workspace_id": {
                "description": "The workspace id value.",
                "nullable": true,
                "type": "integer"
              }
            },
            "required": [
              "created_at",
              "id",
              "requirement_item_type_ids",
              "updated_at"
            ],
            "type": "object"
          }
        },
        "required": [
          "data"
        ],
        "type": "object"
      },
      "PatchCommentsCommentIdPayload": {
        "additionalProperties": false,
        "properties": {
          "content": {
            "description": "The content value.",
            "nullable": true,
            "type": "string"
          }
        },
        "type": "object"
      },
      "PatchCommentsCommentIdResult": {
        "additionalProperties": false,
        "properties": {
          "data": {
            "additionalProperties": false,
            "properties": {
              "agent_owner_name": {
                "description": "The agent owner name value.",
                "type": "string"
              },
              "author_avatar": {
                "description": "The author avatar value.",
                "type": "string"
              },
              "author_email": {
                "description": "The author email value.",
                "type": "string"
              },
              "author_id": {
                "description": "The author id value.",
                "nullable": true,
                "type": "integer"
              },
              "author_name": {
                "description": "The author name value.",
                "type": "string"
              },
              "content": {
                "description": "The content value.",
                "type": "string"
              },
              "content_html": {
                "description": "The content html value.",
                "type": "string"
              },
              "created_at": {
                "description": "The created at value.",
                "format": "date-time",
                "type": "string"
              },
              "id": {
                "description": "The id value.",
                "type": "integer"
              },
              "is_agent": {
                "description": "The is agent value.",
                "type": "boolean"
              },
              "is_private": {
                "description": "The is private value.",
                "type": "boolean"
              },
              "item_id": {
                "description": "The item id value.",
                "type": "integer"
              },
              "portal_customer_id": {
                "description": "The portal customer id value.",
                "nullable": true,
                "type": "integer"
              },
              "source": {
                "description": "The source value.",
                "type": "string"
              },
              "updated_at": {
                "description": "The updated at value.",
                "format": "date-time",
                "type": "string"
              }
            },
            "required": [
              "content",
              "created_at",
              "id",
              "is_private",
              "item_id",
              "source",
              "updated_at"
            ],
            "type": "object"
          }
        },
        "required": [
          "data"
        ],
        "type": "object"
      },
      "PatchConditionSetsConditionSetIdPayload": {
        "additionalProperties": false,
        "properties": {
          "description": {
            "description": "The description value.",
            "nullable": true,
            "type": "string"
          },
          "name": {
            "description": "The name value.",
            "nullable": true,
            "type": "string"
          },
          "transition_conditions": {
            "description": "The transition conditions value.",
            "items": {
              "additionalProperties": false,
              "properties": {
                "condition_set_id": {
                  "description": "The condition set id value.",
                  "type": "integer"
                },
                "conditions": {
                  "description": "The conditions value.",
                  "items": {
                    "additionalProperties": false,
                    "properties": {
                      "condition_set_transition_id": {
                        "description": "The condition set transition id value.",
                        "type": "integer"
                      },
                      "condition_type": {
                        "description": "The condition type value.",
                        "type": "string"
                      },
                      "config": {
                        "description": "The config value.",
                        "format": "byte",
                        "type": "string"
                      },
                      "display_order": {
                        "description": "The display order value.",
                        "type": "integer"
                      },
                      "error_message": {
                        "description": "The error message value.",
                        "type": "string"
                      },
                      "id": {
                        "description": "The id value.",
                        "type": "integer"
                      },
                      "mode": {
                        "description": "The mode value.",
                        "type": "string"
                      }
                    },
                    "required": [
                      "condition_set_transition_id",
                      "condition_type",
                      "config",
                      "display_order",
                      "id",
                      "mode"
                    ],
                    "type": "object"
                  },
                  "type": "array"
                },
                "from_status_name": {
                  "description": "The from status name value.",
                  "type": "string"
                },
                "id": {
                  "description": "The id value.",
                  "type": "integer"
                },
                "logic_mode": {
                  "description": "The logic mode value.",
                  "type": "string"
                },
                "to_status_name": {
                  "description": "The to status name value.",
                  "type": "string"
                },
                "transition_id": {
                  "description": "The transition id value.",
                  "type": "integer"
                }
              },
              "required": [
                "condition_set_id",
                "id",
                "logic_mode",
                "transition_id"
              ],
              "type": "object"
            },
            "nullable": true,
            "type": "array"
          },
          "workflow_id": {
            "description": "The workflow id value.",
            "nullable": true,
            "type": "integer"
          }
        },
        "type": "object"
      },
      "PatchConditionSetsConditionSetIdResult": {
        "additionalProperties": false,
        "properties": {
          "data": {
            "additionalProperties": false,
            "properties": {
              "created_at": {
                "description": "The created at value.",
                "format": "date-time",
                "type": "string"
              },
              "description": {
                "description": "The description value.",
                "type": "string"
              },
              "gated_transitions": {
                "description": "The gated transitions value.",
                "items": {
                  "additionalProperties": false,
                  "properties": {
                    "from_status_name": {
                      "description": "The from status name value.",
                      "type": "string"
                    },
                    "to_status_name": {
                      "description": "The to status name value.",
                      "type": "string"
                    },
                    "transition_id": {
                      "description": "The transition id value.",
                      "type": "integer"
                    }
                  },
                  "required": [
                    "to_status_name",
                    "transition_id"
                  ],
                  "type": "object"
                },
                "type": "array"
              },
              "id": {
                "description": "The id value.",
                "type": "integer"
              },
              "name": {
                "description": "The name value.",
                "type": "string"
              },
              "transition_conditions": {
                "description": "The transition conditions value.",
                "items": {
                  "additionalProperties": false,
                  "properties": {
                    "condition_set_id": {
                      "description": "The condition set id value.",
                      "type": "integer"
                    },
                    "conditions": {
                      "description": "The conditions value.",
                      "items": {
                        "additionalProperties": false,
                        "properties": {
                          "condition_set_transition_id": {
                            "description": "The condition set transition id value.",
                            "type": "integer"
                          },
                          "condition_type": {
                            "description": "The condition type value.",
                            "type": "string"
                          },
                          "config": {
                            "description": "The config value.",
                            "format": "byte",
                            "type": "string"
                          },
                          "display_order": {
                            "description": "The display order value.",
                            "type": "integer"
                          },
                          "error_message": {
                            "description": "The error message value.",
                            "type": "string"
                          },
                          "id": {
                            "description": "The id value.",
                            "type": "integer"
                          },
                          "mode": {
                            "description": "The mode value.",
                            "type": "string"
                          }
                        },
                        "required": [
                          "condition_set_transition_id",
                          "condition_type",
                          "config",
                          "display_order",
                          "id",
                          "mode"
                        ],
                        "type": "object"
                      },
                      "type": "array"
                    },
                    "from_status_name": {
                      "description": "The from status name value.",
                      "type": "string"
                    },
                    "id": {
                      "description": "The id value.",
                      "type": "integer"
                    },
                    "logic_mode": {
                      "description": "The logic mode value.",
                      "type": "string"
                    },
                    "to_status_name": {
                      "description": "The to status name value.",
                      "type": "string"
                    },
                    "transition_id": {
                      "description": "The transition id value.",
                      "type": "integer"
                    }
                  },
                  "required": [
                    "condition_set_id",
                    "id",
                    "logic_mode",
                    "transition_id"
                  ],
                  "type": "object"
                },
                "type": "array"
              },
              "updated_at": {
                "description": "The updated at value.",
                "format": "date-time",
                "type": "string"
              },
              "workflow_id": {
                "description": "The workflow id value.",
                "type": "integer"
              },
              "workflow_name": {
                "description": "The workflow name value.",
                "type": "string"
              }
            },
            "required": [
              "created_at",
              "description",
              "id",
              "name",
              "updated_at",
              "workflow_id"
            ],
            "type": "object"
          }
        },
        "required": [
          "data"
        ],
        "type": "object"
      },
      "PatchItemDiagramsDiagramIdPayload": {
        "additionalProperties": false,
        "properties": {
          "diagram_data": {
            "description": "The diagram data value.",
            "nullable": true,
            "type": "string"
          },
          "name": {
            "description": "The name value.",
            "nullable": true,
            "type": "string"
          }
        },
        "type": "object"
      },
      "PatchItemDiagramsDiagramIdResult": {
        "additionalProperties": false,
        "properties": {
          "data": {
            "additionalProperties": false,
            "properties": {
              "created_at": {
                "description": "The created at value.",
                "format": "date-time",
                "type": "string"
              },
              "created_by": {
                "description": "The created by value.",
                "nullable": true,
                "type": "integer"
              },
              "creator_email": {
                "description": "The creator email value.",
                "type": "string"
              },
              "creator_name": {
                "description": "The creator name value.",
                "type": "string"
              },
              "diagram_data": {
                "description": "The diagram data value.",
                "type": "string"
              },
              "id": {
                "description": "The id value.",
                "type": "integer"
              },
              "item_id": {
                "description": "The item id value.",
                "type": "integer"
              },
              "name": {
                "description": "The name value.",
                "type": "string"
              },
              "updated_at": {
                "description": "The updated at value.",
                "format": "date-time",
                "type": "string"
              },
              "updated_by": {
                "description": "The updated by value.",
                "nullable": true,
                "type": "integer"
              },
              "updated_by_email": {
                "description": "The updated by email value.",
                "type": "string"
              },
              "updated_by_name": {
                "description": "The updated by name value.",
                "type": "string"
              }
            },
            "required": [
              "created_at",
              "creator_email",
              "creator_name",
              "diagram_data",
              "id",
              "item_id",
              "name",
              "updated_at",
              "updated_by_email",
              "updated_by_name"
            ],
            "type": "object"
          }
        },
        "required": [
          "data"
        ],
        "type": "object"
      },
      "PatchItemTypesItemTypeIdPayload": {
        "additionalProperties": false,
        "properties": {
          "color": {
            "description": "The color value.",
            "nullable": true,
            "type": "string"
          },
          "configuration_set_ids": {
            "description": "The configuration set ids value.",
            "items": {
              "type": "integer"
            },
            "nullable": true,
            "type": "array"
          },
          "description": {
            "description": "The description value.",
            "nullable": true,
            "type": "string"
          },
          "hierarchy_level": {
            "description": "The hierarchy level value.",
            "nullable": true,
            "type": "integer"
          },
          "icon": {
            "description": "The icon value.",
            "nullable": true,
            "type": "string"
          },
          "is_default": {
            "description": "The is default value.",
            "nullable": true,
            "type": "boolean"
          },
          "name": {
            "description": "The name value.",
            "nullable": true,
            "type": "string"
          },
          "sort_order": {
            "description": "The sort order value.",
            "nullable": true,
            "type": "integer"
          }
        },
        "type": "object"
      },
      "PatchItemTypesItemTypeIdResult": {
        "additionalProperties": false,
        "properties": {
          "data": {
            "additionalProperties": false,
            "properties": {
              "builtin_key": {
                "description": "The builtin key value.",
                "nullable": true,
                "type": "string"
              },
              "color": {
                "description": "The color value.",
                "type": "string"
              },
              "description": {
                "description": "The description value.",
                "type": "string"
              },
              "display_description": {
                "description": "The display description value.",
                "type": "string"
              },
              "display_name": {
                "description": "The display name value.",
                "type": "string"
              },
              "hierarchy_level": {
                "description": "The hierarchy level value.",
                "type": "integer"
              },
              "icon": {
                "description": "The icon value.",
                "type": "string"
              },
              "id": {
                "description": "The id value.",
                "type": "integer"
              },
              "is_default": {
                "description": "The is default value.",
                "type": "boolean"
              },
              "name": {
                "description": "The name value.",
                "type": "string"
              },
              "sort_order": {
                "description": "The sort order value.",
                "type": "integer"
              }
            },
            "required": [
              "color",
              "description",
              "display_description",
              "display_name",
              "hierarchy_level",
              "icon",
              "id",
              "is_default",
              "name",
              "sort_order"
            ],
            "type": "object"
          }
        },
        "required": [
          "data"
        ],
        "type": "object"
      },
      "PatchItemsItemIdPayload": {
        "additionalProperties": false,
        "properties": {
          "assignee_id": {
            "description": "The assignee id value.",
            "nullable": true,
            "type": "integer"
          },
          "custom_field_values": {
            "additionalProperties": {
              "description": "Arbitrary JSON extension value."
            },
            "description": "The custom field values value.",
            "nullable": true,
            "type": "object"
          },
          "description": {
            "description": "The description value.",
            "nullable": true,
            "type": "string"
          },
          "due_date": {
            "description": "The due date value.",
            "format": "date-time",
            "nullable": true,
            "type": "string"
          },
          "end_date": {
            "description": "The end date value.",
            "format": "date-time",
            "nullable": true,
            "type": "string"
          },
          "is_task": {
            "description": "Whether the item is a personal task. True is valid only in the authenticated caller's personal workspace and only with the Open or Done system status.",
            "nullable": true,
            "type": "boolean"
          },
          "iteration_id": {
            "description": "The iteration id value.",
            "nullable": true,
            "type": "integer"
          },
          "milestone_ids": {
            "description": "The milestone ids value.",
            "items": {
              "type": "integer"
            },
            "nullable": true,
            "type": "array"
          },
          "parent_id": {
            "description": "The parent id value.",
            "nullable": true,
            "type": "integer"
          },
          "priority_id": {
            "description": "The priority id value.",
            "nullable": true,
            "type": "integer"
          },
          "project_id": {
            "description": "The project id value.",
            "nullable": true,
            "type": "integer"
          },
          "start_date": {
            "description": "The start date value.",
            "format": "date-time",
            "nullable": true,
            "type": "string"
          },
          "title": {
            "description": "The title value.",
            "nullable": true,
            "type": "string"
          }
        },
        "type": "object"
      },
      "PatchItemsItemIdRankPayload": {
        "additionalProperties": false,
        "properties": {
          "next_item_id": {
            "description": "The next item id value.",
            "nullable": true,
            "type": "integer"
          },
          "previous_item_id": {
            "description": "The previous item id value.",
            "nullable": true,
            "type": "integer"
          }
        },
        "type": "object"
      },
      "PatchItemsItemIdRankResult": {
        "additionalProperties": false,
        "properties": {
          "data": {
            "additionalProperties": false,
            "nullable": true,
            "properties": {
              "assignee_avatar": {
                "description": "The assignee avatar value.",
                "type": "string"
              },
              "assignee_email": {
                "description": "The assignee email value.",
                "type": "string"
              },
              "assignee_id": {
                "description": "The assignee id value.",
                "nullable": true,
                "type": "integer"
              },
              "assignee_name": {
                "description": "The assignee name value.",
                "type": "string"
              },
              "calendar_data": {
                "description": "The calendar data value.",
                "items": {
                  "additionalProperties": false,
                  "properties": {
                    "created_at": {
                      "description": "The created at value.",
                      "type": "string"
                    },
                    "duration_minutes": {
                      "description": "The duration minutes value.",
                      "type": "integer"
                    },
                    "notes": {
                      "description": "The notes value.",
                      "type": "string"
                    },
                    "scheduled_date": {
                      "description": "The scheduled date value.",
                      "type": "string"
                    },
                    "scheduled_time": {
                      "description": "The scheduled time value.",
                      "type": "string"
                    },
                    "user_id": {
                      "description": "The user id value.",
                      "type": "integer"
                    },
                    "workspace_id": {
                      "description": "The workspace id value.",
                      "type": "integer"
                    }
                  },
                  "required": [
                    "created_at",
                    "scheduled_date",
                    "user_id",
                    "workspace_id"
                  ],
                  "type": "object"
                },
                "type": "array"
              },
              "channel_id": {
                "description": "The channel id value.",
                "nullable": true,
                "type": "integer"
              },
              "channel_name": {
                "description": "The channel name value.",
                "type": "string"
              },
              "children": {
                "description": "The children value.",
                "items": {
                  "description": "Nested resource reference.",
                  "type": "object"
                },
                "type": "array"
              },
              "completed_at": {
                "description": "The completed at value.",
                "format": "date-time",
                "nullable": true,
                "type": "string"
              },
              "created_at": {
                "description": "The created at value.",
                "format": "date-time",
                "type": "string"
              },
              "creator_email": {
                "description": "The creator email value.",
                "type": "string"
              },
              "creator_id": {
                "description": "The creator id value.",
                "nullable": true,
                "type": "integer"
              },
              "creator_name": {
                "description": "The creator name value.",
                "type": "string"
              },
              "creator_portal_customer_email": {
                "description": "The creator portal customer email value.",
                "type": "string"
              },
              "creator_portal_customer_id": {
                "description": "The creator portal customer id value.",
                "nullable": true,
                "type": "integer"
              },
              "creator_portal_customer_name": {
                "description": "The creator portal customer name value.",
                "type": "string"
              },
              "custom_field_values": {
                "additionalProperties": {
                  "description": "Arbitrary JSON extension value."
                },
                "description": "The custom field values value.",
                "type": "object"
              },
              "description": {
                "description": "The description value.",
                "type": "string"
              },
              "description_html": {
                "description": "The description html value.",
                "type": "string"
              },
              "due_date": {
                "description": "The due date value.",
                "format": "date-time",
                "nullable": true,
                "type": "string"
              },
              "effective_project_id": {
                "description": "The effective project id value.",
                "nullable": true,
                "type": "integer"
              },
              "effective_project_name": {
                "description": "The effective project name value.",
                "type": "string"
              },
              "end_date": {
                "description": "The end date value.",
                "format": "date-time",
                "nullable": true,
                "type": "string"
              },
              "estimate_minutes": {
                "description": "The estimate minutes value.",
                "nullable": true,
                "type": "integer"
              },
              "frac_index": {
                "description": "The frac index value.",
                "nullable": true,
                "type": "string"
              },
              "id": {
                "description": "The id value.",
                "type": "integer"
              },
              "inherit_project": {
                "description": "The inherit project value.",
                "type": "boolean"
              },
              "is_task": {
                "description": "Whether the item is a personal task. True is valid only in the authenticated caller's personal workspace and only with the Open or Done system status.",
                "type": "boolean"
              },
              "item_type_builtin_key": {
                "description": "The item type builtin key value.",
                "type": "string"
              },
              "item_type_id": {
                "description": "The item type id value.",
                "nullable": true,
                "type": "integer"
              },
              "item_type_name": {
                "description": "The item type name value.",
                "type": "string"
              },
              "iteration_end_date": {
                "description": "The iteration end date value.",
                "type": "string"
              },
              "iteration_id": {
                "description": "The iteration id value.",
                "nullable": true,
                "type": "integer"
              },
              "iteration_name": {
                "description": "The iteration name value.",
                "type": "string"
              },
              "key": {
                "description": "The key value.",
                "type": "string"
              },
              "labels": {
                "description": "The labels value.",
                "items": {
                  "additionalProperties": false,
                  "properties": {
                    "color": {
                      "description": "The color value.",
                      "type": "string"
                    },
                    "created_at": {
                      "description": "The created at value.",
                      "format": "date-time",
                      "type": "string"
                    },
                    "id": {
                      "description": "The id value.",
                      "type": "integer"
                    },
                    "name": {
                      "description": "The name value.",
                      "type": "string"
                    },
                    "updated_at": {
                      "description": "The updated at value.",
                      "format": "date-time",
                      "type": "string"
                    }
                  },
                  "required": [
                    "color",
                    "created_at",
                    "id",
                    "name",
                    "updated_at"
                  ],
                  "type": "object"
                },
                "type": "array"
              },
              "last_active_at": {
                "description": "The last active at value.",
                "format": "date-time",
                "type": "string"
              },
              "milestones": {
                "description": "The milestones value.",
                "items": {
                  "additionalProperties": false,
                  "properties": {
                    "category_color": {
                      "description": "The category color value.",
                      "type": "string"
                    },
                    "category_id": {
                      "description": "The category id value.",
                      "nullable": true,
                      "type": "integer"
                    },
                    "category_name": {
                      "description": "The category name value.",
                      "type": "string"
                    },
                    "created_at": {
                      "description": "The created at value.",
                      "format": "date-time",
                      "type": "string"
                    },
                    "description": {
                      "description": "The description value.",
                      "type": "string"
                    },
                    "external_key": {
                      "description": "The external key value.",
                      "nullable": true,
                      "type": "string"
                    },
                    "id": {
                      "description": "The id value.",
                      "type": "integer"
                    },
                    "is_global": {
                      "description": "The is global value.",
                      "type": "boolean"
                    },
                    "latest_release": {
                      "additionalProperties": false,
                      "description": "The latest release value.",
                      "nullable": true,
                      "properties": {
                        "body": {
                          "description": "The body value.",
                          "type": "string"
                        },
                        "created_at": {
                          "description": "The created at value.",
                          "type": "string"
                        },
                        "created_by": {
                          "description": "The created by value.",
                          "nullable": true,
                          "type": "integer"
                        },
                        "id": {
                          "description": "The id value.",
                          "type": "integer"
                        },
                        "is_draft": {
                          "description": "The is draft value.",
                          "type": "boolean"
                        },
                        "is_prerelease": {
                          "description": "The is prerelease value.",
                          "type": "boolean"
                        },
                        "milestone_id": {
                          "description": "The milestone id value.",
                          "type": "integer"
                        },
                        "name": {
                          "description": "The name value.",
                          "type": "string"
                        },
                        "scm_connection_id": {
                          "description": "The scm connection id value.",
                          "nullable": true,
                          "type": "integer"
                        },
                        "scm_release_id": {
                          "description": "The scm release id value.",
                          "nullable": true,
                          "type": "string"
                        },
                        "scm_release_url": {
                          "description": "The scm release url value.",
                          "nullable": true,
                          "type": "string"
                        },
                        "scm_repository": {
                          "description": "The scm repository value.",
                          "nullable": true,
                          "type": "string"
                        },
                        "tag_name": {
                          "description": "The tag name value.",
                          "type": "string"
                        },
                        "target_commitish": {
                          "description": "The target commitish value.",
                          "type": "string"
                        }
                      },
                      "required": [
                        "created_at",
                        "id",
                        "is_draft",
                        "is_prerelease",
                        "milestone_id",
                        "tag_name"
                      ],
                      "type": "object"
                    },
                    "name": {
                      "description": "The name value.",
                      "type": "string"
                    },
                    "position": {
                      "description": "The position value.",
                      "type": "integer"
                    },
                    "releases": {
                      "description": "The releases value.",
                      "items": {
                        "additionalProperties": false,
                        "properties": {
                          "body": {
                            "description": "The body value.",
                            "type": "string"
                          },
                          "created_at": {
                            "description": "The created at value.",
                            "type": "string"
                          },
                          "created_by": {
                            "description": "The created by value.",
                            "nullable": true,
                            "type": "integer"
                          },
                          "id": {
                            "description": "The id value.",
                            "type": "integer"
                          },
                          "is_draft": {
                            "description": "The is draft value.",
                            "type": "boolean"
                          },
                          "is_prerelease": {
                            "description": "The is prerelease value.",
                            "type": "boolean"
                          },
                          "milestone_id": {
                            "description": "The milestone id value.",
                            "type": "integer"
                          },
                          "name": {
                            "description": "The name value.",
                            "type": "string"
                          },
                          "scm_connection_id": {
                            "description": "The scm connection id value.",
                            "nullable": true,
                            "type": "integer"
                          },
                          "scm_release_id": {
                            "description": "The scm release id value.",
                            "nullable": true,
                            "type": "string"
                          },
                          "scm_release_url": {
                            "description": "The scm release url value.",
                            "nullable": true,
                            "type": "string"
                          },
                          "scm_repository": {
                            "description": "The scm repository value.",
                            "nullable": true,
                            "type": "string"
                          },
                          "tag_name": {
                            "description": "The tag name value.",
                            "type": "string"
                          },
                          "target_commitish": {
                            "description": "The target commitish value.",
                            "type": "string"
                          }
                        },
                        "required": [
                          "created_at",
                          "id",
                          "is_draft",
                          "is_prerelease",
                          "milestone_id",
                          "tag_name"
                        ],
                        "type": "object"
                      },
                      "type": "array"
                    },
                    "status": {
                      "description": "The status value.",
                      "type": "string"
                    },
                    "target_date": {
                      "description": "The target date value.",
                      "nullable": true,
                      "type": "string"
                    },
                    "updated_at": {
                      "description": "The updated at value.",
                      "format": "date-time",
                      "type": "string"
                    },
                    "workspace_id": {
                      "description": "The workspace id value.",
                      "nullable": true,
                      "type": "integer"
                    },
                    "workspace_name": {
                      "description": "The workspace name value.",
                      "type": "string"
                    }
                  },
                  "required": [
                    "created_at",
                    "description",
                    "id",
                    "is_global",
                    "name",
                    "position",
                    "status",
                    "updated_at"
                  ],
                  "type": "object"
                },
                "type": "array"
              },
              "parent_id": {
                "description": "The parent id value.",
                "nullable": true,
                "type": "integer"
              },
              "parent_key": {
                "description": "The parent key value.",
                "type": "string"
              },
              "parent_title": {
                "description": "The parent title value.",
                "type": "string"
              },
              "parent_workspace_item_number": {
                "description": "The parent workspace item number value.",
                "nullable": true,
                "type": "integer"
              },
              "personal_labels": {
                "description": "The personal labels value.",
                "items": {
                  "additionalProperties": false,
                  "properties": {
                    "color": {
                      "description": "The color value.",
                      "type": "string"
                    },
                    "created_at": {
                      "description": "The created at value.",
                      "format": "date-time",
                      "type": "string"
                    },
                    "id": {
                      "description": "The id value.",
                      "type": "integer"
                    },
                    "name": {
                      "description": "The name value.",
                      "type": "string"
                    },
                    "updated_at": {
                      "description": "The updated at value.",
                      "format": "date-time",
                      "type": "string"
                    },
                    "user_id": {
                      "description": "The user id value.",
                      "nullable": true,
                      "type": "integer"
                    }
                  },
                  "required": [
                    "color",
                    "created_at",
                    "id",
                    "name",
                    "updated_at"
                  ],
                  "type": "object"
                },
                "type": "array"
              },
              "priority_builtin_key": {
                "description": "The priority builtin key value.",
                "type": "string"
              },
              "priority_color": {
                "description": "The priority color value.",
                "type": "string"
              },
              "priority_icon": {
                "description": "The priority icon value.",
                "type": "string"
              },
              "priority_id": {
                "description": "The priority id value.",
                "nullable": true,
                "type": "integer"
              },
              "priority_name": {
                "description": "The priority name value.",
                "type": "string"
              },
              "project_id": {
                "description": "The project id value.",
                "nullable": true,
                "type": "integer"
              },
              "project_inheritance_mode": {
                "description": "The project inheritance mode value.",
                "type": "string"
              },
              "project_name": {
                "description": "The project name value.",
                "type": "string"
              },
              "related_work_item_id": {
                "description": "The related work item id value.",
                "nullable": true,
                "type": "integer"
              },
              "related_work_item_number": {
                "description": "The related work item number value.",
                "type": "integer"
              },
              "related_work_item_title": {
                "description": "The related work item title value.",
                "type": "string"
              },
              "related_work_item_workspace_id": {
                "description": "The related work item workspace id value.",
                "type": "integer"
              },
              "related_work_item_workspace_key": {
                "description": "The related work item workspace key value.",
                "type": "string"
              },
              "reporter_avatar": {
                "description": "The reporter avatar value.",
                "type": "string"
              },
              "reporter_email": {
                "description": "The reporter email value.",
                "type": "string"
              },
              "reporter_id": {
                "description": "The reporter id value.",
                "nullable": true,
                "type": "integer"
              },
              "reporter_name": {
                "description": "The reporter name value.",
                "type": "string"
              },
              "request_type_id": {
                "description": "The request type id value.",
                "nullable": true,
                "type": "integer"
              },
              "request_type_name": {
                "description": "The request type name value.",
                "type": "string"
              },
              "start_date": {
                "description": "The start date value.",
                "format": "date-time",
                "nullable": true,
                "type": "string"
              },
              "status_builtin_key": {
                "description": "The status builtin key value.",
                "type": "string"
              },
              "status_color": {
                "description": "The status color value.",
                "type": "string"
              },
              "status_id": {
                "description": "The status id value.",
                "nullable": true,
                "type": "integer"
              },
              "status_name": {
                "description": "The status name value.",
                "type": "string"
              },
              "status_since": {
                "description": "The status since value.",
                "format": "date-time",
                "nullable": true,
                "type": "string"
              },
              "story_points": {
                "description": "The story points value.",
                "nullable": true,
                "type": "number"
              },
              "time_project_id": {
                "description": "The time project id value.",
                "nullable": true,
                "type": "integer"
              },
              "time_project_name": {
                "description": "The time project name value.",
                "type": "string"
              },
              "title": {
                "description": "The title value.",
                "type": "string"
              },
              "updated_at": {
                "description": "The updated at value.",
                "format": "date-time",
                "type": "string"
              },
              "virtual_field_data": {
                "additionalProperties": {
                  "description": "Arbitrary JSON extension value."
                },
                "description": "The virtual field data value.",
                "type": "object"
              },
              "workspace_id": {
                "description": "The workspace id value.",
                "type": "integer"
              },
              "workspace_item_number": {
                "description": "The workspace item number value.",
                "type": "integer"
              },
              "workspace_key": {
                "description": "The workspace key value.",
                "type": "string"
              },
              "workspace_name": {
                "description": "The workspace name value.",
                "type": "string"
              }
            },
            "required": [
              "created_at",
              "description",
              "id",
              "inherit_project",
              "is_task",
              "last_active_at",
              "title",
              "updated_at",
              "workspace_id",
              "workspace_item_number"
            ],
            "type": "object"
          }
        },
        "required": [
          "data"
        ],
        "type": "object"
      },
      "PatchItemsItemIdRecurrencePayload": {
        "additionalProperties": false,
        "properties": {
          "copy_assignee": {
            "description": "The copy assignee value.",
            "nullable": true,
            "type": "boolean"
          },
          "copy_custom_fields": {
            "description": "The copy custom fields value.",
            "nullable": true,
            "type": "boolean"
          },
          "copy_description": {
            "description": "The copy description value.",
            "nullable": true,
            "type": "boolean"
          },
          "copy_priority": {
            "description": "The copy priority value.",
            "nullable": true,
            "type": "boolean"
          },
          "dtend": {
            "description": "The dtend value.",
            "nullable": true,
            "type": "string"
          },
          "dtstart": {
            "description": "The dtstart value.",
            "nullable": true,
            "type": "string"
          },
          "is_active": {
            "description": "The is active value.",
            "nullable": true,
            "type": "boolean"
          },
          "lead_time_days": {
            "description": "The lead time days value.",
            "nullable": true,
            "type": "integer"
          },
          "rrule": {
            "description": "The rrule value.",
            "nullable": true,
            "type": "string"
          },
          "status_on_create": {
            "description": "The status on create value.",
            "nullable": true,
            "type": "integer"
          },
          "timezone": {
            "description": "The timezone value.",
            "nullable": true,
            "type": "string"
          }
        },
        "type": "object"
      },
      "PatchItemsItemIdRecurrenceResult": {
        "additionalProperties": false,
        "properties": {
          "data": {
            "additionalProperties": false,
            "properties": {
              "copy_assignee": {
                "description": "The copy assignee value.",
                "type": "boolean"
              },
              "copy_custom_fields": {
                "description": "The copy custom fields value.",
                "type": "boolean"
              },
              "copy_description": {
                "description": "The copy description value.",
                "type": "boolean"
              },
              "copy_priority": {
                "description": "The copy priority value.",
                "type": "boolean"
              },
              "created_at": {
                "description": "The created at value.",
                "format": "date-time",
                "type": "string"
              },
              "created_by": {
                "description": "The created by value.",
                "nullable": true,
                "type": "integer"
              },
              "creator_name": {
                "description": "The creator name value.",
                "type": "string"
              },
              "dtend": {
                "description": "The dtend value.",
                "format": "date-time",
                "nullable": true,
                "type": "string"
              },
              "dtstart": {
                "description": "The dtstart value.",
                "format": "date-time",
                "type": "string"
              },
              "id": {
                "description": "The id value.",
                "type": "integer"
              },
              "instance_count": {
                "description": "The instance count value.",
                "type": "integer"
              },
              "is_active": {
                "description": "The is active value.",
                "type": "boolean"
              },
              "last_generated_until": {
                "description": "The last generated until value.",
                "format": "date-time",
                "nullable": true,
                "type": "string"
              },
              "lead_time_days": {
                "description": "The lead time days value.",
                "type": "integer"
              },
              "next_generation_check": {
                "description": "The next generation check value.",
                "format": "date-time",
                "nullable": true,
                "type": "string"
              },
              "next_occurrence": {
                "description": "The next occurrence value.",
                "format": "date-time",
                "nullable": true,
                "type": "string"
              },
              "rrule": {
                "description": "The rrule value.",
                "type": "string"
              },
              "status_on_create": {
                "description": "The status on create value.",
                "nullable": true,
                "type": "integer"
              },
              "template_item_id": {
                "description": "The template item id value.",
                "type": "integer"
              },
              "template_title": {
                "description": "The template title value.",
                "type": "string"
              },
              "timezone": {
                "description": "The timezone value.",
                "type": "string"
              },
              "updated_at": {
                "description": "The updated at value.",
                "format": "date-time",
                "type": "string"
              },
              "workspace_id": {
                "description": "The workspace id value.",
                "type": "integer"
              },
              "workspace_key": {
                "description": "The workspace key value.",
                "type": "string"
              },
              "workspace_name": {
                "description": "The workspace name value.",
                "type": "string"
              }
            },
            "required": [
              "copy_assignee",
              "copy_custom_fields",
              "copy_description",
              "copy_priority",
              "created_at",
              "creator_name",
              "dtstart",
              "id",
              "instance_count",
              "is_active",
              "lead_time_days",
              "rrule",
              "template_item_id",
              "template_title",
              "timezone",
              "updated_at",
              "workspace_id",
              "workspace_key",
              "workspace_name"
            ],
            "type": "object"
          }
        },
        "required": [
          "data"
        ],
        "type": "object"
      },
      "PatchItemsItemIdResult": {
        "additionalProperties": false,
        "properties": {
          "data": {
            "additionalProperties": false,
            "nullable": true,
            "properties": {
              "assignee_avatar": {
                "description": "The assignee avatar value.",
                "type": "string"
              },
              "assignee_email": {
                "description": "The assignee email value.",
                "type": "string"
              },
              "assignee_id": {
                "description": "The assignee id value.",
                "nullable": true,
                "type": "integer"
              },
              "assignee_name": {
                "description": "The assignee name value.",
                "type": "string"
              },
              "calendar_data": {
                "description": "The calendar data value.",
                "items": {
                  "additionalProperties": false,
                  "properties": {
                    "created_at": {
                      "description": "The created at value.",
                      "type": "string"
                    },
                    "duration_minutes": {
                      "description": "The duration minutes value.",
                      "type": "integer"
                    },
                    "notes": {
                      "description": "The notes value.",
                      "type": "string"
                    },
                    "scheduled_date": {
                      "description": "The scheduled date value.",
                      "type": "string"
                    },
                    "scheduled_time": {
                      "description": "The scheduled time value.",
                      "type": "string"
                    },
                    "user_id": {
                      "description": "The user id value.",
                      "type": "integer"
                    },
                    "workspace_id": {
                      "description": "The workspace id value.",
                      "type": "integer"
                    }
                  },
                  "required": [
                    "created_at",
                    "scheduled_date",
                    "user_id",
                    "workspace_id"
                  ],
                  "type": "object"
                },
                "type": "array"
              },
              "channel_id": {
                "description": "The channel id value.",
                "nullable": true,
                "type": "integer"
              },
              "channel_name": {
                "description": "The channel name value.",
                "type": "string"
              },
              "children": {
                "description": "The children value.",
                "items": {
                  "description": "Nested resource reference.",
                  "type": "object"
                },
                "type": "array"
              },
              "completed_at": {
                "description": "The completed at value.",
                "format": "date-time",
                "nullable": true,
                "type": "string"
              },
              "created_at": {
                "description": "The created at value.",
                "format": "date-time",
                "type": "string"
              },
              "creator_email": {
                "description": "The creator email value.",
                "type": "string"
              },
              "creator_id": {
                "description": "The creator id value.",
                "nullable": true,
                "type": "integer"
              },
              "creator_name": {
                "description": "The creator name value.",
                "type": "string"
              },
              "creator_portal_customer_email": {
                "description": "The creator portal customer email value.",
                "type": "string"
              },
              "creator_portal_customer_id": {
                "description": "The creator portal customer id value.",
                "nullable": true,
                "type": "integer"
              },
              "creator_portal_customer_name": {
                "description": "The creator portal customer name value.",
                "type": "string"
              },
              "custom_field_values": {
                "additionalProperties": {
                  "description": "Arbitrary JSON extension value."
                },
                "description": "The custom field values value.",
                "type": "object"
              },
              "description": {
                "description": "The description value.",
                "type": "string"
              },
              "description_html": {
                "description": "The description html value.",
                "type": "string"
              },
              "due_date": {
                "description": "The due date value.",
                "format": "date-time",
                "nullable": true,
                "type": "string"
              },
              "effective_project_id": {
                "description": "The effective project id value.",
                "nullable": true,
                "type": "integer"
              },
              "effective_project_name": {
                "description": "The effective project name value.",
                "type": "string"
              },
              "end_date": {
                "description": "The end date value.",
                "format": "date-time",
                "nullable": true,
                "type": "string"
              },
              "estimate_minutes": {
                "description": "The estimate minutes value.",
                "nullable": true,
                "type": "integer"
              },
              "frac_index": {
                "description": "The frac index value.",
                "nullable": true,
                "type": "string"
              },
              "id": {
                "description": "The id value.",
                "type": "integer"
              },
              "inherit_project": {
                "description": "The inherit project value.",
                "type": "boolean"
              },
              "is_task": {
                "description": "Whether the item is a personal task. True is valid only in the authenticated caller's personal workspace and only with the Open or Done system status.",
                "type": "boolean"
              },
              "item_type_builtin_key": {
                "description": "The item type builtin key value.",
                "type": "string"
              },
              "item_type_id": {
                "description": "The item type id value.",
                "nullable": true,
                "type": "integer"
              },
              "item_type_name": {
                "description": "The item type name value.",
                "type": "string"
              },
              "iteration_end_date": {
                "description": "The iteration end date value.",
                "type": "string"
              },
              "iteration_id": {
                "description": "The iteration id value.",
                "nullable": true,
                "type": "integer"
              },
              "iteration_name": {
                "description": "The iteration name value.",
                "type": "string"
              },
              "key": {
                "description": "The key value.",
                "type": "string"
              },
              "labels": {
                "description": "The labels value.",
                "items": {
                  "additionalProperties": false,
                  "properties": {
                    "color": {
                      "description": "The color value.",
                      "type": "string"
                    },
                    "created_at": {
                      "description": "The created at value.",
                      "format": "date-time",
                      "type": "string"
                    },
                    "id": {
                      "description": "The id value.",
                      "type": "integer"
                    },
                    "name": {
                      "description": "The name value.",
                      "type": "string"
                    },
                    "updated_at": {
                      "description": "The updated at value.",
                      "format": "date-time",
                      "type": "string"
                    }
                  },
                  "required": [
                    "color",
                    "created_at",
                    "id",
                    "name",
                    "updated_at"
                  ],
                  "type": "object"
                },
                "type": "array"
              },
              "last_active_at": {
                "description": "The last active at value.",
                "format": "date-time",
                "type": "string"
              },
              "milestones": {
                "description": "The milestones value.",
                "items": {
                  "additionalProperties": false,
                  "properties": {
                    "category_color": {
                      "description": "The category color value.",
                      "type": "string"
                    },
                    "category_id": {
                      "description": "The category id value.",
                      "nullable": true,
                      "type": "integer"
                    },
                    "category_name": {
                      "description": "The category name value.",
                      "type": "string"
                    },
                    "created_at": {
                      "description": "The created at value.",
                      "format": "date-time",
                      "type": "string"
                    },
                    "description": {
                      "description": "The description value.",
                      "type": "string"
                    },
                    "external_key": {
                      "description": "The external key value.",
                      "nullable": true,
                      "type": "string"
                    },
                    "id": {
                      "description": "The id value.",
                      "type": "integer"
                    },
                    "is_global": {
                      "description": "The is global value.",
                      "type": "boolean"
                    },
                    "latest_release": {
                      "additionalProperties": false,
                      "description": "The latest release value.",
                      "nullable": true,
                      "properties": {
                        "body": {
                          "description": "The body value.",
                          "type": "string"
                        },
                        "created_at": {
                          "description": "The created at value.",
                          "type": "string"
                        },
                        "created_by": {
                          "description": "The created by value.",
                          "nullable": true,
                          "type": "integer"
                        },
                        "id": {
                          "description": "The id value.",
                          "type": "integer"
                        },
                        "is_draft": {
                          "description": "The is draft value.",
                          "type": "boolean"
                        },
                        "is_prerelease": {
                          "description": "The is prerelease value.",
                          "type": "boolean"
                        },
                        "milestone_id": {
                          "description": "The milestone id value.",
                          "type": "integer"
                        },
                        "name": {
                          "description": "The name value.",
                          "type": "string"
                        },
                        "scm_connection_id": {
                          "description": "The scm connection id value.",
                          "nullable": true,
                          "type": "integer"
                        },
                        "scm_release_id": {
                          "description": "The scm release id value.",
                          "nullable": true,
                          "type": "string"
                        },
                        "scm_release_url": {
                          "description": "The scm release url value.",
                          "nullable": true,
                          "type": "string"
                        },
                        "scm_repository": {
                          "description": "The scm repository value.",
                          "nullable": true,
                          "type": "string"
                        },
                        "tag_name": {
                          "description": "The tag name value.",
                          "type": "string"
                        },
                        "target_commitish": {
                          "description": "The target commitish value.",
                          "type": "string"
                        }
                      },
                      "required": [
                        "created_at",
                        "id",
                        "is_draft",
                        "is_prerelease",
                        "milestone_id",
                        "tag_name"
                      ],
                      "type": "object"
                    },
                    "name": {
                      "description": "The name value.",
                      "type": "string"
                    },
                    "position": {
                      "description": "The position value.",
                      "type": "integer"
                    },
                    "releases": {
                      "description": "The releases value.",
                      "items": {
                        "additionalProperties": false,
                        "properties": {
                          "body": {
                            "description": "The body value.",
                            "type": "string"
                          },
                          "created_at": {
                            "description": "The created at value.",
                            "type": "string"
                          },
                          "created_by": {
                            "description": "The created by value.",
                            "nullable": true,
                            "type": "integer"
                          },
                          "id": {
                            "description": "The id value.",
                            "type": "integer"
                          },
                          "is_draft": {
                            "description": "The is draft value.",
                            "type": "boolean"
                          },
                          "is_prerelease": {
                            "description": "The is prerelease value.",
                            "type": "boolean"
                          },
                          "milestone_id": {
                            "description": "The milestone id value.",
                            "type": "integer"
                          },
                          "name": {
                            "description": "The name value.",
                            "type": "string"
                          },
                          "scm_connection_id": {
                            "description": "The scm connection id value.",
                            "nullable": true,
                            "type": "integer"
                          },
                          "scm_release_id": {
                            "description": "The scm release id value.",
                            "nullable": true,
                            "type": "string"
                          },
                          "scm_release_url": {
                            "description": "The scm release url value.",
                            "nullable": true,
                            "type": "string"
                          },
                          "scm_repository": {
                            "description": "The scm repository value.",
                            "nullable": true,
                            "type": "string"
                          },
                          "tag_name": {
                            "description": "The tag name value.",
                            "type": "string"
                          },
                          "target_commitish": {
                            "description": "The target commitish value.",
                            "type": "string"
                          }
                        },
                        "required": [
                          "created_at",
                          "id",
                          "is_draft",
                          "is_prerelease",
                          "milestone_id",
                          "tag_name"
                        ],
                        "type": "object"
                      },
                      "type": "array"
                    },
                    "status": {
                      "description": "The status value.",
                      "type": "string"
                    },
                    "target_date": {
                      "description": "The target date value.",
                      "nullable": true,
                      "type": "string"
                    },
                    "updated_at": {
                      "description": "The updated at value.",
                      "format": "date-time",
                      "type": "string"
                    },
                    "workspace_id": {
                      "description": "The workspace id value.",
                      "nullable": true,
                      "type": "integer"
                    },
                    "workspace_name": {
                      "description": "The workspace name value.",
                      "type": "string"
                    }
                  },
                  "required": [
                    "created_at",
                    "description",
                    "id",
                    "is_global",
                    "name",
                    "position",
                    "status",
                    "updated_at"
                  ],
                  "type": "object"
                },
                "type": "array"
              },
              "parent_id": {
                "description": "The parent id value.",
                "nullable": true,
                "type": "integer"
              },
              "parent_key": {
                "description": "The parent key value.",
                "type": "string"
              },
              "parent_title": {
                "description": "The parent title value.",
                "type": "string"
              },
              "parent_workspace_item_number": {
                "description": "The parent workspace item number value.",
                "nullable": true,
                "type": "integer"
              },
              "personal_labels": {
                "description": "The personal labels value.",
                "items": {
                  "additionalProperties": false,
                  "properties": {
                    "color": {
                      "description": "The color value.",
                      "type": "string"
                    },
                    "created_at": {
                      "description": "The created at value.",
                      "format": "date-time",
                      "type": "string"
                    },
                    "id": {
                      "description": "The id value.",
                      "type": "integer"
                    },
                    "name": {
                      "description": "The name value.",
                      "type": "string"
                    },
                    "updated_at": {
                      "description": "The updated at value.",
                      "format": "date-time",
                      "type": "string"
                    },
                    "user_id": {
                      "description": "The user id value.",
                      "nullable": true,
                      "type": "integer"
                    }
                  },
                  "required": [
                    "color",
                    "created_at",
                    "id",
                    "name",
                    "updated_at"
                  ],
                  "type": "object"
                },
                "type": "array"
              },
              "priority_builtin_key": {
                "description": "The priority builtin key value.",
                "type": "string"
              },
              "priority_color": {
                "description": "The priority color value.",
                "type": "string"
              },
              "priority_icon": {
                "description": "The priority icon value.",
                "type": "string"
              },
              "priority_id": {
                "description": "The priority id value.",
                "nullable": true,
                "type": "integer"
              },
              "priority_name": {
                "description": "The priority name value.",
                "type": "string"
              },
              "project_id": {
                "description": "The project id value.",
                "nullable": true,
                "type": "integer"
              },
              "project_inheritance_mode": {
                "description": "The project inheritance mode value.",
                "type": "string"
              },
              "project_name": {
                "description": "The project name value.",
                "type": "string"
              },
              "related_work_item_id": {
                "description": "The related work item id value.",
                "nullable": true,
                "type": "integer"
              },
              "related_work_item_number": {
                "description": "The related work item number value.",
                "type": "integer"
              },
              "related_work_item_title": {
                "description": "The related work item title value.",
                "type": "string"
              },
              "related_work_item_workspace_id": {
                "description": "The related work item workspace id value.",
                "type": "integer"
              },
              "related_work_item_workspace_key": {
                "description": "The related work item workspace key value.",
                "type": "string"
              },
              "reporter_avatar": {
                "description": "The reporter avatar value.",
                "type": "string"
              },
              "reporter_email": {
                "description": "The reporter email value.",
                "type": "string"
              },
              "reporter_id": {
                "description": "The reporter id value.",
                "nullable": true,
                "type": "integer"
              },
              "reporter_name": {
                "description": "The reporter name value.",
                "type": "string"
              },
              "request_type_id": {
                "description": "The request type id value.",
                "nullable": true,
                "type": "integer"
              },
              "request_type_name": {
                "description": "The request type name value.",
                "type": "string"
              },
              "start_date": {
                "description": "The start date value.",
                "format": "date-time",
                "nullable": true,
                "type": "string"
              },
              "status_builtin_key": {
                "description": "The status builtin key value.",
                "type": "string"
              },
              "status_color": {
                "description": "The status color value.",
                "type": "string"
              },
              "status_id": {
                "description": "The status id value.",
                "nullable": true,
                "type": "integer"
              },
              "status_name": {
                "description": "The status name value.",
                "type": "string"
              },
              "status_since": {
                "description": "The status since value.",
                "format": "date-time",
                "nullable": true,
                "type": "string"
              },
              "story_points": {
                "description": "The story points value.",
                "nullable": true,
                "type": "number"
              },
              "time_project_id": {
                "description": "The time project id value.",
                "nullable": true,
                "type": "integer"
              },
              "time_project_name": {
                "description": "The time project name value.",
                "type": "string"
              },
              "title": {
                "description": "The title value.",
                "type": "string"
              },
              "updated_at": {
                "description": "The updated at value.",
                "format": "date-time",
                "type": "string"
              },
              "virtual_field_data": {
                "additionalProperties": {
                  "description": "Arbitrary JSON extension value."
                },
                "description": "The virtual field data value.",
                "type": "object"
              },
              "workspace_id": {
                "description": "The workspace id value.",
                "type": "integer"
              },
              "workspace_item_number": {
                "description": "The workspace item number value.",
                "type": "integer"
              },
              "workspace_key": {
                "description": "The workspace key value.",
                "type": "string"
              },
              "workspace_name": {
                "description": "The workspace name value.",
                "type": "string"
              }
            },
            "required": [
              "created_at",
              "description",
              "id",
              "inherit_project",
              "is_task",
              "last_active_at",
              "title",
              "updated_at",
              "workspace_id",
              "workspace_item_number"
            ],
            "type": "object"
          }
        },
        "required": [
          "data"
        ],
        "type": "object"
      },
      "PatchIterationsIterationIdPayload": {
        "additionalProperties": false,
        "properties": {
          "description": {
            "description": "The description value.",
            "nullable": true,
            "type": "string"
          },
          "end_date": {
            "description": "The end date value.",
            "nullable": true,
            "type": "string"
          },
          "name": {
            "description": "The name value.",
            "nullable": true,
            "type": "string"
          },
          "start_date": {
            "description": "The start date value.",
            "nullable": true,
            "type": "string"
          },
          "status": {
            "description": "The status value.",
            "nullable": true,
            "type": "string"
          },
          "type_id": {
            "additionalProperties": false,
            "description": "The type id value.",
            "properties": {
              "Present": {
                "description": "The Present value.",
                "type": "boolean"
              },
              "Value": {
                "description": "The Value value.",
                "nullable": true,
                "type": "integer"
              }
            },
            "required": [
              "Present"
            ],
            "type": "object"
          }
        },
        "type": "object"
      },
      "PatchIterationsIterationIdResult": {
        "additionalProperties": false,
        "properties": {
          "data": {
            "additionalProperties": false,
            "properties": {
              "created_at": {
                "description": "The created at value.",
                "format": "date-time",
                "type": "string"
              },
              "description": {
                "description": "The description value.",
                "type": "string"
              },
              "end_date": {
                "description": "The end date value.",
                "type": "string"
              },
              "id": {
                "description": "The id value.",
                "type": "integer"
              },
              "is_global": {
                "description": "The is global value.",
                "type": "boolean"
              },
              "name": {
                "description": "The name value.",
                "type": "string"
              },
              "start_date": {
                "description": "The start date value.",
                "type": "string"
              },
              "status": {
                "description": "The status value.",
                "type": "string"
              },
              "type_color": {
                "description": "The type color value.",
                "type": "string"
              },
              "type_id": {
                "description": "The type id value.",
                "nullable": true,
                "type": "integer"
              },
              "type_name": {
                "description": "The type name value.",
                "type": "string"
              },
              "updated_at": {
                "description": "The updated at value.",
                "format": "date-time",
                "type": "string"
              },
              "workspace_id": {
                "description": "The workspace id value.",
                "nullable": true,
                "type": "integer"
              },
              "workspace_name": {
                "description": "The workspace name value.",
                "type": "string"
              }
            },
            "required": [
              "created_at",
              "description",
              "end_date",
              "id",
              "is_global",
              "name",
              "start_date",
              "status",
              "updated_at"
            ],
            "type": "object"
          }
        },
        "required": [
          "data"
        ],
        "type": "object"
      },
      "PatchLinkTypesLinkTypeIdPayload": {
        "additionalProperties": false,
        "properties": {
          "active": {
            "description": "The active value.",
            "nullable": true,
            "type": "boolean"
          },
          "allowed_entity_types": {
            "description": "The allowed entity types value.",
            "items": {
              "type": "string"
            },
            "nullable": true,
            "type": "array"
          },
          "color": {
            "description": "The color value.",
            "nullable": true,
            "type": "string"
          },
          "description": {
            "description": "The description value.",
            "nullable": true,
            "type": "string"
          },
          "forward_label": {
            "description": "The forward label value.",
            "nullable": true,
            "type": "string"
          },
          "name": {
            "description": "The name value.",
            "nullable": true,
            "type": "string"
          },
          "reverse_label": {
            "description": "The reverse label value.",
            "nullable": true,
            "type": "string"
          }
        },
        "type": "object"
      },
      "PatchLinkTypesLinkTypeIdResult": {
        "additionalProperties": false,
        "properties": {
          "data": {
            "additionalProperties": false,
            "properties": {
              "active": {
                "description": "The active value.",
                "type": "boolean"
              },
              "allowed_entity_types": {
                "description": "The allowed entity types value.",
                "items": {
                  "type": "string"
                },
                "type": "array"
              },
              "builtin_key": {
                "description": "The builtin key value.",
                "type": "string"
              },
              "color": {
                "description": "The color value.",
                "type": "string"
              },
              "created_at": {
                "description": "The created at value.",
                "format": "date-time",
                "type": "string"
              },
              "description": {
                "description": "The description value.",
                "type": "string"
              },
              "display_description": {
                "description": "The display description value.",
                "type": "string"
              },
              "display_name": {
                "description": "The display name value.",
                "type": "string"
              },
              "forward_label": {
                "description": "The forward label value.",
                "type": "string"
              },
              "id": {
                "description": "The id value.",
                "type": "integer"
              },
              "is_system": {
                "description": "The is system value.",
                "type": "boolean"
              },
              "name": {
                "description": "The name value.",
                "type": "string"
              },
              "reverse_label": {
                "description": "The reverse label value.",
                "type": "string"
              },
              "updated_at": {
                "description": "The updated at value.",
                "format": "date-time",
                "type": "string"
              }
            },
            "required": [
              "active",
              "allowed_entity_types",
              "color",
              "created_at",
              "description",
              "display_name",
              "forward_label",
              "id",
              "is_system",
              "name",
              "reverse_label",
              "updated_at"
            ],
            "type": "object"
          }
        },
        "required": [
          "data"
        ],
        "type": "object"
      },
      "PatchMilestonesMilestoneIdPayload": {
        "additionalProperties": false,
        "properties": {
          "category_id": {
            "additionalProperties": false,
            "description": "The category id value.",
            "properties": {
              "Present": {
                "description": "The Present value.",
                "type": "boolean"
              },
              "Value": {
                "description": "The Value value.",
                "nullable": true,
                "type": "integer"
              }
            },
            "required": [
              "Present"
            ],
            "type": "object"
          },
          "description": {
            "description": "The description value.",
            "nullable": true,
            "type": "string"
          },
          "name": {
            "description": "The name value.",
            "nullable": true,
            "type": "string"
          },
          "status": {
            "description": "The status value.",
            "nullable": true,
            "type": "string"
          },
          "target_date": {
            "additionalProperties": false,
            "description": "The target date value.",
            "properties": {
              "Present": {
                "description": "The Present value.",
                "type": "boolean"
              },
              "Value": {
                "description": "The Value value.",
                "nullable": true,
                "type": "string"
              }
            },
            "required": [
              "Present"
            ],
            "type": "object"
          }
        },
        "type": "object"
      },
      "PatchMilestonesMilestoneIdResult": {
        "additionalProperties": false,
        "properties": {
          "data": {
            "additionalProperties": false,
            "properties": {
              "category_color": {
                "description": "The category color value.",
                "type": "string"
              },
              "category_id": {
                "description": "The category id value.",
                "nullable": true,
                "type": "integer"
              },
              "category_name": {
                "description": "The category name value.",
                "type": "string"
              },
              "created_at": {
                "description": "The created at value.",
                "format": "date-time",
                "type": "string"
              },
              "description": {
                "description": "The description value.",
                "type": "string"
              },
              "external_key": {
                "description": "The external key value.",
                "nullable": true,
                "type": "string"
              },
              "id": {
                "description": "The id value.",
                "type": "integer"
              },
              "is_global": {
                "description": "The is global value.",
                "type": "boolean"
              },
              "latest_release": {
                "additionalProperties": false,
                "description": "The latest release value.",
                "nullable": true,
                "properties": {
                  "body": {
                    "description": "The body value.",
                    "type": "string"
                  },
                  "created_at": {
                    "description": "The created at value.",
                    "type": "string"
                  },
                  "created_by": {
                    "description": "The created by value.",
                    "nullable": true,
                    "type": "integer"
                  },
                  "id": {
                    "description": "The id value.",
                    "type": "integer"
                  },
                  "is_draft": {
                    "description": "The is draft value.",
                    "type": "boolean"
                  },
                  "is_prerelease": {
                    "description": "The is prerelease value.",
                    "type": "boolean"
                  },
                  "milestone_id": {
                    "description": "The milestone id value.",
                    "type": "integer"
                  },
                  "name": {
                    "description": "The name value.",
                    "type": "string"
                  },
                  "scm_connection_id": {
                    "description": "The scm connection id value.",
                    "nullable": true,
                    "type": "integer"
                  },
                  "scm_release_id": {
                    "description": "The scm release id value.",
                    "nullable": true,
                    "type": "string"
                  },
                  "scm_release_url": {
                    "description": "The scm release url value.",
                    "nullable": true,
                    "type": "string"
                  },
                  "scm_repository": {
                    "description": "The scm repository value.",
                    "nullable": true,
                    "type": "string"
                  },
                  "tag_name": {
                    "description": "The tag name value.",
                    "type": "string"
                  },
                  "target_commitish": {
                    "description": "The target commitish value.",
                    "type": "string"
                  }
                },
                "required": [
                  "created_at",
                  "id",
                  "is_draft",
                  "is_prerelease",
                  "milestone_id",
                  "tag_name"
                ],
                "type": "object"
              },
              "name": {
                "description": "The name value.",
                "type": "string"
              },
              "position": {
                "description": "The position value.",
                "type": "integer"
              },
              "releases": {
                "description": "The releases value.",
                "items": {
                  "additionalProperties": false,
                  "properties": {
                    "body": {
                      "description": "The body value.",
                      "type": "string"
                    },
                    "created_at": {
                      "description": "The created at value.",
                      "type": "string"
                    },
                    "created_by": {
                      "description": "The created by value.",
                      "nullable": true,
                      "type": "integer"
                    },
                    "id": {
                      "description": "The id value.",
                      "type": "integer"
                    },
                    "is_draft": {
                      "description": "The is draft value.",
                      "type": "boolean"
                    },
                    "is_prerelease": {
                      "description": "The is prerelease value.",
                      "type": "boolean"
                    },
                    "milestone_id": {
                      "description": "The milestone id value.",
                      "type": "integer"
                    },
                    "name": {
                      "description": "The name value.",
                      "type": "string"
                    },
                    "scm_connection_id": {
                      "description": "The scm connection id value.",
                      "nullable": true,
                      "type": "integer"
                    },
                    "scm_release_id": {
                      "description": "The scm release id value.",
                      "nullable": true,
                      "type": "string"
                    },
                    "scm_release_url": {
                      "description": "The scm release url value.",
                      "nullable": true,
                      "type": "string"
                    },
                    "scm_repository": {
                      "description": "The scm repository value.",
                      "nullable": true,
                      "type": "string"
                    },
                    "tag_name": {
                      "description": "The tag name value.",
                      "type": "string"
                    },
                    "target_commitish": {
                      "description": "The target commitish value.",
                      "type": "string"
                    }
                  },
                  "required": [
                    "created_at",
                    "id",
                    "is_draft",
                    "is_prerelease",
                    "milestone_id",
                    "tag_name"
                  ],
                  "type": "object"
                },
                "type": "array"
              },
              "status": {
                "description": "The status value.",
                "type": "string"
              },
              "target_date": {
                "description": "The target date value.",
                "nullable": true,
                "type": "string"
              },
              "updated_at": {
                "description": "The updated at value.",
                "format": "date-time",
                "type": "string"
              },
              "workspace_id": {
                "description": "The workspace id value.",
                "nullable": true,
                "type": "integer"
              },
              "workspace_name": {
                "description": "The workspace name value.",
                "type": "string"
              }
            },
            "required": [
              "created_at",
              "description",
              "id",
              "is_global",
              "name",
              "position",
              "status",
              "updated_at"
            ],
            "type": "object"
          }
        },
        "required": [
          "data"
        ],
        "type": "object"
      },
      "PatchPrioritiesPriorityIdPayload": {
        "additionalProperties": false,
        "properties": {
          "color": {
            "description": "The color value.",
            "nullable": true,
            "type": "string"
          },
          "configuration_set_ids": {
            "description": "The configuration set ids value.",
            "items": {
              "type": "integer"
            },
            "nullable": true,
            "type": "array"
          },
          "description": {
            "description": "The description value.",
            "nullable": true,
            "type": "string"
          },
          "icon": {
            "description": "The icon value.",
            "nullable": true,
            "type": "string"
          },
          "is_default": {
            "description": "The is default value.",
            "nullable": true,
            "type": "boolean"
          },
          "name": {
            "description": "The name value.",
            "nullable": true,
            "type": "string"
          },
          "sort_order": {
            "description": "The sort order value.",
            "nullable": true,
            "type": "integer"
          }
        },
        "type": "object"
      },
      "PatchPrioritiesPriorityIdResult": {
        "additionalProperties": false,
        "properties": {
          "data": {
            "additionalProperties": false,
            "properties": {
              "builtin_key": {
                "description": "The builtin key value.",
                "nullable": true,
                "type": "string"
              },
              "color": {
                "description": "The color value.",
                "type": "string"
              },
              "description": {
                "description": "The description value.",
                "type": "string"
              },
              "display_description": {
                "description": "The display description value.",
                "type": "string"
              },
              "display_name": {
                "description": "The display name value.",
                "type": "string"
              },
              "icon": {
                "description": "The icon value.",
                "type": "string"
              },
              "id": {
                "description": "The id value.",
                "type": "integer"
              },
              "is_default": {
                "description": "The is default value.",
                "type": "boolean"
              },
              "name": {
                "description": "The name value.",
                "type": "string"
              },
              "sort_order": {
                "description": "The sort order value.",
                "type": "integer"
              }
            },
            "required": [
              "color",
              "description",
              "display_description",
              "display_name",
              "icon",
              "id",
              "is_default",
              "name",
              "sort_order"
            ],
            "type": "object"
          }
        },
        "required": [
          "data"
        ],
        "type": "object"
      },
      "PatchStatusCategoriesCategoryIdPayload": {
        "additionalProperties": false,
        "properties": {
          "color": {
            "description": "The color value.",
            "nullable": true,
            "type": "string"
          },
          "description": {
            "description": "The description value.",
            "nullable": true,
            "type": "string"
          },
          "is_completed": {
            "description": "The is completed value.",
            "nullable": true,
            "type": "boolean"
          },
          "is_default": {
            "description": "The is default value.",
            "nullable": true,
            "type": "boolean"
          },
          "name": {
            "description": "The name value.",
            "nullable": true,
            "type": "string"
          }
        },
        "type": "object"
      },
      "PatchStatusCategoriesCategoryIdResult": {
        "additionalProperties": false,
        "properties": {
          "data": {
            "additionalProperties": false,
            "properties": {
              "builtin_key": {
                "description": "The builtin key value.",
                "nullable": true,
                "type": "string"
              },
              "color": {
                "description": "The color value.",
                "type": "string"
              },
              "description": {
                "description": "The description value.",
                "type": "string"
              },
              "display_description": {
                "description": "The display description value.",
                "type": "string"
              },
              "display_name": {
                "description": "The display name value.",
                "type": "string"
              },
              "id": {
                "description": "The id value.",
                "type": "integer"
              },
              "is_completed": {
                "description": "The is completed value.",
                "type": "boolean"
              },
              "is_default": {
                "description": "The is default value.",
                "type": "boolean"
              },
              "name": {
                "description": "The name value.",
                "type": "string"
              }
            },
            "required": [
              "color",
              "description",
              "display_description",
              "display_name",
              "id",
              "is_completed",
              "is_default",
              "name"
            ],
            "type": "object"
          }
        },
        "required": [
          "data"
        ],
        "type": "object"
      },
      "PatchStatusesStatusIdPayload": {
        "additionalProperties": false,
        "properties": {
          "category_id": {
            "description": "The category id value.",
            "nullable": true,
            "type": "integer"
          },
          "description": {
            "description": "The description value.",
            "nullable": true,
            "type": "string"
          },
          "is_default": {
            "description": "The is default value.",
            "nullable": true,
            "type": "boolean"
          },
          "name": {
            "description": "The name value.",
            "nullable": true,
            "type": "string"
          }
        },
        "type": "object"
      },
      "PatchStatusesStatusIdResult": {
        "additionalProperties": false,
        "properties": {
          "data": {
            "additionalProperties": false,
            "properties": {
              "builtin_key": {
                "description": "The builtin key value.",
                "nullable": true,
                "type": "string"
              },
              "category": {
                "additionalProperties": false,
                "description": "The category value.",
                "properties": {
                  "builtin_key": {
                    "description": "The builtin key value.",
                    "nullable": true,
                    "type": "string"
                  },
                  "color": {
                    "description": "The color value.",
                    "type": "string"
                  },
                  "description": {
                    "description": "The description value.",
                    "type": "string"
                  },
                  "display_description": {
                    "description": "The display description value.",
                    "type": "string"
                  },
                  "display_name": {
                    "description": "The display name value.",
                    "type": "string"
                  },
                  "id": {
                    "description": "The id value.",
                    "type": "integer"
                  },
                  "is_completed": {
                    "description": "The is completed value.",
                    "type": "boolean"
                  },
                  "is_default": {
                    "description": "The is default value.",
                    "type": "boolean"
                  },
                  "name": {
                    "description": "The name value.",
                    "type": "string"
                  }
                },
                "required": [
                  "color",
                  "description",
                  "display_description",
                  "display_name",
                  "id",
                  "is_completed",
                  "is_default",
                  "name"
                ],
                "type": "object"
              },
              "description": {
                "description": "The description value.",
                "type": "string"
              },
              "display_description": {
                "description": "The display description value.",
                "type": "string"
              },
              "display_name": {
                "description": "The display name value.",
                "type": "string"
              },
              "id": {
                "description": "The id value.",
                "type": "integer"
              },
              "is_default": {
                "description": "The is default value.",
                "type": "boolean"
              },
              "name": {
                "description": "The name value.",
                "type": "string"
              }
            },
            "required": [
              "category",
              "description",
              "display_description",
              "display_name",
              "id",
              "is_default",
              "name"
            ],
            "type": "object"
          }
        },
        "required": [
          "data"
        ],
        "type": "object"
      },
      "PatchTimeProjectCategoriesCategoryIdPayload": {
        "additionalProperties": false,
        "properties": {
          "color": {
            "description": "The color value.",
            "nullable": true,
            "type": "string"
          },
          "description": {
            "description": "The description value.",
            "nullable": true,
            "type": "string"
          },
          "display_order": {
            "description": "The display order value.",
            "nullable": true,
            "type": "integer"
          },
          "name": {
            "description": "The name value.",
            "nullable": true,
            "type": "string"
          }
        },
        "type": "object"
      },
      "PatchTimeProjectCategoriesCategoryIdResult": {
        "additionalProperties": false,
        "properties": {
          "data": {
            "additionalProperties": false,
            "properties": {
              "color": {
                "description": "The color value.",
                "type": "string"
              },
              "created_at": {
                "description": "The created at value.",
                "type": "string"
              },
              "description": {
                "description": "The description value.",
                "type": "string"
              },
              "display_order": {
                "description": "The display order value.",
                "type": "integer"
              },
              "id": {
                "description": "The id value.",
                "type": "integer"
              },
              "name": {
                "description": "The name value.",
                "type": "string"
              },
              "updated_at": {
                "description": "The updated at value.",
                "type": "string"
              }
            },
            "required": [
              "color",
              "created_at",
              "description",
              "display_order",
              "id",
              "name",
              "updated_at"
            ],
            "type": "object"
          }
        },
        "required": [
          "data"
        ],
        "type": "object"
      },
      "PatchTimeProjectsProjectIdPayload": {
        "additionalProperties": false,
        "properties": {
          "category_id": {
            "description": "The category id value.",
            "nullable": true,
            "type": "integer"
          },
          "color": {
            "description": "The color value.",
            "nullable": true,
            "type": "string"
          },
          "customer_id": {
            "description": "The customer id value.",
            "nullable": true,
            "type": "integer"
          },
          "description": {
            "description": "The description value.",
            "nullable": true,
            "type": "string"
          },
          "hourly_rate": {
            "description": "The hourly rate value.",
            "nullable": true,
            "type": "number"
          },
          "name": {
            "description": "The name value.",
            "nullable": true,
            "type": "string"
          },
          "settings": {
            "additionalProperties": {
              "description": "Arbitrary JSON extension value."
            },
            "description": "The settings value.",
            "nullable": true,
            "type": "object"
          },
          "status": {
            "description": "The status value.",
            "nullable": true,
            "type": "string"
          }
        },
        "type": "object"
      },
      "PatchTimeProjectsProjectIdResult": {
        "additionalProperties": false,
        "properties": {
          "data": {
            "additionalProperties": false,
            "properties": {
              "category_color": {
                "description": "The category color value.",
                "type": "string"
              },
              "category_id": {
                "description": "The category id value.",
                "nullable": true,
                "type": "integer"
              },
              "category_name": {
                "description": "The category name value.",
                "type": "string"
              },
              "color": {
                "description": "The color value.",
                "type": "string"
              },
              "created_at": {
                "description": "The created at value.",
                "type": "string"
              },
              "customer_id": {
                "description": "The customer id value.",
                "nullable": true,
                "type": "integer"
              },
              "customer_name": {
                "description": "The customer name value.",
                "type": "string"
              },
              "description": {
                "description": "The description value.",
                "type": "string"
              },
              "hourly_rate": {
                "description": "The hourly rate value.",
                "type": "number"
              },
              "id": {
                "description": "The id value.",
                "type": "integer"
              },
              "name": {
                "description": "The name value.",
                "type": "string"
              },
              "settings": {
                "additionalProperties": {
                  "description": "Arbitrary JSON extension value."
                },
                "description": "The settings value.",
                "type": "object"
              },
              "status": {
                "description": "The status value.",
                "type": "string"
              },
              "total_hours": {
                "description": "The total hours value.",
                "nullable": true,
                "type": "number"
              },
              "updated_at": {
                "description": "The updated at value.",
                "type": "string"
              }
            },
            "required": [
              "category_color",
              "category_name",
              "color",
              "created_at",
              "customer_name",
              "description",
              "hourly_rate",
              "id",
              "name",
              "settings",
              "status",
              "updated_at"
            ],
            "type": "object"
          }
        },
        "required": [
          "data"
        ],
        "type": "object"
      },
      "PatchTimeWorklogsWorklogIdPayload": {
        "additionalProperties": false,
        "properties": {
          "date": {
            "description": "The date value.",
            "nullable": true,
            "type": "string"
          },
          "description": {
            "description": "The description value.",
            "nullable": true,
            "type": "string"
          },
          "duration": {
            "description": "The duration value.",
            "nullable": true,
            "type": "string"
          },
          "duration_minutes": {
            "description": "The duration minutes value.",
            "nullable": true,
            "type": "integer"
          },
          "end_time": {
            "description": "The end time value.",
            "nullable": true,
            "type": "string"
          },
          "item_id": {
            "description": "The item id value.",
            "nullable": true,
            "type": "integer"
          },
          "project_id": {
            "description": "The project id value.",
            "nullable": true,
            "type": "integer"
          },
          "start_time": {
            "description": "The start time value.",
            "nullable": true,
            "type": "string"
          },
          "timezone": {
            "description": "The timezone value.",
            "nullable": true,
            "type": "string"
          }
        },
        "type": "object"
      },
      "PatchTimeWorklogsWorklogIdResult": {
        "additionalProperties": false,
        "properties": {
          "data": {
            "additionalProperties": false,
            "properties": {
              "created_at": {
                "description": "The created at value.",
                "type": "integer"
              },
              "customer_id": {
                "description": "The customer id value.",
                "type": "integer"
              },
              "customer_name": {
                "description": "The customer name value.",
                "type": "string"
              },
              "date": {
                "description": "The date value.",
                "type": "integer"
              },
              "description": {
                "description": "The description value.",
                "type": "string"
              },
              "duration_minutes": {
                "description": "The duration minutes value.",
                "type": "integer"
              },
              "end_time": {
                "description": "The end time value.",
                "type": "integer"
              },
              "id": {
                "description": "The id value.",
                "type": "integer"
              },
              "item_id": {
                "description": "The item id value.",
                "nullable": true,
                "type": "integer"
              },
              "item_title": {
                "description": "The item title value.",
                "type": "string"
              },
              "project_id": {
                "description": "The project id value.",
                "type": "integer"
              },
              "project_max_hours": {
                "description": "The project max hours value.",
                "nullable": true,
                "type": "number"
              },
              "project_name": {
                "description": "The project name value.",
                "type": "string"
              },
              "project_total_hours": {
                "description": "The project total hours value.",
                "nullable": true,
                "type": "number"
              },
              "start_time": {
                "description": "The start time value.",
                "type": "integer"
              },
              "updated_at": {
                "description": "The updated at value.",
                "type": "integer"
              },
              "user_id": {
                "description": "The user id value.",
                "nullable": true,
                "type": "integer"
              },
              "user_name": {
                "description": "The user name value.",
                "type": "string"
              },
              "warnings": {
                "description": "The warnings value.",
                "items": {
                  "type": "string"
                },
                "type": "array"
              },
              "workspace_id": {
                "description": "The workspace id value.",
                "nullable": true,
                "type": "integer"
              },
              "workspace_item_number": {
                "description": "The workspace item number value.",
                "type": "integer"
              },
              "workspace_key": {
                "description": "The workspace key value.",
                "type": "string"
              }
            },
            "required": [
              "created_at",
              "customer_id",
              "customer_name",
              "date",
              "description",
              "duration_minutes",
              "end_time",
              "id",
              "item_title",
              "project_id",
              "project_name",
              "start_time",
              "updated_at",
              "user_name",
              "workspace_item_number",
              "workspace_key"
            ],
            "type": "object"
          }
        },
        "required": [
          "data"
        ],
        "type": "object"
      },
      "PatchUsersMePreferencesPayload": {
        "additionalProperties": false,
        "properties": {
          "color_mode": {
            "description": "The color mode value.",
            "nullable": true,
            "type": "string"
          },
          "theme_id": {
            "description": "The theme id value.",
            "nullable": true,
            "type": "integer"
          },
          "tui": {
            "additionalProperties": false,
            "description": "The tui value.",
            "nullable": true,
            "properties": {
              "last_workspace_id": {
                "description": "The last workspace id value.",
                "nullable": true,
                "type": "integer"
              },
              "split_ratio": {
                "description": "The split ratio value.",
                "nullable": true,
                "type": "number"
              },
              "theme": {
                "description": "The theme value.",
                "nullable": true,
                "type": "string"
              }
            },
            "type": "object"
          }
        },
        "type": "object"
      },
      "PatchUsersMePreferencesResult": {
        "additionalProperties": false,
        "properties": {
          "data": {
            "additionalProperties": false,
            "properties": {
              "color_mode": {
                "description": "The color mode value.",
                "type": "string"
              },
              "theme": {
                "additionalProperties": false,
                "description": "The theme value.",
                "nullable": true,
                "properties": {
                  "builtin_key": {
                    "description": "The builtin key value.",
                    "type": "string"
                  },
                  "created_at": {
                    "description": "The created at value.",
                    "format": "date-time",
                    "type": "string"
                  },
                  "description": {
                    "description": "The description value.",
                    "type": "string"
                  },
                  "display_description": {
                    "description": "The display description value.",
                    "type": "string"
                  },
                  "display_name": {
                    "description": "The display name value.",
                    "type": "string"
                  },
                  "id": {
                    "description": "The id value.",
                    "type": "integer"
                  },
                  "is_active": {
                    "description": "The is active value.",
                    "type": "boolean"
                  },
                  "is_default": {
                    "description": "The is default value.",
                    "type": "boolean"
                  },
                  "name": {
                    "description": "The name value.",
                    "type": "string"
                  },
                  "nav_background_color_dark": {
                    "description": "The nav background color dark value.",
                    "type": "string"
                  },
                  "nav_background_color_light": {
                    "description": "The nav background color light value.",
                    "type": "string"
                  },
                  "nav_text_color_dark": {
                    "description": "The nav text color dark value.",
                    "type": "string"
                  },
                  "nav_text_color_light": {
                    "description": "The nav text color light value.",
                    "type": "string"
                  },
                  "updated_at": {
                    "description": "The updated at value.",
                    "format": "date-time",
                    "type": "string"
                  }
                },
                "required": [
                  "created_at",
                  "description",
                  "display_name",
                  "id",
                  "is_active",
                  "is_default",
                  "name",
                  "nav_background_color_dark",
                  "nav_background_color_light",
                  "nav_text_color_dark",
                  "nav_text_color_light",
                  "updated_at"
                ],
                "type": "object"
              },
              "theme_id": {
                "description": "The theme id value.",
                "nullable": true,
                "type": "integer"
              },
              "tui": {
                "additionalProperties": false,
                "description": "The tui value.",
                "properties": {
                  "last_workspace_id": {
                    "description": "The last workspace id value.",
                    "nullable": true,
                    "type": "integer"
                  },
                  "split_ratio": {
                    "description": "The split ratio value.",
                    "nullable": true,
                    "type": "number"
                  },
                  "theme": {
                    "description": "The theme value.",
                    "type": "string"
                  }
                },
                "type": "object"
              }
            },
            "required": [
              "color_mode",
              "tui"
            ],
            "type": "object"
          }
        },
        "required": [
          "data"
        ],
        "type": "object"
      },
      "PatchWorkflowsWorkflowIdPayload": {
        "additionalProperties": false,
        "properties": {
          "description": {
            "description": "The description value.",
            "nullable": true,
            "type": "string"
          },
          "is_default": {
            "description": "The is default value.",
            "nullable": true,
            "type": "boolean"
          },
          "name": {
            "description": "The name value.",
            "nullable": true,
            "type": "string"
          }
        },
        "type": "object"
      },
      "PatchWorkflowsWorkflowIdResult": {
        "additionalProperties": false,
        "properties": {
          "data": {
            "additionalProperties": false,
            "properties": {
              "builtin_key": {
                "description": "The builtin key value.",
                "nullable": true,
                "type": "string"
              },
              "description": {
                "description": "The description value.",
                "type": "string"
              },
              "display_description": {
                "description": "The display description value.",
                "type": "string"
              },
              "display_name": {
                "description": "The display name value.",
                "type": "string"
              },
              "id": {
                "description": "The id value.",
                "type": "integer"
              },
              "is_default": {
                "description": "The is default value.",
                "type": "boolean"
              },
              "name": {
                "description": "The name value.",
                "type": "string"
              }
            },
            "required": [
              "description",
              "display_description",
              "display_name",
              "id",
              "is_default",
              "name"
            ],
            "type": "object"
          }
        },
        "required": [
          "data"
        ],
        "type": "object"
      },
      "PatchWorkspacesWorkspaceIdActionsActionIdPayload": {
        "additionalProperties": false,
        "properties": {
          "actor_user_id": {
            "additionalProperties": false,
            "description": "The actor user id value.",
            "properties": {
              "Present": {
                "description": "The Present value.",
                "type": "boolean"
              },
              "Value": {
                "description": "The Value value.",
                "nullable": true,
                "type": "integer"
              }
            },
            "required": [
              "Present"
            ],
            "type": "object"
          },
          "allowed_role_ids": {
            "description": "The allowed role ids value.",
            "items": {
              "type": "integer"
            },
            "type": "array"
          },
          "description": {
            "description": "The description value.",
            "nullable": true,
            "type": "string"
          },
          "edges": {
            "description": "The edges value.",
            "items": {
              "additionalProperties": false,
              "properties": {
                "action_id": {
                  "description": "The action id value.",
                  "type": "integer"
                },
                "created_at": {
                  "description": "The created at value.",
                  "format": "date-time",
                  "type": "string"
                },
                "edge_type": {
                  "description": "The edge type value.",
                  "type": "string"
                },
                "id": {
                  "description": "The id value.",
                  "type": "integer"
                },
                "source_handle": {
                  "description": "The source handle value.",
                  "type": "string"
                },
                "source_node_id": {
                  "description": "The source node id value.",
                  "type": "integer"
                },
                "target_handle": {
                  "description": "The target handle value.",
                  "type": "string"
                },
                "target_node_id": {
                  "description": "The target node id value.",
                  "type": "integer"
                }
              },
              "required": [
                "action_id",
                "created_at",
                "edge_type",
                "id",
                "source_node_id",
                "target_node_id"
              ],
              "type": "object"
            },
            "type": "array"
          },
          "is_enabled": {
            "description": "The is enabled value.",
            "nullable": true,
            "type": "boolean"
          },
          "name": {
            "description": "The name value.",
            "nullable": true,
            "type": "string"
          },
          "nodes": {
            "description": "The nodes value.",
            "items": {
              "additionalProperties": false,
              "properties": {
                "action_id": {
                  "description": "The action id value.",
                  "type": "integer"
                },
                "created_at": {
                  "description": "The created at value.",
                  "format": "date-time",
                  "type": "string"
                },
                "id": {
                  "description": "The id value.",
                  "type": "integer"
                },
                "node_config": {
                  "description": "The node config value.",
                  "type": "string"
                },
                "node_type": {
                  "description": "The node type value.",
                  "type": "string"
                },
                "position_x": {
                  "description": "The position x value.",
                  "type": "number"
                },
                "position_y": {
                  "description": "The position y value.",
                  "type": "number"
                },
                "updated_at": {
                  "description": "The updated at value.",
                  "format": "date-time",
                  "type": "string"
                }
              },
              "required": [
                "action_id",
                "created_at",
                "id",
                "node_config",
                "node_type",
                "position_x",
                "position_y",
                "updated_at"
              ],
              "type": "object"
            },
            "type": "array"
          },
          "trigger_config": {
            "description": "The trigger config value.",
            "nullable": true,
            "type": "string"
          },
          "trigger_type": {
            "description": "The trigger type value.",
            "nullable": true,
            "type": "string"
          }
        },
        "type": "object"
      },
      "PatchWorkspacesWorkspaceIdActionsActionIdResult": {
        "additionalProperties": false,
        "properties": {
          "data": {
            "additionalProperties": false,
            "nullable": true,
            "properties": {
              "actor_name": {
                "description": "The actor name value.",
                "type": "string"
              },
              "actor_user_id": {
                "description": "The actor user id value.",
                "nullable": true,
                "type": "integer"
              },
              "allowed_role_ids": {
                "description": "The allowed role ids value.",
                "items": {
                  "type": "integer"
                },
                "type": "array"
              },
              "created_at": {
                "description": "The created at value.",
                "format": "date-time",
                "type": "string"
              },
              "created_by": {
                "description": "The created by value.",
                "nullable": true,
                "type": "integer"
              },
              "creator_name": {
                "description": "The creator name value.",
                "type": "string"
              },
              "description": {
                "description": "The description value.",
                "type": "string"
              },
              "edges": {
                "description": "The edges value.",
                "items": {
                  "additionalProperties": false,
                  "properties": {
                    "action_id": {
                      "description": "The action id value.",
                      "type": "integer"
                    },
                    "created_at": {
                      "description": "The created at value.",
                      "format": "date-time",
                      "type": "string"
                    },
                    "edge_type": {
                      "description": "The edge type value.",
                      "type": "string"
                    },
                    "id": {
                      "description": "The id value.",
                      "type": "integer"
                    },
                    "source_handle": {
                      "description": "The source handle value.",
                      "type": "string"
                    },
                    "source_node_id": {
                      "description": "The source node id value.",
                      "type": "integer"
                    },
                    "target_handle": {
                      "description": "The target handle value.",
                      "type": "string"
                    },
                    "target_node_id": {
                      "description": "The target node id value.",
                      "type": "integer"
                    }
                  },
                  "required": [
                    "action_id",
                    "created_at",
                    "edge_type",
                    "id",
                    "source_node_id",
                    "target_node_id"
                  ],
                  "type": "object"
                },
                "type": "array"
              },
              "id": {
                "description": "The id value.",
                "type": "integer"
              },
              "is_enabled": {
                "description": "The is enabled value.",
                "type": "boolean"
              },
              "name": {
                "description": "The name value.",
                "type": "string"
              },
              "nodes": {
                "description": "The nodes value.",
                "items": {
                  "additionalProperties": false,
                  "properties": {
                    "action_id": {
                      "description": "The action id value.",
                      "type": "integer"
                    },
                    "created_at": {
                      "description": "The created at value.",
                      "format": "date-time",
                      "type": "string"
                    },
                    "id": {
                      "description": "The id value.",
                      "type": "integer"
                    },
                    "node_config": {
                      "description": "The node config value.",
                      "type": "string"
                    },
                    "node_type": {
                      "description": "The node type value.",
                      "type": "string"
                    },
                    "position_x": {
                      "description": "The position x value.",
                      "type": "number"
                    },
                    "position_y": {
                      "description": "The position y value.",
                      "type": "number"
                    },
                    "updated_at": {
                      "description": "The updated at value.",
                      "format": "date-time",
                      "type": "string"
                    }
                  },
                  "required": [
                    "action_id",
                    "created_at",
                    "id",
                    "node_config",
                    "node_type",
                    "position_x",
                    "position_y",
                    "updated_at"
                  ],
                  "type": "object"
                },
                "type": "array"
              },
              "trigger_config": {
                "description": "The trigger config value.",
                "type": "string"
              },
              "trigger_type": {
                "description": "The trigger type value.",
                "type": "string"
              },
              "updated_at": {
                "description": "The updated at value.",
                "format": "date-time",
                "type": "string"
              },
              "workspace_id": {
                "description": "The workspace id value.",
                "type": "integer"
              }
            },
            "required": [
              "allowed_role_ids",
              "created_at",
              "id",
              "is_enabled",
              "name",
              "trigger_type",
              "updated_at",
              "workspace_id"
            ],
            "type": "object"
          }
        },
        "required": [
          "data"
        ],
        "type": "object"
      },
      "PatchWorkspacesWorkspaceIdAgentSkillsSkillIdPayload": {
        "additionalProperties": false,
        "properties": {
          "body": {
            "description": "The body value.",
            "nullable": true,
            "type": "string"
          },
          "description": {
            "description": "The description value.",
            "nullable": true,
            "type": "string"
          },
          "enabled": {
            "description": "The enabled value.",
            "nullable": true,
            "type": "boolean"
          },
          "name": {
            "description": "The name value.",
            "nullable": true,
            "type": "string"
          },
          "page_ids": {
            "description": "The page ids value.",
            "items": {
              "type": "integer"
            },
            "nullable": true,
            "type": "array"
          }
        },
        "type": "object"
      },
      "PatchWorkspacesWorkspaceIdAgentSkillsSkillIdResult": {
        "additionalProperties": false,
        "properties": {
          "data": {
            "additionalProperties": false,
            "properties": {
              "body": {
                "description": "The body value.",
                "type": "string"
              },
              "created_at": {
                "description": "The created at value.",
                "format": "date-time",
                "type": "string"
              },
              "created_by_user_id": {
                "description": "The created by user id value.",
                "nullable": true,
                "type": "integer"
              },
              "description": {
                "description": "The description value.",
                "type": "string"
              },
              "enabled": {
                "description": "The enabled value.",
                "type": "boolean"
              },
              "id": {
                "description": "The id value.",
                "type": "integer"
              },
              "name": {
                "description": "The name value.",
                "type": "string"
              },
              "pages": {
                "description": "The pages value.",
                "items": {
                  "additionalProperties": false,
                  "properties": {
                    "activation_bytes": {
                      "description": "The activation bytes value.",
                      "type": "integer"
                    },
                    "activation_runes": {
                      "description": "The activation runes value.",
                      "type": "integer"
                    },
                    "id": {
                      "description": "The id value.",
                      "type": "integer"
                    },
                    "page_updated_at": {
                      "description": "The page updated at value.",
                      "format": "date-time",
                      "type": "string"
                    },
                    "snapshot_at": {
                      "description": "The snapshot at value.",
                      "format": "date-time",
                      "type": "string"
                    },
                    "snapshot_title": {
                      "description": "The snapshot title value.",
                      "type": "string"
                    },
                    "stale": {
                      "description": "The stale value.",
                      "type": "boolean"
                    },
                    "title": {
                      "description": "The title value.",
                      "type": "string"
                    }
                  },
                  "required": [
                    "activation_bytes",
                    "activation_runes",
                    "id",
                    "snapshot_at",
                    "stale",
                    "title"
                  ],
                  "type": "object"
                },
                "type": "array"
              },
              "updated_at": {
                "description": "The updated at value.",
                "format": "date-time",
                "type": "string"
              },
              "usage": {
                "additionalProperties": false,
                "description": "The usage value.",
                "nullable": true,
                "properties": {
                  "bytes": {
                    "description": "The bytes value.",
                    "type": "integer"
                  },
                  "estimated_tokens": {
                    "description": "The estimated tokens value.",
                    "type": "integer"
                  },
                  "max_bytes": {
                    "description": "The max bytes value.",
                    "type": "integer"
                  },
                  "max_tokens": {
                    "description": "The max tokens value.",
                    "type": "integer"
                  },
                  "page_prefix_bytes": {
                    "description": "The page prefix bytes value.",
                    "type": "integer"
                  },
                  "page_prefix_runes": {
                    "description": "The page prefix runes value.",
                    "type": "integer"
                  }
                },
                "required": [
                  "bytes",
                  "estimated_tokens",
                  "max_bytes",
                  "max_tokens",
                  "page_prefix_bytes",
                  "page_prefix_runes"
                ],
                "type": "object"
              },
              "workspace_id": {
                "description": "The workspace id value.",
                "type": "integer"
              }
            },
            "required": [
              "created_at",
              "description",
              "enabled",
              "id",
              "name",
              "updated_at",
              "workspace_id"
            ],
            "type": "object"
          }
        },
        "required": [
          "data"
        ],
        "type": "object"
      },
      "PatchWorkspacesWorkspaceIdItemTemplatesTemplateIdPayload": {
        "additionalProperties": false,
        "properties": {
          "description_body": {
            "description": "The description body value.",
            "nullable": true,
            "type": "string"
          },
          "is_active": {
            "description": "The is active value.",
            "nullable": true,
            "type": "boolean"
          },
          "item_type_ids": {
            "description": "The item type ids value.",
            "items": {
              "type": "integer"
            },
            "nullable": true,
            "type": "array"
          },
          "mode": {
            "description": "The mode value.",
            "nullable": true,
            "type": "string"
          },
          "name": {
            "description": "The name value.",
            "nullable": true,
            "type": "string"
          }
        },
        "type": "object"
      },
      "PatchWorkspacesWorkspaceIdItemTemplatesTemplateIdResult": {
        "additionalProperties": false,
        "properties": {
          "data": {
            "additionalProperties": false,
            "properties": {
              "created_at": {
                "description": "The created at value.",
                "type": "string"
              },
              "created_by": {
                "description": "The created by value.",
                "nullable": true,
                "type": "integer"
              },
              "description_body": {
                "description": "The description body value.",
                "type": "string"
              },
              "id": {
                "description": "The id value.",
                "type": "integer"
              },
              "is_active": {
                "description": "The is active value.",
                "type": "boolean"
              },
              "item_type_ids": {
                "description": "The item type ids value.",
                "items": {
                  "type": "integer"
                },
                "type": "array"
              },
              "mode": {
                "description": "The mode value.",
                "type": "string"
              },
              "name": {
                "description": "The name value.",
                "type": "string"
              },
              "updated_at": {
                "description": "The updated at value.",
                "type": "string"
              },
              "updated_by": {
                "description": "The updated by value.",
                "nullable": true,
                "type": "integer"
              },
              "workspace_id": {
                "description": "The workspace id value.",
                "type": "integer"
              }
            },
            "required": [
              "created_at",
              "description_body",
              "id",
              "is_active",
              "item_type_ids",
              "mode",
              "name",
              "updated_at",
              "workspace_id"
            ],
            "type": "object"
          }
        },
        "required": [
          "data"
        ],
        "type": "object"
      },
      "PatchWorkspacesWorkspaceIdLabelsLabelIdPayload": {
        "additionalProperties": false,
        "properties": {
          "color": {
            "description": "The color value.",
            "nullable": true,
            "type": "string"
          },
          "name": {
            "description": "The name value.",
            "nullable": true,
            "type": "string"
          }
        },
        "type": "object"
      },
      "PatchWorkspacesWorkspaceIdLabelsLabelIdResult": {
        "additionalProperties": false,
        "properties": {
          "data": {
            "additionalProperties": false,
            "properties": {
              "color": {
                "description": "The color value.",
                "type": "string"
              },
              "created_at": {
                "description": "The created at value.",
                "type": "string"
              },
              "id": {
                "description": "The id value.",
                "type": "integer"
              },
              "name": {
                "description": "The name value.",
                "type": "string"
              },
              "updated_at": {
                "description": "The updated at value.",
                "type": "string"
              }
            },
            "required": [
              "color",
              "created_at",
              "id",
              "name",
              "updated_at"
            ],
            "type": "object"
          }
        },
        "required": [
          "data"
        ],
        "type": "object"
      },
      "PatchWorkspacesWorkspaceIdPageLabelsLabelIdPayload": {
        "additionalProperties": false,
        "properties": {
          "color": {
            "description": "The color value.",
            "nullable": true,
            "type": "string"
          },
          "name": {
            "description": "The name value.",
            "nullable": true,
            "type": "string"
          }
        },
        "type": "object"
      },
      "PatchWorkspacesWorkspaceIdPageLabelsLabelIdResult": {
        "additionalProperties": false,
        "properties": {
          "data": {
            "additionalProperties": false,
            "properties": {
              "color": {
                "description": "The color value.",
                "type": "string"
              },
              "created_at": {
                "description": "The created at value.",
                "format": "date-time",
                "type": "string"
              },
              "id": {
                "description": "The id value.",
                "type": "integer"
              },
              "name": {
                "description": "The name value.",
                "type": "string"
              },
              "updated_at": {
                "description": "The updated at value.",
                "format": "date-time",
                "type": "string"
              },
              "workspace_id": {
                "description": "The workspace id value.",
                "type": "integer"
              }
            },
            "required": [
              "color",
              "created_at",
              "id",
              "name",
              "updated_at",
              "workspace_id"
            ],
            "type": "object"
          }
        },
        "required": [
          "data"
        ],
        "type": "object"
      },
      "PatchWorkspacesWorkspaceIdPagesPageIdDiagramsAttachmentIdPayload": {
        "additionalProperties": false,
        "properties": {
          "excalidraw": {
            "description": "The excalidraw value.",
            "format": "byte",
            "type": "string"
          },
          "expected_content_hash": {
            "description": "The expected content hash value.",
            "nullable": true,
            "type": "string"
          },
          "mermaid": {
            "description": "The mermaid value.",
            "type": "string"
          },
          "name": {
            "description": "The name value.",
            "type": "string"
          }
        },
        "type": "object"
      },
      "PatchWorkspacesWorkspaceIdPagesPageIdDiagramsAttachmentIdResult": {
        "additionalProperties": false,
        "properties": {
          "data": {
            "additionalProperties": false,
            "properties": {
              "attachment_id": {
                "description": "The attachment id value.",
                "type": "integer"
              },
              "content_hash": {
                "description": "The content hash value.",
                "type": "string"
              },
              "created_at": {
                "description": "The created at value.",
                "format": "date-time",
                "type": "string"
              },
              "kind": {
                "description": "The kind value.",
                "type": "string"
              },
              "name": {
                "description": "The name value.",
                "type": "string"
              },
              "page_id": {
                "description": "The page id value.",
                "type": "integer"
              },
              "payload": {
                "description": "The payload value.",
                "format": "byte",
                "type": "string"
              },
              "revision_number": {
                "description": "The revision number value.",
                "type": "integer"
              }
            },
            "required": [
              "attachment_id",
              "kind",
              "name",
              "page_id"
            ],
            "type": "object"
          }
        },
        "required": [
          "data"
        ],
        "type": "object"
      },
      "PatchWorkspacesWorkspaceIdPagesPageIdInheritancePayload": {
        "additionalProperties": false,
        "properties": {
          "inherit_permissions": {
            "description": "The inherit permissions value.",
            "type": "boolean"
          }
        },
        "required": [
          "inherit_permissions"
        ],
        "type": "object"
      },
      "PatchWorkspacesWorkspaceIdPagesPageIdInheritanceResult": {
        "additionalProperties": false,
        "properties": {
          "data": {
            "additionalProperties": false,
            "properties": {
              "archived_at": {
                "description": "The archived at value.",
                "format": "date-time",
                "nullable": true,
                "type": "string"
              },
              "archived_by": {
                "description": "The archived by value.",
                "nullable": true,
                "type": "integer"
              },
              "content": {
                "description": "The content value.",
                "type": "string"
              },
              "content_hash": {
                "description": "The content hash value.",
                "type": "string"
              },
              "created_at": {
                "description": "The created at value.",
                "format": "date-time",
                "type": "string"
              },
              "created_by": {
                "description": "The created by value.",
                "type": "integer"
              },
              "depth": {
                "description": "The depth value.",
                "type": "integer"
              },
              "excerpt": {
                "description": "The excerpt value.",
                "type": "string"
              },
              "frac_index": {
                "description": "The frac index value.",
                "nullable": true,
                "type": "string"
              },
              "id": {
                "description": "The id value.",
                "type": "integer"
              },
              "inherit_permissions": {
                "description": "The inherit permissions value.",
                "type": "boolean"
              },
              "is_home": {
                "description": "The is home value.",
                "type": "boolean"
              },
              "labels": {
                "description": "The labels value.",
                "items": {
                  "additionalProperties": false,
                  "properties": {
                    "color": {
                      "description": "The color value.",
                      "type": "string"
                    },
                    "created_at": {
                      "description": "The created at value.",
                      "format": "date-time",
                      "type": "string"
                    },
                    "id": {
                      "description": "The id value.",
                      "type": "integer"
                    },
                    "name": {
                      "description": "The name value.",
                      "type": "string"
                    },
                    "updated_at": {
                      "description": "The updated at value.",
                      "format": "date-time",
                      "type": "string"
                    },
                    "workspace_id": {
                      "description": "The workspace id value.",
                      "type": "integer"
                    }
                  },
                  "required": [
                    "color",
                    "created_at",
                    "id",
                    "name",
                    "updated_at",
                    "workspace_id"
                  ],
                  "type": "object"
                },
                "type": "array"
              },
              "metadata": {
                "description": "The metadata value.",
                "format": "byte",
                "type": "string"
              },
              "parent_id": {
                "description": "The parent id value.",
                "nullable": true,
                "type": "integer"
              },
              "path": {
                "description": "The path value.",
                "type": "string"
              },
              "rank": {
                "description": "The rank value.",
                "nullable": true,
                "type": "string"
              },
              "slug": {
                "description": "The slug value.",
                "type": "string"
              },
              "title": {
                "description": "The title value.",
                "type": "string"
              },
              "updated_at": {
                "description": "The updated at value.",
                "format": "date-time",
                "type": "string"
              },
              "updated_by": {
                "description": "The updated by value.",
                "nullable": true,
                "type": "integer"
              },
              "workspace_id": {
                "description": "The workspace id value.",
                "type": "integer"
              }
            },
            "required": [
              "content",
              "content_hash",
              "created_at",
              "created_by",
              "depth",
              "excerpt",
              "id",
              "inherit_permissions",
              "is_home",
              "labels",
              "metadata",
              "path",
              "slug",
              "title",
              "updated_at",
              "workspace_id"
            ],
            "type": "object"
          }
        },
        "required": [
          "data"
        ],
        "type": "object"
      },
      "PatchWorkspacesWorkspaceIdPagesPageIdPayload": {
        "additionalProperties": false,
        "properties": {
          "content": {
            "description": "The content value.",
            "nullable": true,
            "type": "string"
          },
          "expected_content_hash": {
            "description": "The expected content hash value.",
            "nullable": true,
            "type": "string"
          },
          "metadata": {
            "description": "The metadata value.",
            "format": "byte",
            "nullable": true,
            "type": "string"
          },
          "title": {
            "description": "The title value.",
            "nullable": true,
            "type": "string"
          }
        },
        "type": "object"
      },
      "PatchWorkspacesWorkspaceIdPagesPageIdResult": {
        "additionalProperties": false,
        "properties": {
          "data": {
            "additionalProperties": false,
            "properties": {
              "archived_at": {
                "description": "The archived at value.",
                "format": "date-time",
                "nullable": true,
                "type": "string"
              },
              "archived_by": {
                "description": "The archived by value.",
                "nullable": true,
                "type": "integer"
              },
              "content": {
                "description": "The content value.",
                "type": "string"
              },
              "content_hash": {
                "description": "The content hash value.",
                "type": "string"
              },
              "created_at": {
                "description": "The created at value.",
                "format": "date-time",
                "type": "string"
              },
              "created_by": {
                "description": "The created by value.",
                "type": "integer"
              },
              "depth": {
                "description": "The depth value.",
                "type": "integer"
              },
              "excerpt": {
                "description": "The excerpt value.",
                "type": "string"
              },
              "frac_index": {
                "description": "The frac index value.",
                "nullable": true,
                "type": "string"
              },
              "id": {
                "description": "The id value.",
                "type": "integer"
              },
              "inherit_permissions": {
                "description": "The inherit permissions value.",
                "type": "boolean"
              },
              "is_home": {
                "description": "The is home value.",
                "type": "boolean"
              },
              "labels": {
                "description": "The labels value.",
                "items": {
                  "additionalProperties": false,
                  "properties": {
                    "color": {
                      "description": "The color value.",
                      "type": "string"
                    },
                    "created_at": {
                      "description": "The created at value.",
                      "format": "date-time",
                      "type": "string"
                    },
                    "id": {
                      "description": "The id value.",
                      "type": "integer"
                    },
                    "name": {
                      "description": "The name value.",
                      "type": "string"
                    },
                    "updated_at": {
                      "description": "The updated at value.",
                      "format": "date-time",
                      "type": "string"
                    },
                    "workspace_id": {
                      "description": "The workspace id value.",
                      "type": "integer"
                    }
                  },
                  "required": [
                    "color",
                    "created_at",
                    "id",
                    "name",
                    "updated_at",
                    "workspace_id"
                  ],
                  "type": "object"
                },
                "type": "array"
              },
              "metadata": {
                "description": "The metadata value.",
                "format": "byte",
                "type": "string"
              },
              "parent_id": {
                "description": "The parent id value.",
                "nullable": true,
                "type": "integer"
              },
              "path": {
                "description": "The path value.",
                "type": "string"
              },
              "rank": {
                "description": "The rank value.",
                "nullable": true,
                "type": "string"
              },
              "slug": {
                "description": "The slug value.",
                "type": "string"
              },
              "title": {
                "description": "The title value.",
                "type": "string"
              },
              "updated_at": {
                "description": "The updated at value.",
                "format": "date-time",
                "type": "string"
              },
              "updated_by": {
                "description": "The updated by value.",
                "nullable": true,
                "type": "integer"
              },
              "workspace_id": {
                "description": "The workspace id value.",
                "type": "integer"
              }
            },
            "required": [
              "content",
              "content_hash",
              "created_at",
              "created_by",
              "depth",
              "excerpt",
              "id",
              "inherit_permissions",
              "is_home",
              "labels",
              "metadata",
              "path",
              "slug",
              "title",
              "updated_at",
              "workspace_id"
            ],
            "type": "object"
          }
        },
        "required": [
          "data"
        ],
        "type": "object"
      },
      "PatchWorkspacesWorkspaceIdPayload": {
        "additionalProperties": false,
        "properties": {
          "active": {
            "description": "The active value.",
            "nullable": true,
            "type": "boolean"
          },
          "avatar_url": {
            "description": "The avatar url value.",
            "nullable": true,
            "type": "string"
          },
          "color": {
            "description": "The color value.",
            "nullable": true,
            "type": "string"
          },
          "default_view": {
            "description": "The default view value.",
            "nullable": true,
            "type": "string"
          },
          "description": {
            "description": "The description value.",
            "nullable": true,
            "type": "string"
          },
          "icon": {
            "description": "The icon value.",
            "nullable": true,
            "type": "string"
          },
          "internal_comments_enabled": {
            "description": "The internal comments enabled value.",
            "nullable": true,
            "type": "boolean"
          },
          "is_personal": {
            "description": "The is personal value.",
            "nullable": true,
            "type": "boolean"
          },
          "is_template": {
            "description": "The is template value.",
            "nullable": true,
            "type": "boolean"
          },
          "key": {
            "description": "The key value.",
            "nullable": true,
            "type": "string"
          },
          "name": {
            "description": "The name value.",
            "nullable": true,
            "type": "string"
          },
          "owner_id": {
            "description": "The owner id value.",
            "nullable": true,
            "type": "integer"
          },
          "time_project_categories": {
            "description": "The time project categories value.",
            "items": {
              "type": "integer"
            },
            "nullable": true,
            "type": "array"
          },
          "time_project_id": {
            "description": "The time project id value.",
            "nullable": true,
            "type": "integer"
          }
        },
        "type": "object"
      },
      "PatchWorkspacesWorkspaceIdResult": {
        "additionalProperties": false,
        "properties": {
          "data": {
            "additionalProperties": false,
            "properties": {
              "active": {
                "description": "The active value.",
                "type": "boolean"
              },
              "avatar_url": {
                "description": "The avatar url value.",
                "nullable": true,
                "type": "string"
              },
              "color": {
                "description": "The color value.",
                "type": "string"
              },
              "configuration_set_id": {
                "description": "The configuration set id value.",
                "nullable": true,
                "type": "integer"
              },
              "created_at": {
                "description": "The created at value.",
                "type": "string"
              },
              "default_view": {
                "description": "The default view value.",
                "type": "string"
              },
              "description": {
                "description": "The description value.",
                "type": "string"
              },
              "icon": {
                "description": "The icon value.",
                "type": "string"
              },
              "id": {
                "description": "The id value.",
                "type": "integer"
              },
              "internal_comments_enabled": {
                "description": "The internal comments enabled value.",
                "type": "boolean"
              },
              "is_personal": {
                "description": "The is personal value.",
                "type": "boolean"
              },
              "is_template": {
                "description": "The is template value.",
                "type": "boolean"
              },
              "key": {
                "description": "The key value.",
                "type": "string"
              },
              "name": {
                "description": "The name value.",
                "type": "string"
              },
              "owner_id": {
                "description": "The owner id value.",
                "nullable": true,
                "type": "integer"
              },
              "time_project_categories": {
                "description": "The time project categories value.",
                "items": {
                  "type": "integer"
                },
                "type": "array"
              },
              "time_project_id": {
                "description": "The time project id value.",
                "nullable": true,
                "type": "integer"
              },
              "time_project_name": {
                "description": "The time project name value.",
                "type": "string"
              },
              "updated_at": {
                "description": "The updated at value.",
                "type": "string"
              }
            },
            "required": [
              "active",
              "color",
              "created_at",
              "default_view",
              "description",
              "icon",
              "id",
              "internal_comments_enabled",
              "is_personal",
              "is_template",
              "key",
              "name",
              "time_project_categories",
              "time_project_name",
              "updated_at"
            ],
            "type": "object"
          }
        },
        "required": [
          "data"
        ],
        "type": "object"
      },
      "PatchWorkspacesWorkspaceIdTestCasesTestCaseIdPayload": {
        "additionalProperties": false,
        "properties": {
          "estimated_duration": {
            "description": "The estimated duration value.",
            "nullable": true,
            "type": "integer"
          },
          "folder_id": {
            "description": "The folder id value.",
            "nullable": true,
            "type": "integer"
          },
          "preconditions": {
            "description": "The preconditions value.",
            "nullable": true,
            "type": "string"
          },
          "priority": {
            "description": "The priority value.",
            "nullable": true,
            "type": "string"
          },
          "sort_order": {
            "description": "The sort order value.",
            "nullable": true,
            "type": "integer"
          },
          "status": {
            "description": "The status value.",
            "nullable": true,
            "type": "string"
          },
          "title": {
            "description": "The title value.",
            "nullable": true,
            "type": "string"
          }
        },
        "type": "object"
      },
      "PatchWorkspacesWorkspaceIdTestCasesTestCaseIdResult": {
        "additionalProperties": false,
        "properties": {
          "data": {
            "additionalProperties": false,
            "nullable": true,
            "properties": {
              "created_at": {
                "description": "The created at value.",
                "format": "date-time",
                "type": "string"
              },
              "estimated_duration": {
                "description": "The estimated duration value.",
                "type": "integer"
              },
              "folder_id": {
                "description": "The folder id value.",
                "nullable": true,
                "type": "integer"
              },
              "folder_name": {
                "description": "The folder name value.",
                "type": "string"
              },
              "id": {
                "description": "The id value.",
                "type": "integer"
              },
              "labels": {
                "description": "The labels value.",
                "items": {
                  "additionalProperties": false,
                  "properties": {
                    "color": {
                      "description": "The color value.",
                      "type": "string"
                    },
                    "created_at": {
                      "description": "The created at value.",
                      "format": "date-time",
                      "type": "string"
                    },
                    "description": {
                      "description": "The description value.",
                      "type": "string"
                    },
                    "id": {
                      "description": "The id value.",
                      "type": "integer"
                    },
                    "name": {
                      "description": "The name value.",
                      "type": "string"
                    },
                    "updated_at": {
                      "description": "The updated at value.",
                      "format": "date-time",
                      "type": "string"
                    },
                    "workspace_id": {
                      "description": "The workspace id value.",
                      "type": "integer"
                    }
                  },
                  "required": [
                    "color",
                    "created_at",
                    "description",
                    "id",
                    "name",
                    "updated_at",
                    "workspace_id"
                  ],
                  "type": "object"
                },
                "type": "array"
              },
              "name": {
                "description": "The name value.",
                "type": "string"
              },
              "preconditions": {
                "description": "The preconditions value.",
                "type": "string"
              },
              "priority": {
                "description": "The priority value.",
                "type": "string"
              },
              "sort_order": {
                "description": "The sort order value.",
                "type": "integer"
              },
              "status": {
                "description": "The status value.",
                "type": "string"
              },
              "test_steps": {
                "description": "The test steps value.",
                "items": {
                  "additionalProperties": false,
                  "properties": {
                    "action": {
                      "description": "The action value.",
                      "type": "string"
                    },
                    "created_at": {
                      "description": "The created at value.",
                      "format": "date-time",
                      "type": "string"
                    },
                    "data": {
                      "description": "The data value.",
                      "type": "string"
                    },
                    "expected": {
                      "description": "The expected value.",
                      "type": "string"
                    },
                    "id": {
                      "description": "The id value.",
                      "type": "integer"
                    },
                    "step_number": {
                      "description": "The step number value.",
                      "type": "integer"
                    },
                    "test_case_id": {
                      "description": "The test case id value.",
                      "type": "integer"
                    },
                    "updated_at": {
                      "description": "The updated at value.",
                      "format": "date-time",
                      "type": "string"
                    }
                  },
                  "required": [
                    "action",
                    "created_at",
                    "data",
                    "expected",
                    "id",
                    "step_number",
                    "test_case_id",
                    "updated_at"
                  ],
                  "type": "object"
                },
                "type": "array"
              },
              "title": {
                "description": "The title value.",
                "type": "string"
              },
              "updated_at": {
                "description": "The updated at value.",
                "format": "date-time",
                "type": "string"
              },
              "workspace_id": {
                "description": "The workspace id value.",
                "type": "integer"
              }
            },
            "required": [
              "created_at",
              "estimated_duration",
              "id",
              "name",
              "preconditions",
              "priority",
              "sort_order",
              "status",
              "title",
              "updated_at",
              "workspace_id"
            ],
            "type": "object"
          }
        },
        "required": [
          "data"
        ],
        "type": "object"
      },
      "PatchWorkspacesWorkspaceIdTestCasesTestCaseIdStepsStepIdPayload": {
        "additionalProperties": false,
        "properties": {
          "action": {
            "description": "The action value.",
            "nullable": true,
            "type": "string"
          },
          "data": {
            "description": "The data value.",
            "nullable": true,
            "type": "string"
          },
          "expected": {
            "description": "The expected value.",
            "nullable": true,
            "type": "string"
          }
        },
        "type": "object"
      },
      "PatchWorkspacesWorkspaceIdTestCasesTestCaseIdStepsStepIdResult": {
        "additionalProperties": false,
        "properties": {
          "data": {
            "additionalProperties": false,
            "nullable": true,
            "properties": {
              "action": {
                "description": "The action value.",
                "type": "string"
              },
              "created_at": {
                "description": "The created at value.",
                "format": "date-time",
                "type": "string"
              },
              "data": {
                "description": "The data value.",
                "type": "string"
              },
              "expected": {
                "description": "The expected value.",
                "type": "string"
              },
              "id": {
                "description": "The id value.",
                "type": "integer"
              },
              "step_number": {
                "description": "The step number value.",
                "type": "integer"
              },
              "test_case_id": {
                "description": "The test case id value.",
                "type": "integer"
              },
              "updated_at": {
                "description": "The updated at value.",
                "format": "date-time",
                "type": "string"
              }
            },
            "required": [
              "action",
              "created_at",
              "data",
              "expected",
              "id",
              "step_number",
              "test_case_id",
              "updated_at"
            ],
            "type": "object"
          }
        },
        "required": [
          "data"
        ],
        "type": "object"
      },
      "PatchWorkspacesWorkspaceIdTestCoverageConfigConfigIdPayload": {
        "additionalProperties": false,
        "properties": {
          "requirement_item_type_ids": {
            "description": "The requirement item type ids value.",
            "items": {
              "type": "integer"
            },
            "type": "array"
          }
        },
        "required": [
          "requirement_item_type_ids"
        ],
        "type": "object"
      },
      "PatchWorkspacesWorkspaceIdTestCoverageConfigConfigIdResult": {
        "additionalProperties": false,
        "properties": {
          "data": {
            "additionalProperties": false,
            "nullable": true,
            "properties": {
              "collection_id": {
                "description": "The collection id value.",
                "nullable": true,
                "type": "integer"
              },
              "created_at": {
                "description": "The created at value.",
                "format": "date-time",
                "type": "string"
              },
              "id": {
                "description": "The id value.",
                "type": "integer"
              },
              "requirement_item_type_ids": {
                "description": "The requirement item type ids value.",
                "items": {
                  "type": "integer"
                },
                "type": "array"
              },
              "updated_at": {
                "description": "The updated at value.",
                "format": "date-time",
                "type": "string"
              },
              "workspace_id": {
                "description": "The workspace id value.",
                "nullable": true,
                "type": "integer"
              }
            },
            "required": [
              "created_at",
              "id",
              "requirement_item_type_ids",
              "updated_at"
            ],
            "type": "object"
          }
        },
        "required": [
          "data"
        ],
        "type": "object"
      },
      "PatchWorkspacesWorkspaceIdTestFoldersFolderIdPayload": {
        "additionalProperties": false,
        "properties": {
          "description": {
            "description": "The description value.",
            "nullable": true,
            "type": "string"
          },
          "name": {
            "description": "The name value.",
            "nullable": true,
            "type": "string"
          },
          "parent_id": {
            "description": "The parent id value.",
            "nullable": true,
            "type": "integer"
          },
          "sort_order": {
            "description": "The sort order value.",
            "nullable": true,
            "type": "integer"
          }
        },
        "type": "object"
      },
      "PatchWorkspacesWorkspaceIdTestFoldersFolderIdResult": {
        "additionalProperties": false,
        "properties": {
          "data": {
            "additionalProperties": false,
            "nullable": true,
            "properties": {
              "created_at": {
                "description": "The created at value.",
                "format": "date-time",
                "type": "string"
              },
              "description": {
                "description": "The description value.",
                "type": "string"
              },
              "id": {
                "description": "The id value.",
                "type": "integer"
              },
              "name": {
                "description": "The name value.",
                "type": "string"
              },
              "parent_id": {
                "description": "The parent id value.",
                "nullable": true,
                "type": "integer"
              },
              "sort_order": {
                "description": "The sort order value.",
                "type": "integer"
              },
              "test_case_count": {
                "description": "The test case count value.",
                "type": "integer"
              },
              "updated_at": {
                "description": "The updated at value.",
                "format": "date-time",
                "type": "string"
              },
              "workspace_id": {
                "description": "The workspace id value.",
                "type": "integer"
              }
            },
            "required": [
              "created_at",
              "description",
              "id",
              "name",
              "sort_order",
              "updated_at",
              "workspace_id"
            ],
            "type": "object"
          }
        },
        "required": [
          "data"
        ],
        "type": "object"
      },
      "PatchWorkspacesWorkspaceIdTestLabelsLabelIdPayload": {
        "additionalProperties": false,
        "properties": {
          "color": {
            "description": "The color value.",
            "nullable": true,
            "type": "string"
          },
          "description": {
            "description": "The description value.",
            "nullable": true,
            "type": "string"
          },
          "name": {
            "description": "The name value.",
            "nullable": true,
            "type": "string"
          }
        },
        "type": "object"
      },
      "PatchWorkspacesWorkspaceIdTestLabelsLabelIdResult": {
        "additionalProperties": false,
        "properties": {
          "data": {
            "additionalProperties": false,
            "nullable": true,
            "properties": {
              "color": {
                "description": "The color value.",
                "type": "string"
              },
              "created_at": {
                "description": "The created at value.",
                "format": "date-time",
                "type": "string"
              },
              "description": {
                "description": "The description value.",
                "type": "string"
              },
              "id": {
                "description": "The id value.",
                "type": "integer"
              },
              "name": {
                "description": "The name value.",
                "type": "string"
              },
              "updated_at": {
                "description": "The updated at value.",
                "format": "date-time",
                "type": "string"
              },
              "workspace_id": {
                "description": "The workspace id value.",
                "type": "integer"
              }
            },
            "required": [
              "color",
              "created_at",
              "description",
              "id",
              "name",
              "updated_at",
              "workspace_id"
            ],
            "type": "object"
          }
        },
        "required": [
          "data"
        ],
        "type": "object"
      },
      "PatchWorkspacesWorkspaceIdTestPlansPlanIdPayload": {
        "additionalProperties": false,
        "properties": {
          "description": {
            "description": "The description value.",
            "nullable": true,
            "type": "string"
          },
          "milestone_id": {
            "description": "The milestone id value.",
            "nullable": true,
            "type": "integer"
          },
          "name": {
            "description": "The name value.",
            "nullable": true,
            "type": "string"
          }
        },
        "type": "object"
      },
      "PatchWorkspacesWorkspaceIdTestPlansPlanIdResult": {
        "additionalProperties": false,
        "properties": {
          "data": {
            "additionalProperties": false,
            "nullable": true,
            "properties": {
              "created_at": {
                "description": "The created at value.",
                "format": "date-time",
                "type": "string"
              },
              "description": {
                "description": "The description value.",
                "type": "string"
              },
              "failed_runs": {
                "description": "The failed runs value.",
                "type": "integer"
              },
              "id": {
                "description": "The id value.",
                "type": "integer"
              },
              "last_run_date": {
                "description": "The last run date value.",
                "format": "date-time",
                "nullable": true,
                "type": "string"
              },
              "last_run_status": {
                "description": "The last run status value.",
                "type": "string"
              },
              "milestone_id": {
                "description": "The milestone id value.",
                "nullable": true,
                "type": "integer"
              },
              "milestone_name": {
                "description": "The milestone name value.",
                "type": "string"
              },
              "name": {
                "description": "The name value.",
                "type": "string"
              },
              "successful_runs": {
                "description": "The successful runs value.",
                "type": "integer"
              },
              "test_case_count": {
                "description": "The test case count value.",
                "type": "integer"
              },
              "total_runs": {
                "description": "The total runs value.",
                "type": "integer"
              },
              "updated_at": {
                "description": "The updated at value.",
                "format": "date-time",
                "type": "string"
              },
              "workspace_id": {
                "description": "The workspace id value.",
                "type": "integer"
              }
            },
            "required": [
              "created_at",
              "description",
              "id",
              "name",
              "updated_at",
              "workspace_id"
            ],
            "type": "object"
          }
        },
        "required": [
          "data"
        ],
        "type": "object"
      },
      "PatchWorkspacesWorkspaceIdTestRunTemplatesTemplateIdPayload": {
        "additionalProperties": false,
        "properties": {
          "description": {
            "description": "The description value.",
            "nullable": true,
            "type": "string"
          },
          "name": {
            "description": "The name value.",
            "nullable": true,
            "type": "string"
          },
          "plan_id": {
            "description": "The plan id value.",
            "nullable": true,
            "type": "integer"
          }
        },
        "type": "object"
      },
      "PatchWorkspacesWorkspaceIdTestRunTemplatesTemplateIdResult": {
        "additionalProperties": false,
        "properties": {
          "data": {
            "additionalProperties": false,
            "nullable": true,
            "properties": {
              "created_at": {
                "description": "The created at value.",
                "format": "date-time",
                "type": "string"
              },
              "description": {
                "description": "The description value.",
                "type": "string"
              },
              "id": {
                "description": "The id value.",
                "type": "integer"
              },
              "name": {
                "description": "The name value.",
                "type": "string"
              },
              "plan_id": {
                "description": "The plan id value.",
                "type": "integer"
              },
              "plan_name": {
                "description": "The plan name value.",
                "type": "string"
              },
              "updated_at": {
                "description": "The updated at value.",
                "format": "date-time",
                "type": "string"
              },
              "workspace_id": {
                "description": "The workspace id value.",
                "type": "integer"
              }
            },
            "required": [
              "created_at",
              "description",
              "id",
              "name",
              "plan_id",
              "updated_at",
              "workspace_id"
            ],
            "type": "object"
          }
        },
        "required": [
          "data"
        ],
        "type": "object"
      },
      "PatchWorkspacesWorkspaceIdTestRunsRunIdPayload": {
        "additionalProperties": false,
        "properties": {
          "assignee_id": {
            "description": "The assignee id value.",
            "nullable": true,
            "type": "integer"
          },
          "name": {
            "description": "The name value.",
            "nullable": true,
            "type": "string"
          }
        },
        "type": "object"
      },
      "PatchWorkspacesWorkspaceIdTestRunsRunIdResult": {
        "additionalProperties": false,
        "properties": {
          "data": {
            "additionalProperties": false,
            "nullable": true,
            "properties": {
              "assignee_avatar": {
                "description": "The assignee avatar value.",
                "type": "string"
              },
              "assignee_email": {
                "description": "The assignee email value.",
                "type": "string"
              },
              "assignee_id": {
                "description": "The assignee id value.",
                "nullable": true,
                "type": "integer"
              },
              "assignee_name": {
                "description": "The assignee name value.",
                "type": "string"
              },
              "created_at": {
                "description": "The created at value.",
                "format": "date-time",
                "type": "string"
              },
              "ended_at": {
                "description": "The ended at value.",
                "format": "date-time",
                "nullable": true,
                "type": "string"
              },
              "id": {
                "description": "The id value.",
                "type": "integer"
              },
              "name": {
                "description": "The name value.",
                "type": "string"
              },
              "plan_id": {
                "description": "The plan id value.",
                "type": "integer"
              },
              "started_at": {
                "description": "The started at value.",
                "format": "date-time",
                "type": "string"
              },
              "template_id": {
                "description": "The template id value.",
                "type": "integer"
              },
              "workspace_id": {
                "description": "The workspace id value.",
                "type": "integer"
              }
            },
            "required": [
              "created_at",
              "id",
              "name",
              "plan_id",
              "started_at",
              "workspace_id"
            ],
            "type": "object"
          }
        },
        "required": [
          "data"
        ],
        "type": "object"
      },
      "PatchWorkspacesWorkspaceIdTestRunsRunIdResultsResultIdPayload": {
        "additionalProperties": false,
        "properties": {
          "actual_result": {
            "description": "The actual result value.",
            "type": "string"
          },
          "notes": {
            "description": "The notes value.",
            "type": "string"
          },
          "status": {
            "description": "The status value.",
            "type": "string"
          }
        },
        "required": [
          "actual_result",
          "notes",
          "status"
        ],
        "type": "object"
      },
      "PatchWorkspacesWorkspaceIdTestRunsRunIdResultsResultIdResult": {
        "additionalProperties": false,
        "properties": {
          "data": {
            "additionalProperties": false,
            "nullable": true,
            "properties": {
              "actual_result": {
                "description": "The actual result value.",
                "type": "string"
              },
              "created_at": {
                "description": "The created at value.",
                "format": "date-time",
                "type": "string"
              },
              "executed_at": {
                "description": "The executed at value.",
                "format": "date-time",
                "nullable": true,
                "type": "string"
              },
              "id": {
                "description": "The id value.",
                "type": "integer"
              },
              "notes": {
                "description": "The notes value.",
                "type": "string"
              },
              "run_id": {
                "description": "The run id value.",
                "type": "integer"
              },
              "status": {
                "description": "The status value.",
                "type": "string"
              },
              "test_case_id": {
                "description": "The test case id value.",
                "type": "integer"
              },
              "updated_at": {
                "description": "The updated at value.",
                "format": "date-time",
                "type": "string"
              }
            },
            "required": [
              "actual_result",
              "created_at",
              "id",
              "notes",
              "run_id",
              "status",
              "test_case_id",
              "updated_at"
            ],
            "type": "object"
          }
        },
        "required": [
          "data"
        ],
        "type": "object"
      },
      "PatchWorkspacesWorkspaceIdTestRunsRunIdStepsStepIdPayload": {
        "additionalProperties": false,
        "properties": {
          "actual_result": {
            "description": "The actual result value.",
            "type": "string"
          },
          "item_id": {
            "description": "The item id value.",
            "nullable": true,
            "type": "integer"
          },
          "notes": {
            "description": "The notes value.",
            "type": "string"
          },
          "status": {
            "description": "The status value.",
            "type": "string"
          }
        },
        "required": [
          "actual_result",
          "notes",
          "status"
        ],
        "type": "object"
      },
      "PatchWorkspacesWorkspaceIdTestRunsRunIdStepsStepIdResult": {
        "additionalProperties": false,
        "properties": {
          "data": {
            "additionalProperties": false,
            "properties": {
              "updated": {
                "description": "The updated value.",
                "type": "boolean"
              }
            },
            "required": [
              "updated"
            ],
            "type": "object"
          }
        },
        "required": [
          "data"
        ],
        "type": "object"
      },
      "PendingApprovalSummary": {
        "additionalProperties": false,
        "properties": {
          "id": {
            "description": "Pending approval request identifier.",
            "minimum": 1,
            "type": "integer"
          },
          "status": {
            "description": "Current approval status.",
            "type": "string"
          },
          "you_can_decide": {
            "description": "Whether the authenticated user can decide this approval.",
            "type": "boolean"
          }
        },
        "required": [
          "id",
          "status",
          "you_can_decide"
        ],
        "type": "object"
      },
      "PersonalLabel": {
        "additionalProperties": false,
        "description": "A user-owned label attached to a personal task.",
        "properties": {
          "color": {
            "description": "Display color.",
            "type": "string"
          },
          "created_at": {
            "description": "Creation timestamp.",
            "format": "date-time",
            "type": "string"
          },
          "id": {
            "description": "Label identifier.",
            "minimum": 1,
            "type": "integer"
          },
          "name": {
            "description": "Label name.",
            "type": "string"
          },
          "updated_at": {
            "description": "Last update timestamp.",
            "format": "date-time",
            "type": "string"
          },
          "user_id": {
            "description": "Owning user; null for a global personal label.",
            "minimum": 1,
            "nullable": true,
            "type": "integer"
          }
        },
        "required": [
          "id",
          "name",
          "color",
          "created_at",
          "updated_at"
        ],
        "type": "object"
      },
      "PostAgentRunsRunIdCancelResult": {
        "additionalProperties": false,
        "properties": {
          "data": {
            "additionalProperties": false,
            "properties": {
              "already_done": {
                "description": "The already done value.",
                "type": "boolean"
              },
              "canceled": {
                "description": "The canceled value.",
                "type": "boolean"
              },
              "forced": {
                "description": "The forced value.",
                "type": "boolean"
              },
              "remote": {
                "description": "The remote value.",
                "type": "boolean"
              }
            },
            "required": [
              "already_done",
              "canceled",
              "forced",
              "remote"
            ],
            "type": "object"
          }
        },
        "required": [
          "data"
        ],
        "type": "object"
      },
      "PostApprovalSetsPayload": {
        "additionalProperties": false,
        "properties": {
          "created_at": {
            "description": "The created at value.",
            "format": "date-time",
            "type": "string"
          },
          "description": {
            "description": "The description value.",
            "type": "string"
          },
          "gated_statuses": {
            "description": "The gated statuses value.",
            "items": {
              "additionalProperties": false,
              "properties": {
                "category_color": {
                  "description": "The category color value.",
                  "type": "string"
                },
                "status_id": {
                  "description": "The status id value.",
                  "type": "integer"
                },
                "status_name": {
                  "description": "The status name value.",
                  "type": "string"
                }
              },
              "required": [
                "status_id",
                "status_name"
              ],
              "type": "object"
            },
            "type": "array"
          },
          "id": {
            "description": "The id value.",
            "type": "integer"
          },
          "name": {
            "description": "The name value.",
            "type": "string"
          },
          "set_statuses": {
            "description": "The set statuses value.",
            "items": {
              "additionalProperties": false,
              "properties": {
                "approval_set_id": {
                  "description": "The approval set id value.",
                  "type": "integer"
                },
                "approve_transition_id": {
                  "description": "The approve transition id value.",
                  "type": "integer"
                },
                "created_at": {
                  "description": "The created at value.",
                  "format": "date-time",
                  "type": "string"
                },
                "deny_transition_id": {
                  "description": "The deny transition id value.",
                  "type": "integer"
                },
                "id": {
                  "description": "The id value.",
                  "type": "integer"
                },
                "status_id": {
                  "description": "The status id value.",
                  "type": "integer"
                },
                "status_name": {
                  "description": "The status name value.",
                  "type": "string"
                },
                "step_mode": {
                  "description": "The step mode value.",
                  "type": "string"
                },
                "steps": {
                  "description": "The steps value.",
                  "items": {
                    "additionalProperties": false,
                    "properties": {
                      "allow_self_approval": {
                        "description": "The allow self approval value.",
                        "type": "boolean"
                      },
                      "approval_set_status_id": {
                        "description": "The approval set status id value.",
                        "type": "integer"
                      },
                      "approver_field_id": {
                        "description": "The approver field id value.",
                        "nullable": true,
                        "type": "integer"
                      },
                      "approver_field_identifier": {
                        "description": "The approver field identifier value.",
                        "type": "string"
                      },
                      "approver_group_id": {
                        "description": "The approver group id value.",
                        "nullable": true,
                        "type": "integer"
                      },
                      "approver_role_id": {
                        "description": "The approver role id value.",
                        "nullable": true,
                        "type": "integer"
                      },
                      "approver_source": {
                        "description": "The approver source value.",
                        "type": "string"
                      },
                      "approver_user_id": {
                        "description": "The approver user id value.",
                        "nullable": true,
                        "type": "integer"
                      },
                      "created_at": {
                        "description": "The created at value.",
                        "format": "date-time",
                        "type": "string"
                      },
                      "display_order": {
                        "description": "The display order value.",
                        "type": "integer"
                      },
                      "escalation_action": {
                        "description": "The escalation action value.",
                        "type": "string"
                      },
                      "escalation_after_hours": {
                        "description": "The escalation after hours value.",
                        "nullable": true,
                        "type": "integer"
                      },
                      "escalation_target_field_id": {
                        "description": "The escalation target field id value.",
                        "nullable": true,
                        "type": "integer"
                      },
                      "escalation_target_field_identifier": {
                        "description": "The escalation target field identifier value.",
                        "type": "string"
                      },
                      "escalation_target_group_id": {
                        "description": "The escalation target group id value.",
                        "nullable": true,
                        "type": "integer"
                      },
                      "escalation_target_role_id": {
                        "description": "The escalation target role id value.",
                        "nullable": true,
                        "type": "integer"
                      },
                      "escalation_target_source": {
                        "description": "The escalation target source value.",
                        "type": "string"
                      },
                      "escalation_target_user_id": {
                        "description": "The escalation target user id value.",
                        "nullable": true,
                        "type": "integer"
                      },
                      "id": {
                        "description": "The id value.",
                        "type": "integer"
                      },
                      "max_escalations": {
                        "description": "The max escalations value.",
                        "nullable": true,
                        "type": "integer"
                      },
                      "name": {
                        "description": "The name value.",
                        "type": "string"
                      },
                      "on_leave_strategy": {
                        "description": "The on leave strategy value.",
                        "type": "string"
                      },
                      "quorum_count": {
                        "description": "The quorum count value.",
                        "nullable": true,
                        "type": "integer"
                      },
                      "quorum_mode": {
                        "description": "The quorum mode value.",
                        "type": "string"
                      },
                      "quorum_percent": {
                        "description": "The quorum percent value.",
                        "nullable": true,
                        "type": "integer"
                      },
                      "rejection_policy": {
                        "description": "The rejection policy value.",
                        "type": "string"
                      }
                    },
                    "required": [
                      "allow_self_approval",
                      "approval_set_status_id",
                      "approver_source",
                      "created_at",
                      "display_order",
                      "id",
                      "name",
                      "on_leave_strategy",
                      "quorum_mode",
                      "rejection_policy"
                    ],
                    "type": "object"
                  },
                  "type": "array"
                }
              },
              "required": [
                "approval_set_id",
                "approve_transition_id",
                "created_at",
                "deny_transition_id",
                "id",
                "status_id",
                "step_mode"
              ],
              "type": "object"
            },
            "type": "array"
          },
          "updated_at": {
            "description": "The updated at value.",
            "format": "date-time",
            "type": "string"
          },
          "workflow_id": {
            "description": "The workflow id value.",
            "type": "integer"
          },
          "workflow_name": {
            "description": "The workflow name value.",
            "type": "string"
          }
        },
        "required": [
          "created_at",
          "description",
          "id",
          "name",
          "updated_at",
          "workflow_id"
        ],
        "type": "object"
      },
      "PostApprovalSetsResult": {
        "additionalProperties": false,
        "properties": {
          "data": {
            "additionalProperties": false,
            "properties": {
              "created_at": {
                "description": "The created at value.",
                "format": "date-time",
                "type": "string"
              },
              "description": {
                "description": "The description value.",
                "type": "string"
              },
              "gated_statuses": {
                "description": "The gated statuses value.",
                "items": {
                  "additionalProperties": false,
                  "properties": {
                    "category_color": {
                      "description": "The category color value.",
                      "type": "string"
                    },
                    "status_id": {
                      "description": "The status id value.",
                      "type": "integer"
                    },
                    "status_name": {
                      "description": "The status name value.",
                      "type": "string"
                    }
                  },
                  "required": [
                    "status_id",
                    "status_name"
                  ],
                  "type": "object"
                },
                "type": "array"
              },
              "id": {
                "description": "The id value.",
                "type": "integer"
              },
              "name": {
                "description": "The name value.",
                "type": "string"
              },
              "set_statuses": {
                "description": "The set statuses value.",
                "items": {
                  "additionalProperties": false,
                  "properties": {
                    "approval_set_id": {
                      "description": "The approval set id value.",
                      "type": "integer"
                    },
                    "approve_transition_id": {
                      "description": "The approve transition id value.",
                      "type": "integer"
                    },
                    "created_at": {
                      "description": "The created at value.",
                      "format": "date-time",
                      "type": "string"
                    },
                    "deny_transition_id": {
                      "description": "The deny transition id value.",
                      "type": "integer"
                    },
                    "id": {
                      "description": "The id value.",
                      "type": "integer"
                    },
                    "status_id": {
                      "description": "The status id value.",
                      "type": "integer"
                    },
                    "status_name": {
                      "description": "The status name value.",
                      "type": "string"
                    },
                    "step_mode": {
                      "description": "The step mode value.",
                      "type": "string"
                    },
                    "steps": {
                      "description": "The steps value.",
                      "items": {
                        "additionalProperties": false,
                        "properties": {
                          "allow_self_approval": {
                            "description": "The allow self approval value.",
                            "type": "boolean"
                          },
                          "approval_set_status_id": {
                            "description": "The approval set status id value.",
                            "type": "integer"
                          },
                          "approver_field_id": {
                            "description": "The approver field id value.",
                            "nullable": true,
                            "type": "integer"
                          },
                          "approver_field_identifier": {
                            "description": "The approver field identifier value.",
                            "type": "string"
                          },
                          "approver_group_id": {
                            "description": "The approver group id value.",
                            "nullable": true,
                            "type": "integer"
                          },
                          "approver_role_id": {
                            "description": "The approver role id value.",
                            "nullable": true,
                            "type": "integer"
                          },
                          "approver_source": {
                            "description": "The approver source value.",
                            "type": "string"
                          },
                          "approver_user_id": {
                            "description": "The approver user id value.",
                            "nullable": true,
                            "type": "integer"
                          },
                          "created_at": {
                            "description": "The created at value.",
                            "format": "date-time",
                            "type": "string"
                          },
                          "display_order": {
                            "description": "The display order value.",
                            "type": "integer"
                          },
                          "escalation_action": {
                            "description": "The escalation action value.",
                            "type": "string"
                          },
                          "escalation_after_hours": {
                            "description": "The escalation after hours value.",
                            "nullable": true,
                            "type": "integer"
                          },
                          "escalation_target_field_id": {
                            "description": "The escalation target field id value.",
                            "nullable": true,
                            "type": "integer"
                          },
                          "escalation_target_field_identifier": {
                            "description": "The escalation target field identifier value.",
                            "type": "string"
                          },
                          "escalation_target_group_id": {
                            "description": "The escalation target group id value.",
                            "nullable": true,
                            "type": "integer"
                          },
                          "escalation_target_role_id": {
                            "description": "The escalation target role id value.",
                            "nullable": true,
                            "type": "integer"
                          },
                          "escalation_target_source": {
                            "description": "The escalation target source value.",
                            "type": "string"
                          },
                          "escalation_target_user_id": {
                            "description": "The escalation target user id value.",
                            "nullable": true,
                            "type": "integer"
                          },
                          "id": {
                            "description": "The id value.",
                            "type": "integer"
                          },
                          "max_escalations": {
                            "description": "The max escalations value.",
                            "nullable": true,
                            "type": "integer"
                          },
                          "name": {
                            "description": "The name value.",
                            "type": "string"
                          },
                          "on_leave_strategy": {
                            "description": "The on leave strategy value.",
                            "type": "string"
                          },
                          "quorum_count": {
                            "description": "The quorum count value.",
                            "nullable": true,
                            "type": "integer"
                          },
                          "quorum_mode": {
                            "description": "The quorum mode value.",
                            "type": "string"
                          },
                          "quorum_percent": {
                            "description": "The quorum percent value.",
                            "nullable": true,
                            "type": "integer"
                          },
                          "rejection_policy": {
                            "description": "The rejection policy value.",
                            "type": "string"
                          }
                        },
                        "required": [
                          "allow_self_approval",
                          "approval_set_status_id",
                          "approver_source",
                          "created_at",
                          "display_order",
                          "id",
                          "name",
                          "on_leave_strategy",
                          "quorum_mode",
                          "rejection_policy"
                        ],
                        "type": "object"
                      },
                      "type": "array"
                    }
                  },
                  "required": [
                    "approval_set_id",
                    "approve_transition_id",
                    "created_at",
                    "deny_transition_id",
                    "id",
                    "status_id",
                    "step_mode"
                  ],
                  "type": "object"
                },
                "type": "array"
              },
              "updated_at": {
                "description": "The updated at value.",
                "format": "date-time",
                "type": "string"
              },
              "workflow_id": {
                "description": "The workflow id value.",
                "type": "integer"
              },
              "workflow_name": {
                "description": "The workflow name value.",
                "type": "string"
              }
            },
            "required": [
              "created_at",
              "description",
              "id",
              "name",
              "updated_at",
              "workflow_id"
            ],
            "type": "object"
          }
        },
        "required": [
          "data"
        ],
        "type": "object"
      },
      "PostApprovalsApprovalIdCancellationPayload": {
        "additionalProperties": false,
        "properties": {
          "comment": {
            "description": "The comment value.",
            "type": "string"
          }
        },
        "required": [
          "comment"
        ],
        "type": "object"
      },
      "PostApprovalsApprovalIdCancellationResult": {
        "additionalProperties": false,
        "properties": {
          "data": {
            "additionalProperties": false,
            "properties": {
              "approval_set_status_id": {
                "description": "The approval set status id value.",
                "type": "integer"
              },
              "completed_at": {
                "description": "The completed at value.",
                "format": "date-time",
                "nullable": true,
                "type": "string"
              },
              "created_at": {
                "description": "The created at value.",
                "format": "date-time",
                "type": "string"
              },
              "decisions": {
                "description": "The decisions value.",
                "items": {
                  "additionalProperties": false,
                  "properties": {
                    "actor_portal_customer_id": {
                      "description": "The actor portal customer id value.",
                      "nullable": true,
                      "type": "integer"
                    },
                    "actor_user_id": {
                      "description": "The actor user id value.",
                      "nullable": true,
                      "type": "integer"
                    },
                    "approval_request_id": {
                      "description": "The approval request id value.",
                      "type": "integer"
                    },
                    "approval_step_instance_id": {
                      "description": "The approval step instance id value.",
                      "nullable": true,
                      "type": "integer"
                    },
                    "comment": {
                      "description": "The comment value.",
                      "type": "string"
                    },
                    "created_at": {
                      "description": "The created at value.",
                      "format": "date-time",
                      "type": "string"
                    },
                    "decision": {
                      "description": "The decision value.",
                      "type": "string"
                    },
                    "delegated_to_user_id": {
                      "description": "The delegated to user id value.",
                      "nullable": true,
                      "type": "integer"
                    },
                    "id": {
                      "description": "The id value.",
                      "type": "integer"
                    },
                    "metadata": {
                      "description": "The metadata value.",
                      "format": "byte",
                      "type": "string"
                    }
                  },
                  "required": [
                    "approval_request_id",
                    "created_at",
                    "decision",
                    "id"
                  ],
                  "type": "object"
                },
                "type": "array"
              },
              "from_status_id": {
                "description": "The from status id value.",
                "nullable": true,
                "type": "integer"
              },
              "id": {
                "description": "The id value.",
                "type": "integer"
              },
              "item_id": {
                "description": "The item id value.",
                "type": "integer"
              },
              "status": {
                "description": "The status value.",
                "type": "string"
              },
              "status_id": {
                "description": "The status id value.",
                "type": "integer"
              },
              "step_instances": {
                "description": "The step instances value.",
                "items": {
                  "additionalProperties": false,
                  "properties": {
                    "approval_request_id": {
                      "description": "The approval request id value.",
                      "type": "integer"
                    },
                    "approval_step_id": {
                      "description": "The approval step id value.",
                      "type": "integer"
                    },
                    "approvers": {
                      "description": "The approvers value.",
                      "items": {
                        "additionalProperties": false,
                        "properties": {
                          "approval_step_instance_id": {
                            "description": "The approval step instance id value.",
                            "type": "integer"
                          },
                          "created_at": {
                            "description": "The created at value.",
                            "format": "date-time",
                            "type": "string"
                          },
                          "id": {
                            "description": "The id value.",
                            "type": "integer"
                          },
                          "is_active": {
                            "description": "The is active value.",
                            "type": "boolean"
                          },
                          "portal_customer_id": {
                            "description": "The portal customer id value.",
                            "nullable": true,
                            "type": "integer"
                          },
                          "source_group_id": {
                            "description": "The source group id value.",
                            "nullable": true,
                            "type": "integer"
                          },
                          "source_role_id": {
                            "description": "The source role id value.",
                            "nullable": true,
                            "type": "integer"
                          },
                          "substituted_for_user_id": {
                            "description": "The substituted for user id value.",
                            "nullable": true,
                            "type": "integer"
                          },
                          "user_id": {
                            "description": "The user id value.",
                            "nullable": true,
                            "type": "integer"
                          }
                        },
                        "required": [
                          "approval_step_instance_id",
                          "created_at",
                          "id",
                          "is_active"
                        ],
                        "type": "object"
                      },
                      "type": "array"
                    },
                    "completed_at": {
                      "description": "The completed at value.",
                      "format": "date-time",
                      "nullable": true,
                      "type": "string"
                    },
                    "display_order": {
                      "description": "The display order value.",
                      "type": "integer"
                    },
                    "escalation_count": {
                      "description": "The escalation count value.",
                      "type": "integer"
                    },
                    "escalation_due_at": {
                      "description": "The escalation due at value.",
                      "format": "date-time",
                      "nullable": true,
                      "type": "string"
                    },
                    "id": {
                      "description": "The id value.",
                      "type": "integer"
                    },
                    "last_escalated_at": {
                      "description": "The last escalated at value.",
                      "format": "date-time",
                      "nullable": true,
                      "type": "string"
                    },
                    "started_at": {
                      "description": "The started at value.",
                      "format": "date-time",
                      "nullable": true,
                      "type": "string"
                    },
                    "status": {
                      "description": "The status value.",
                      "type": "string"
                    }
                  },
                  "required": [
                    "approval_request_id",
                    "approval_step_id",
                    "display_order",
                    "escalation_count",
                    "id",
                    "status"
                  ],
                  "type": "object"
                },
                "type": "array"
              },
              "triggered_by_user_id": {
                "description": "The triggered by user id value.",
                "type": "integer"
              },
              "workspace_id": {
                "description": "The workspace id value.",
                "type": "integer"
              }
            },
            "required": [
              "approval_set_status_id",
              "created_at",
              "id",
              "item_id",
              "status",
              "status_id",
              "triggered_by_user_id",
              "workspace_id"
            ],
            "type": "object"
          }
        },
        "required": [
          "data"
        ],
        "type": "object"
      },
      "PostApprovalsApprovalIdDecisionsPayload": {
        "additionalProperties": false,
        "properties": {
          "comment": {
            "description": "The comment value.",
            "type": "string"
          },
          "decision": {
            "description": "The decision value.",
            "type": "string"
          }
        },
        "required": [
          "comment",
          "decision"
        ],
        "type": "object"
      },
      "PostApprovalsApprovalIdDecisionsResult": {
        "additionalProperties": false,
        "properties": {
          "data": {
            "additionalProperties": false,
            "properties": {
              "decision": {
                "additionalProperties": false,
                "description": "The decision value.",
                "nullable": true,
                "properties": {
                  "actor_portal_customer_id": {
                    "description": "The actor portal customer id value.",
                    "nullable": true,
                    "type": "integer"
                  },
                  "actor_user_id": {
                    "description": "The actor user id value.",
                    "nullable": true,
                    "type": "integer"
                  },
                  "approval_request_id": {
                    "description": "The approval request id value.",
                    "type": "integer"
                  },
                  "approval_step_instance_id": {
                    "description": "The approval step instance id value.",
                    "nullable": true,
                    "type": "integer"
                  },
                  "comment": {
                    "description": "The comment value.",
                    "type": "string"
                  },
                  "created_at": {
                    "description": "The created at value.",
                    "format": "date-time",
                    "type": "string"
                  },
                  "decision": {
                    "description": "The decision value.",
                    "type": "string"
                  },
                  "delegated_to_user_id": {
                    "description": "The delegated to user id value.",
                    "nullable": true,
                    "type": "integer"
                  },
                  "id": {
                    "description": "The id value.",
                    "type": "integer"
                  },
                  "metadata": {
                    "description": "The metadata value.",
                    "format": "byte",
                    "type": "string"
                  }
                },
                "required": [
                  "approval_request_id",
                  "created_at",
                  "decision",
                  "id"
                ],
                "type": "object"
              },
              "request": {
                "additionalProperties": false,
                "description": "The request value.",
                "nullable": true,
                "properties": {
                  "approval_set_status_id": {
                    "description": "The approval set status id value.",
                    "type": "integer"
                  },
                  "completed_at": {
                    "description": "The completed at value.",
                    "format": "date-time",
                    "nullable": true,
                    "type": "string"
                  },
                  "created_at": {
                    "description": "The created at value.",
                    "format": "date-time",
                    "type": "string"
                  },
                  "decisions": {
                    "description": "The decisions value.",
                    "items": {
                      "additionalProperties": false,
                      "properties": {
                        "actor_portal_customer_id": {
                          "description": "The actor portal customer id value.",
                          "nullable": true,
                          "type": "integer"
                        },
                        "actor_user_id": {
                          "description": "The actor user id value.",
                          "nullable": true,
                          "type": "integer"
                        },
                        "approval_request_id": {
                          "description": "The approval request id value.",
                          "type": "integer"
                        },
                        "approval_step_instance_id": {
                          "description": "The approval step instance id value.",
                          "nullable": true,
                          "type": "integer"
                        },
                        "comment": {
                          "description": "The comment value.",
                          "type": "string"
                        },
                        "created_at": {
                          "description": "The created at value.",
                          "format": "date-time",
                          "type": "string"
                        },
                        "decision": {
                          "description": "The decision value.",
                          "type": "string"
                        },
                        "delegated_to_user_id": {
                          "description": "The delegated to user id value.",
                          "nullable": true,
                          "type": "integer"
                        },
                        "id": {
                          "description": "The id value.",
                          "type": "integer"
                        },
                        "metadata": {
                          "description": "The metadata value.",
                          "format": "byte",
                          "type": "string"
                        }
                      },
                      "required": [
                        "approval_request_id",
                        "created_at",
                        "decision",
                        "id"
                      ],
                      "type": "object"
                    },
                    "type": "array"
                  },
                  "from_status_id": {
                    "description": "The from status id value.",
                    "nullable": true,
                    "type": "integer"
                  },
                  "id": {
                    "description": "The id value.",
                    "type": "integer"
                  },
                  "item_id": {
                    "description": "The item id value.",
                    "type": "integer"
                  },
                  "status": {
                    "description": "The status value.",
                    "type": "string"
                  },
                  "status_id": {
                    "description": "The status id value.",
                    "type": "integer"
                  },
                  "step_instances": {
                    "description": "The step instances value.",
                    "items": {
                      "additionalProperties": false,
                      "properties": {
                        "approval_request_id": {
                          "description": "The approval request id value.",
                          "type": "integer"
                        },
                        "approval_step_id": {
                          "description": "The approval step id value.",
                          "type": "integer"
                        },
                        "approvers": {
                          "description": "The approvers value.",
                          "items": {
                            "additionalProperties": false,
                            "properties": {
                              "approval_step_instance_id": {
                                "description": "The approval step instance id value.",
                                "type": "integer"
                              },
                              "created_at": {
                                "description": "The created at value.",
                                "format": "date-time",
                                "type": "string"
                              },
                              "id": {
                                "description": "The id value.",
                                "type": "integer"
                              },
                              "is_active": {
                                "description": "The is active value.",
                                "type": "boolean"
                              },
                              "portal_customer_id": {
                                "description": "The portal customer id value.",
                                "nullable": true,
                                "type": "integer"
                              },
                              "source_group_id": {
                                "description": "The source group id value.",
                                "nullable": true,
                                "type": "integer"
                              },
                              "source_role_id": {
                                "description": "The source role id value.",
                                "nullable": true,
                                "type": "integer"
                              },
                              "substituted_for_user_id": {
                                "description": "The substituted for user id value.",
                                "nullable": true,
                                "type": "integer"
                              },
                              "user_id": {
                                "description": "The user id value.",
                                "nullable": true,
                                "type": "integer"
                              }
                            },
                            "required": [
                              "approval_step_instance_id",
                              "created_at",
                              "id",
                              "is_active"
                            ],
                            "type": "object"
                          },
                          "type": "array"
                        },
                        "completed_at": {
                          "description": "The completed at value.",
                          "format": "date-time",
                          "nullable": true,
                          "type": "string"
                        },
                        "display_order": {
                          "description": "The display order value.",
                          "type": "integer"
                        },
                        "escalation_count": {
                          "description": "The escalation count value.",
                          "type": "integer"
                        },
                        "escalation_due_at": {
                          "description": "The escalation due at value.",
                          "format": "date-time",
                          "nullable": true,
                          "type": "string"
                        },
                        "id": {
                          "description": "The id value.",
                          "type": "integer"
                        },
                        "last_escalated_at": {
                          "description": "The last escalated at value.",
                          "format": "date-time",
                          "nullable": true,
                          "type": "string"
                        },
                        "started_at": {
                          "description": "The started at value.",
                          "format": "date-time",
                          "nullable": true,
                          "type": "string"
                        },
                        "status": {
                          "description": "The status value.",
                          "type": "string"
                        }
                      },
                      "required": [
                        "approval_request_id",
                        "approval_step_id",
                        "display_order",
                        "escalation_count",
                        "id",
                        "status"
                      ],
                      "type": "object"
                    },
                    "type": "array"
                  },
                  "triggered_by_user_id": {
                    "description": "The triggered by user id value.",
                    "type": "integer"
                  },
                  "workspace_id": {
                    "description": "The workspace id value.",
                    "type": "integer"
                  }
                },
                "required": [
                  "approval_set_status_id",
                  "created_at",
                  "id",
                  "item_id",
                  "status",
                  "status_id",
                  "triggered_by_user_id",
                  "workspace_id"
                ],
                "type": "object"
              }
            },
            "type": "object"
          }
        },
        "required": [
          "data"
        ],
        "type": "object"
      },
      "PostApprovalsApprovalIdDelegationsPayload": {
        "additionalProperties": false,
        "properties": {
          "comment": {
            "description": "The comment value.",
            "type": "string"
          },
          "to_user_id": {
            "description": "The to user id value.",
            "type": "integer"
          }
        },
        "required": [
          "comment",
          "to_user_id"
        ],
        "type": "object"
      },
      "PostApprovalsApprovalIdDelegationsResult": {
        "additionalProperties": false,
        "properties": {
          "data": {
            "additionalProperties": false,
            "properties": {
              "approval_set_status_id": {
                "description": "The approval set status id value.",
                "type": "integer"
              },
              "completed_at": {
                "description": "The completed at value.",
                "format": "date-time",
                "nullable": true,
                "type": "string"
              },
              "created_at": {
                "description": "The created at value.",
                "format": "date-time",
                "type": "string"
              },
              "decisions": {
                "description": "The decisions value.",
                "items": {
                  "additionalProperties": false,
                  "properties": {
                    "actor_portal_customer_id": {
                      "description": "The actor portal customer id value.",
                      "nullable": true,
                      "type": "integer"
                    },
                    "actor_user_id": {
                      "description": "The actor user id value.",
                      "nullable": true,
                      "type": "integer"
                    },
                    "approval_request_id": {
                      "description": "The approval request id value.",
                      "type": "integer"
                    },
                    "approval_step_instance_id": {
                      "description": "The approval step instance id value.",
                      "nullable": true,
                      "type": "integer"
                    },
                    "comment": {
                      "description": "The comment value.",
                      "type": "string"
                    },
                    "created_at": {
                      "description": "The created at value.",
                      "format": "date-time",
                      "type": "string"
                    },
                    "decision": {
                      "description": "The decision value.",
                      "type": "string"
                    },
                    "delegated_to_user_id": {
                      "description": "The delegated to user id value.",
                      "nullable": true,
                      "type": "integer"
                    },
                    "id": {
                      "description": "The id value.",
                      "type": "integer"
                    },
                    "metadata": {
                      "description": "The metadata value.",
                      "format": "byte",
                      "type": "string"
                    }
                  },
                  "required": [
                    "approval_request_id",
                    "created_at",
                    "decision",
                    "id"
                  ],
                  "type": "object"
                },
                "type": "array"
              },
              "from_status_id": {
                "description": "The from status id value.",
                "nullable": true,
                "type": "integer"
              },
              "id": {
                "description": "The id value.",
                "type": "integer"
              },
              "item_id": {
                "description": "The item id value.",
                "type": "integer"
              },
              "status": {
                "description": "The status value.",
                "type": "string"
              },
              "status_id": {
                "description": "The status id value.",
                "type": "integer"
              },
              "step_instances": {
                "description": "The step instances value.",
                "items": {
                  "additionalProperties": false,
                  "properties": {
                    "approval_request_id": {
                      "description": "The approval request id value.",
                      "type": "integer"
                    },
                    "approval_step_id": {
                      "description": "The approval step id value.",
                      "type": "integer"
                    },
                    "approvers": {
                      "description": "The approvers value.",
                      "items": {
                        "additionalProperties": false,
                        "properties": {
                          "approval_step_instance_id": {
                            "description": "The approval step instance id value.",
                            "type": "integer"
                          },
                          "created_at": {
                            "description": "The created at value.",
                            "format": "date-time",
                            "type": "string"
                          },
                          "id": {
                            "description": "The id value.",
                            "type": "integer"
                          },
                          "is_active": {
                            "description": "The is active value.",
                            "type": "boolean"
                          },
                          "portal_customer_id": {
                            "description": "The portal customer id value.",
                            "nullable": true,
                            "type": "integer"
                          },
                          "source_group_id": {
                            "description": "The source group id value.",
                            "nullable": true,
                            "type": "integer"
                          },
                          "source_role_id": {
                            "description": "The source role id value.",
                            "nullable": true,
                            "type": "integer"
                          },
                          "substituted_for_user_id": {
                            "description": "The substituted for user id value.",
                            "nullable": true,
                            "type": "integer"
                          },
                          "user_id": {
                            "description": "The user id value.",
                            "nullable": true,
                            "type": "integer"
                          }
                        },
                        "required": [
                          "approval_step_instance_id",
                          "created_at",
                          "id",
                          "is_active"
                        ],
                        "type": "object"
                      },
                      "type": "array"
                    },
                    "completed_at": {
                      "description": "The completed at value.",
                      "format": "date-time",
                      "nullable": true,
                      "type": "string"
                    },
                    "display_order": {
                      "description": "The display order value.",
                      "type": "integer"
                    },
                    "escalation_count": {
                      "description": "The escalation count value.",
                      "type": "integer"
                    },
                    "escalation_due_at": {
                      "description": "The escalation due at value.",
                      "format": "date-time",
                      "nullable": true,
                      "type": "string"
                    },
                    "id": {
                      "description": "The id value.",
                      "type": "integer"
                    },
                    "last_escalated_at": {
                      "description": "The last escalated at value.",
                      "format": "date-time",
                      "nullable": true,
                      "type": "string"
                    },
                    "started_at": {
                      "description": "The started at value.",
                      "format": "date-time",
                      "nullable": true,
                      "type": "string"
                    },
                    "status": {
                      "description": "The status value.",
                      "type": "string"
                    }
                  },
                  "required": [
                    "approval_request_id",
                    "approval_step_id",
                    "display_order",
                    "escalation_count",
                    "id",
                    "status"
                  ],
                  "type": "object"
                },
                "type": "array"
              },
              "triggered_by_user_id": {
                "description": "The triggered by user id value.",
                "type": "integer"
              },
              "workspace_id": {
                "description": "The workspace id value.",
                "type": "integer"
              }
            },
            "required": [
              "approval_set_status_id",
              "created_at",
              "id",
              "item_id",
              "status",
              "status_id",
              "triggered_by_user_id",
              "workspace_id"
            ],
            "type": "object"
          }
        },
        "required": [
          "data"
        ],
        "type": "object"
      },
      "PostApprovalsApprovalIdStepsStepIdApproverRefreshesPayload": {
        "additionalProperties": false,
        "properties": {
          "comment": {
            "description": "The comment value.",
            "type": "string"
          }
        },
        "required": [
          "comment"
        ],
        "type": "object"
      },
      "PostApprovalsApprovalIdStepsStepIdApproverRefreshesResult": {
        "additionalProperties": false,
        "properties": {
          "data": {
            "additionalProperties": false,
            "properties": {
              "approval_set_status_id": {
                "description": "The approval set status id value.",
                "type": "integer"
              },
              "completed_at": {
                "description": "The completed at value.",
                "format": "date-time",
                "nullable": true,
                "type": "string"
              },
              "created_at": {
                "description": "The created at value.",
                "format": "date-time",
                "type": "string"
              },
              "decisions": {
                "description": "The decisions value.",
                "items": {
                  "additionalProperties": false,
                  "properties": {
                    "actor_portal_customer_id": {
                      "description": "The actor portal customer id value.",
                      "nullable": true,
                      "type": "integer"
                    },
                    "actor_user_id": {
                      "description": "The actor user id value.",
                      "nullable": true,
                      "type": "integer"
                    },
                    "approval_request_id": {
                      "description": "The approval request id value.",
                      "type": "integer"
                    },
                    "approval_step_instance_id": {
                      "description": "The approval step instance id value.",
                      "nullable": true,
                      "type": "integer"
                    },
                    "comment": {
                      "description": "The comment value.",
                      "type": "string"
                    },
                    "created_at": {
                      "description": "The created at value.",
                      "format": "date-time",
                      "type": "string"
                    },
                    "decision": {
                      "description": "The decision value.",
                      "type": "string"
                    },
                    "delegated_to_user_id": {
                      "description": "The delegated to user id value.",
                      "nullable": true,
                      "type": "integer"
                    },
                    "id": {
                      "description": "The id value.",
                      "type": "integer"
                    },
                    "metadata": {
                      "description": "The metadata value.",
                      "format": "byte",
                      "type": "string"
                    }
                  },
                  "required": [
                    "approval_request_id",
                    "created_at",
                    "decision",
                    "id"
                  ],
                  "type": "object"
                },
                "type": "array"
              },
              "from_status_id": {
                "description": "The from status id value.",
                "nullable": true,
                "type": "integer"
              },
              "id": {
                "description": "The id value.",
                "type": "integer"
              },
              "item_id": {
                "description": "The item id value.",
                "type": "integer"
              },
              "status": {
                "description": "The status value.",
                "type": "string"
              },
              "status_id": {
                "description": "The status id value.",
                "type": "integer"
              },
              "step_instances": {
                "description": "The step instances value.",
                "items": {
                  "additionalProperties": false,
                  "properties": {
                    "approval_request_id": {
                      "description": "The approval request id value.",
                      "type": "integer"
                    },
                    "approval_step_id": {
                      "description": "The approval step id value.",
                      "type": "integer"
                    },
                    "approvers": {
                      "description": "The approvers value.",
                      "items": {
                        "additionalProperties": false,
                        "properties": {
                          "approval_step_instance_id": {
                            "description": "The approval step instance id value.",
                            "type": "integer"
                          },
                          "created_at": {
                            "description": "The created at value.",
                            "format": "date-time",
                            "type": "string"
                          },
                          "id": {
                            "description": "The id value.",
                            "type": "integer"
                          },
                          "is_active": {
                            "description": "The is active value.",
                            "type": "boolean"
                          },
                          "portal_customer_id": {
                            "description": "The portal customer id value.",
                            "nullable": true,
                            "type": "integer"
                          },
                          "source_group_id": {
                            "description": "The source group id value.",
                            "nullable": true,
                            "type": "integer"
                          },
                          "source_role_id": {
                            "description": "The source role id value.",
                            "nullable": true,
                            "type": "integer"
                          },
                          "substituted_for_user_id": {
                            "description": "The substituted for user id value.",
                            "nullable": true,
                            "type": "integer"
                          },
                          "user_id": {
                            "description": "The user id value.",
                            "nullable": true,
                            "type": "integer"
                          }
                        },
                        "required": [
                          "approval_step_instance_id",
                          "created_at",
                          "id",
                          "is_active"
                        ],
                        "type": "object"
                      },
                      "type": "array"
                    },
                    "completed_at": {
                      "description": "The completed at value.",
                      "format": "date-time",
                      "nullable": true,
                      "type": "string"
                    },
                    "display_order": {
                      "description": "The display order value.",
                      "type": "integer"
                    },
                    "escalation_count": {
                      "description": "The escalation count value.",
                      "type": "integer"
                    },
                    "escalation_due_at": {
                      "description": "The escalation due at value.",
                      "format": "date-time",
                      "nullable": true,
                      "type": "string"
                    },
                    "id": {
                      "description": "The id value.",
                      "type": "integer"
                    },
                    "last_escalated_at": {
                      "description": "The last escalated at value.",
                      "format": "date-time",
                      "nullable": true,
                      "type": "string"
                    },
                    "started_at": {
                      "description": "The started at value.",
                      "format": "date-time",
                      "nullable": true,
                      "type": "string"
                    },
                    "status": {
                      "description": "The status value.",
                      "type": "string"
                    }
                  },
                  "required": [
                    "approval_request_id",
                    "approval_step_id",
                    "display_order",
                    "escalation_count",
                    "id",
                    "status"
                  ],
                  "type": "object"
                },
                "type": "array"
              },
              "triggered_by_user_id": {
                "description": "The triggered by user id value.",
                "type": "integer"
              },
              "workspace_id": {
                "description": "The workspace id value.",
                "type": "integer"
              }
            },
            "required": [
              "approval_set_status_id",
              "created_at",
              "id",
              "item_id",
              "status",
              "status_id",
              "triggered_by_user_id",
              "workspace_id"
            ],
            "type": "object"
          }
        },
        "required": [
          "data"
        ],
        "type": "object"
      },
      "PostApprovalsApprovalIdStepsStepIdEscalationsResult": {
        "additionalProperties": false,
        "properties": {
          "data": {
            "additionalProperties": false,
            "properties": {
              "approval_set_status_id": {
                "description": "The approval set status id value.",
                "type": "integer"
              },
              "completed_at": {
                "description": "The completed at value.",
                "format": "date-time",
                "nullable": true,
                "type": "string"
              },
              "created_at": {
                "description": "The created at value.",
                "format": "date-time",
                "type": "string"
              },
              "decisions": {
                "description": "The decisions value.",
                "items": {
                  "additionalProperties": false,
                  "properties": {
                    "actor_portal_customer_id": {
                      "description": "The actor portal customer id value.",
                      "nullable": true,
                      "type": "integer"
                    },
                    "actor_user_id": {
                      "description": "The actor user id value.",
                      "nullable": true,
                      "type": "integer"
                    },
                    "approval_request_id": {
                      "description": "The approval request id value.",
                      "type": "integer"
                    },
                    "approval_step_instance_id": {
                      "description": "The approval step instance id value.",
                      "nullable": true,
                      "type": "integer"
                    },
                    "comment": {
                      "description": "The comment value.",
                      "type": "string"
                    },
                    "created_at": {
                      "description": "The created at value.",
                      "format": "date-time",
                      "type": "string"
                    },
                    "decision": {
                      "description": "The decision value.",
                      "type": "string"
                    },
                    "delegated_to_user_id": {
                      "description": "The delegated to user id value.",
                      "nullable": true,
                      "type": "integer"
                    },
                    "id": {
                      "description": "The id value.",
                      "type": "integer"
                    },
                    "metadata": {
                      "description": "The metadata value.",
                      "format": "byte",
                      "type": "string"
                    }
                  },
                  "required": [
                    "approval_request_id",
                    "created_at",
                    "decision",
                    "id"
                  ],
                  "type": "object"
                },
                "type": "array"
              },
              "from_status_id": {
                "description": "The from status id value.",
                "nullable": true,
                "type": "integer"
              },
              "id": {
                "description": "The id value.",
                "type": "integer"
              },
              "item_id": {
                "description": "The item id value.",
                "type": "integer"
              },
              "status": {
                "description": "The status value.",
                "type": "string"
              },
              "status_id": {
                "description": "The status id value.",
                "type": "integer"
              },
              "step_instances": {
                "description": "The step instances value.",
                "items": {
                  "additionalProperties": false,
                  "properties": {
                    "approval_request_id": {
                      "description": "The approval request id value.",
                      "type": "integer"
                    },
                    "approval_step_id": {
                      "description": "The approval step id value.",
                      "type": "integer"
                    },
                    "approvers": {
                      "description": "The approvers value.",
                      "items": {
                        "additionalProperties": false,
                        "properties": {
                          "approval_step_instance_id": {
                            "description": "The approval step instance id value.",
                            "type": "integer"
                          },
                          "created_at": {
                            "description": "The created at value.",
                            "format": "date-time",
                            "type": "string"
                          },
                          "id": {
                            "description": "The id value.",
                            "type": "integer"
                          },
                          "is_active": {
                            "description": "The is active value.",
                            "type": "boolean"
                          },
                          "portal_customer_id": {
                            "description": "The portal customer id value.",
                            "nullable": true,
                            "type": "integer"
                          },
                          "source_group_id": {
                            "description": "The source group id value.",
                            "nullable": true,
                            "type": "integer"
                          },
                          "source_role_id": {
                            "description": "The source role id value.",
                            "nullable": true,
                            "type": "integer"
                          },
                          "substituted_for_user_id": {
                            "description": "The substituted for user id value.",
                            "nullable": true,
                            "type": "integer"
                          },
                          "user_id": {
                            "description": "The user id value.",
                            "nullable": true,
                            "type": "integer"
                          }
                        },
                        "required": [
                          "approval_step_instance_id",
                          "created_at",
                          "id",
                          "is_active"
                        ],
                        "type": "object"
                      },
                      "type": "array"
                    },
                    "completed_at": {
                      "description": "The completed at value.",
                      "format": "date-time",
                      "nullable": true,
                      "type": "string"
                    },
                    "display_order": {
                      "description": "The display order value.",
                      "type": "integer"
                    },
                    "escalation_count": {
                      "description": "The escalation count value.",
                      "type": "integer"
                    },
                    "escalation_due_at": {
                      "description": "The escalation due at value.",
                      "format": "date-time",
                      "nullable": true,
                      "type": "string"
                    },
                    "id": {
                      "description": "The id value.",
                      "type": "integer"
                    },
                    "last_escalated_at": {
                      "description": "The last escalated at value.",
                      "format": "date-time",
                      "nullable": true,
                      "type": "string"
                    },
                    "started_at": {
                      "description": "The started at value.",
                      "format": "date-time",
                      "nullable": true,
                      "type": "string"
                    },
                    "status": {
                      "description": "The status value.",
                      "type": "string"
                    }
                  },
                  "required": [
                    "approval_request_id",
                    "approval_step_id",
                    "display_order",
                    "escalation_count",
                    "id",
                    "status"
                  ],
                  "type": "object"
                },
                "type": "array"
              },
              "triggered_by_user_id": {
                "description": "The triggered by user id value.",
                "type": "integer"
              },
              "workspace_id": {
                "description": "The workspace id value.",
                "type": "integer"
              }
            },
            "required": [
              "approval_set_status_id",
              "created_at",
              "id",
              "item_id",
              "status",
              "status_id",
              "triggered_by_user_id",
              "workspace_id"
            ],
            "type": "object"
          }
        },
        "required": [
          "data"
        ],
        "type": "object"
      },
      "PostAssetSetsAssetSetIdAssetsPayload": {
        "additionalProperties": false,
        "properties": {
          "asset_tag": {
            "description": "The asset tag value.",
            "type": "string"
          },
          "asset_type_id": {
            "description": "The asset type id value.",
            "type": "integer"
          },
          "category_id": {
            "description": "The category id value.",
            "nullable": true,
            "type": "integer"
          },
          "custom_field_values": {
            "additionalProperties": {
              "description": "Arbitrary JSON extension value."
            },
            "description": "The custom field values value.",
            "type": "object"
          },
          "description": {
            "description": "The description value.",
            "type": "string"
          },
          "status_id": {
            "description": "The status id value.",
            "nullable": true,
            "type": "integer"
          },
          "title": {
            "description": "The title value.",
            "type": "string"
          }
        },
        "required": [
          "asset_tag",
          "asset_type_id",
          "custom_field_values",
          "description",
          "title"
        ],
        "type": "object"
      },
      "PostAssetSetsAssetSetIdAssetsResult": {
        "additionalProperties": false,
        "properties": {
          "data": {
            "additionalProperties": false,
            "nullable": true,
            "properties": {
              "asset_tag": {
                "description": "The asset tag value.",
                "type": "string"
              },
              "asset_type_color": {
                "description": "The asset type color value.",
                "type": "string"
              },
              "asset_type_icon": {
                "description": "The asset type icon value.",
                "type": "string"
              },
              "asset_type_id": {
                "description": "The asset type id value.",
                "type": "integer"
              },
              "asset_type_name": {
                "description": "The asset type name value.",
                "type": "string"
              },
              "category_id": {
                "description": "The category id value.",
                "nullable": true,
                "type": "integer"
              },
              "category_name": {
                "description": "The category name value.",
                "type": "string"
              },
              "category_path": {
                "description": "The category path value.",
                "type": "string"
              },
              "created_at": {
                "description": "The created at value.",
                "format": "date-time",
                "type": "string"
              },
              "created_by": {
                "description": "The created by value.",
                "nullable": true,
                "type": "integer"
              },
              "creator_email": {
                "description": "The creator email value.",
                "type": "string"
              },
              "creator_name": {
                "description": "The creator name value.",
                "type": "string"
              },
              "custom_field_values": {
                "additionalProperties": {
                  "description": "Arbitrary JSON extension value."
                },
                "description": "The custom field values value.",
                "type": "object"
              },
              "description": {
                "description": "The description value.",
                "type": "string"
              },
              "frac_index": {
                "description": "The frac index value.",
                "nullable": true,
                "type": "string"
              },
              "id": {
                "description": "The id value.",
                "type": "integer"
              },
              "linked_item_count": {
                "description": "The linked item count value.",
                "type": "integer"
              },
              "set_id": {
                "description": "The set id value.",
                "type": "integer"
              },
              "set_name": {
                "description": "The set name value.",
                "type": "string"
              },
              "status_color": {
                "description": "The status color value.",
                "type": "string"
              },
              "status_id": {
                "description": "The status id value.",
                "nullable": true,
                "type": "integer"
              },
              "status_name": {
                "description": "The status name value.",
                "type": "string"
              },
              "title": {
                "description": "The title value.",
                "type": "string"
              },
              "updated_at": {
                "description": "The updated at value.",
                "format": "date-time",
                "type": "string"
              },
              "warnings": {
                "description": "The warnings value.",
                "items": {
                  "type": "string"
                },
                "type": "array"
              }
            },
            "required": [
              "asset_type_id",
              "created_at",
              "description",
              "id",
              "set_id",
              "title",
              "updated_at"
            ],
            "type": "object"
          }
        },
        "required": [
          "data"
        ],
        "type": "object"
      },
      "PostAssetSetsAssetSetIdImportCreateTypePayload": {
        "additionalProperties": false,
        "properties": {
          "color": {
            "description": "The color value.",
            "type": "string"
          },
          "description": {
            "description": "The description value.",
            "type": "string"
          },
          "fields": {
            "description": "The fields value.",
            "items": {
              "additionalProperties": false,
              "properties": {
                "display_order": {
                  "description": "The display order value.",
                  "type": "integer"
                },
                "field_type": {
                  "description": "The field type value.",
                  "type": "string"
                },
                "is_required": {
                  "description": "The is required value.",
                  "type": "boolean"
                },
                "name": {
                  "description": "The name value.",
                  "type": "string"
                },
                "options": {
                  "description": "The options value.",
                  "items": {
                    "type": "string"
                  },
                  "type": "array"
                }
              },
              "required": [
                "display_order",
                "field_type",
                "is_required",
                "name"
              ],
              "type": "object"
            },
            "type": "array"
          },
          "icon": {
            "description": "The icon value.",
            "type": "string"
          },
          "name": {
            "description": "The name value.",
            "type": "string"
          }
        },
        "required": [
          "color",
          "description",
          "fields",
          "icon",
          "name"
        ],
        "type": "object"
      },
      "PostAssetSetsAssetSetIdImportCreateTypeResult": {
        "additionalProperties": false,
        "properties": {
          "data": {
            "additionalProperties": false,
            "properties": {
              "asset_type": {
                "additionalProperties": false,
                "description": "The asset type value.",
                "properties": {
                  "asset_count": {
                    "description": "The asset count value.",
                    "type": "integer"
                  },
                  "color": {
                    "description": "The color value.",
                    "type": "string"
                  },
                  "created_at": {
                    "description": "The created at value.",
                    "format": "date-time",
                    "type": "string"
                  },
                  "description": {
                    "description": "The description value.",
                    "type": "string"
                  },
                  "display_order": {
                    "description": "The display order value.",
                    "type": "integer"
                  },
                  "fields": {
                    "description": "The fields value.",
                    "items": {
                      "additionalProperties": false,
                      "properties": {
                        "asset_type_id": {
                          "description": "The asset type id value.",
                          "type": "integer"
                        },
                        "created_at": {
                          "description": "The created at value.",
                          "format": "date-time",
                          "type": "string"
                        },
                        "custom_field_id": {
                          "description": "The custom field id value.",
                          "type": "integer"
                        },
                        "display_order": {
                          "description": "The display order value.",
                          "type": "integer"
                        },
                        "field_description": {
                          "description": "The field description value.",
                          "type": "string"
                        },
                        "field_name": {
                          "description": "The field name value.",
                          "type": "string"
                        },
                        "field_type": {
                          "description": "The field type value.",
                          "type": "string"
                        },
                        "id": {
                          "description": "The id value.",
                          "type": "integer"
                        },
                        "is_required": {
                          "description": "The is required value.",
                          "type": "boolean"
                        },
                        "options": {
                          "description": "The options value.",
                          "type": "string"
                        }
                      },
                      "required": [
                        "asset_type_id",
                        "created_at",
                        "custom_field_id",
                        "display_order",
                        "id",
                        "is_required"
                      ],
                      "type": "object"
                    },
                    "type": "array"
                  },
                  "icon": {
                    "description": "The icon value.",
                    "type": "string"
                  },
                  "id": {
                    "description": "The id value.",
                    "type": "integer"
                  },
                  "is_active": {
                    "description": "The is active value.",
                    "type": "boolean"
                  },
                  "name": {
                    "description": "The name value.",
                    "type": "string"
                  },
                  "set_id": {
                    "description": "The set id value.",
                    "type": "integer"
                  },
                  "set_name": {
                    "description": "The set name value.",
                    "type": "string"
                  },
                  "updated_at": {
                    "description": "The updated at value.",
                    "format": "date-time",
                    "type": "string"
                  }
                },
                "required": [
                  "color",
                  "created_at",
                  "description",
                  "display_order",
                  "icon",
                  "id",
                  "is_active",
                  "name",
                  "set_id",
                  "updated_at"
                ],
                "type": "object"
              },
              "fields": {
                "description": "The fields value.",
                "items": {
                  "additionalProperties": false,
                  "properties": {
                    "asset_type_id": {
                      "description": "The asset type id value.",
                      "type": "integer"
                    },
                    "created_at": {
                      "description": "The created at value.",
                      "format": "date-time",
                      "type": "string"
                    },
                    "custom_field_id": {
                      "description": "The custom field id value.",
                      "type": "integer"
                    },
                    "display_order": {
                      "description": "The display order value.",
                      "type": "integer"
                    },
                    "field_description": {
                      "description": "The field description value.",
                      "type": "string"
                    },
                    "field_name": {
                      "description": "The field name value.",
                      "type": "string"
                    },
                    "field_type": {
                      "description": "The field type value.",
                      "type": "string"
                    },
                    "id": {
                      "description": "The id value.",
                      "type": "integer"
                    },
                    "is_required": {
                      "description": "The is required value.",
                      "type": "boolean"
                    },
                    "options": {
                      "description": "The options value.",
                      "type": "string"
                    }
                  },
                  "required": [
                    "asset_type_id",
                    "created_at",
                    "custom_field_id",
                    "display_order",
                    "id",
                    "is_required"
                  ],
                  "type": "object"
                },
                "type": "array"
              }
            },
            "required": [
              "asset_type",
              "fields"
            ],
            "type": "object"
          }
        },
        "required": [
          "data"
        ],
        "type": "object"
      },
      "PostAssetSetsAssetSetIdImportStartPayload": {
        "additionalProperties": false,
        "properties": {
          "asset_type_id": {
            "description": "The asset type id value.",
            "type": "integer"
          },
          "category_map": {
            "additionalProperties": {
              "type": "integer"
            },
            "description": "The category map value.",
            "type": "object"
          },
          "default_category_id": {
            "description": "The default category id value.",
            "nullable": true,
            "type": "integer"
          },
          "default_status_id": {
            "description": "The default status id value.",
            "nullable": true,
            "type": "integer"
          },
          "delimiter": {
            "description": "The delimiter value.",
            "type": "string"
          },
          "has_header": {
            "description": "The has header value.",
            "type": "boolean"
          },
          "mappings": {
            "additionalProperties": false,
            "description": "The mappings value.",
            "properties": {
              "asset_tag": {
                "description": "The asset tag value.",
                "type": "integer"
              },
              "category_id": {
                "description": "The category id value.",
                "type": "integer"
              },
              "custom_fields": {
                "additionalProperties": {
                  "type": "integer"
                },
                "description": "The custom fields value.",
                "type": "object"
              },
              "description": {
                "description": "The description value.",
                "type": "integer"
              },
              "status_id": {
                "description": "The status id value.",
                "type": "integer"
              },
              "title": {
                "description": "The title value.",
                "type": "integer"
              }
            },
            "required": [
              "asset_tag",
              "category_id",
              "description",
              "status_id",
              "title"
            ],
            "type": "object"
          },
          "status_map": {
            "additionalProperties": {
              "type": "integer"
            },
            "description": "The status map value.",
            "type": "object"
          },
          "upload_id": {
            "description": "The upload id value.",
            "type": "string"
          }
        },
        "required": [
          "asset_type_id",
          "has_header",
          "mappings",
          "upload_id"
        ],
        "type": "object"
      },
      "PostAssetSetsAssetSetIdImportStartResult": {
        "additionalProperties": false,
        "properties": {
          "data": {
            "additionalProperties": false,
            "properties": {
              "completed_at": {
                "description": "The completed at value.",
                "format": "date-time",
                "nullable": true,
                "type": "string"
              },
              "created_at": {
                "description": "The created at value.",
                "format": "date-time",
                "nullable": true,
                "type": "string"
              },
              "error_message": {
                "description": "The error message value.",
                "type": "string"
              },
              "job_id": {
                "description": "The job id value.",
                "type": "string"
              },
              "phase": {
                "description": "The phase value.",
                "type": "string"
              },
              "progress": {
                "additionalProperties": false,
                "description": "The progress value.",
                "nullable": true,
                "properties": {
                  "errors": {
                    "description": "The errors value.",
                    "items": {
                      "type": "string"
                    },
                    "type": "array"
                  },
                  "failed_count": {
                    "description": "The failed count value.",
                    "type": "integer"
                  },
                  "imported_count": {
                    "description": "The imported count value.",
                    "type": "integer"
                  },
                  "phase": {
                    "description": "The phase value.",
                    "type": "string"
                  },
                  "total_rows": {
                    "description": "The total rows value.",
                    "type": "integer"
                  }
                },
                "required": [
                  "failed_count",
                  "imported_count",
                  "phase",
                  "total_rows"
                ],
                "type": "object"
              },
              "started_at": {
                "description": "The started at value.",
                "format": "date-time",
                "nullable": true,
                "type": "string"
              },
              "status": {
                "description": "The status value.",
                "type": "string"
              }
            },
            "required": [
              "job_id",
              "status"
            ],
            "type": "object"
          }
        },
        "required": [
          "data"
        ],
        "type": "object"
      },
      "PostAssetSetsAssetSetIdImportSuggestFieldsPayload": {
        "additionalProperties": false,
        "properties": {
          "delimiter": {
            "description": "The delimiter value.",
            "type": "string"
          },
          "has_header": {
            "description": "The has header value.",
            "type": "boolean"
          },
          "upload_id": {
            "description": "The upload id value.",
            "type": "string"
          }
        },
        "required": [
          "delimiter",
          "has_header",
          "upload_id"
        ],
        "type": "object"
      },
      "PostAssetSetsAssetSetIdImportSuggestFieldsResult": {
        "additionalProperties": false,
        "properties": {
          "data": {
            "additionalProperties": false,
            "properties": {
              "suggested_fields": {
                "description": "The suggested fields value.",
                "items": {
                  "additionalProperties": false,
                  "properties": {
                    "column_index": {
                      "description": "The column index value.",
                      "type": "integer"
                    },
                    "header_name": {
                      "description": "The header name value.",
                      "type": "string"
                    },
                    "is_standard": {
                      "description": "The is standard value.",
                      "type": "boolean"
                    },
                    "options": {
                      "description": "The options value.",
                      "items": {
                        "type": "string"
                      },
                      "type": "array"
                    },
                    "sample_values": {
                      "description": "The sample values value.",
                      "items": {
                        "type": "string"
                      },
                      "type": "array"
                    },
                    "suggested_name": {
                      "description": "The suggested name value.",
                      "type": "string"
                    },
                    "suggested_type": {
                      "description": "The suggested type value.",
                      "type": "string"
                    }
                  },
                  "required": [
                    "column_index",
                    "header_name",
                    "is_standard",
                    "sample_values",
                    "suggested_name",
                    "suggested_type"
                  ],
                  "type": "object"
                },
                "type": "array"
              }
            },
            "required": [
              "suggested_fields"
            ],
            "type": "object"
          }
        },
        "required": [
          "data"
        ],
        "type": "object"
      },
      "PostAssetSetsAssetSetIdImportUploadPayload": {
        "additionalProperties": false,
        "properties": {
          "delimiter": {
            "description": "The delimiter value.",
            "type": "string"
          },
          "file": {
            "description": "The file value.",
            "format": "byte",
            "type": "string"
          },
          "has_header": {
            "description": "The has header value.",
            "type": "boolean"
          }
        },
        "required": [
          "delimiter",
          "file",
          "has_header"
        ],
        "type": "object"
      },
      "PostAssetSetsAssetSetIdImportUploadResult": {
        "additionalProperties": false,
        "properties": {
          "data": {
            "additionalProperties": false,
            "properties": {
              "delimiter": {
                "description": "The delimiter value.",
                "type": "string"
              },
              "header_warning": {
                "description": "The header warning value.",
                "type": "string"
              },
              "headers": {
                "description": "The headers value.",
                "items": {
                  "type": "string"
                },
                "type": "array"
              },
              "preview_rows": {
                "description": "The preview rows value.",
                "items": {
                  "items": {
                    "type": "string"
                  },
                  "type": "array"
                },
                "type": "array"
              },
              "total_rows": {
                "description": "The total rows value.",
                "type": "integer"
              },
              "upload_id": {
                "description": "The upload id value.",
                "type": "string"
              }
            },
            "required": [
              "delimiter",
              "headers",
              "preview_rows",
              "total_rows",
              "upload_id"
            ],
            "type": "object"
          }
        },
        "required": [
          "data"
        ],
        "type": "object"
      },
      "PostAssetsAssetIdLinksPayload": {
        "additionalProperties": false,
        "properties": {
          "link_type_id": {
            "description": "The link type id value.",
            "type": "integer"
          },
          "target_id": {
            "description": "The target id value.",
            "type": "integer"
          },
          "target_type": {
            "description": "The target type value.",
            "type": "string"
          }
        },
        "required": [
          "link_type_id",
          "target_id",
          "target_type"
        ],
        "type": "object"
      },
      "PostAssetsAssetIdLinksResult": {
        "additionalProperties": false,
        "properties": {
          "data": {
            "additionalProperties": false,
            "nullable": true,
            "properties": {
              "created_at": {
                "description": "The created at value.",
                "format": "date-time",
                "type": "string"
              },
              "created_by": {
                "description": "The created by value.",
                "nullable": true,
                "type": "integer"
              },
              "created_by_name": {
                "description": "The created by name value.",
                "type": "string"
              },
              "custom_field_id": {
                "description": "The custom field id value.",
                "nullable": true,
                "type": "integer"
              },
              "custom_field_name": {
                "description": "The custom field name value.",
                "type": "string"
              },
              "id": {
                "description": "The id value.",
                "type": "integer"
              },
              "link_type_color": {
                "description": "The link type color value.",
                "type": "string"
              },
              "link_type_forward_label": {
                "description": "The link type forward label value.",
                "type": "string"
              },
              "link_type_id": {
                "description": "The link type id value.",
                "type": "integer"
              },
              "link_type_name": {
                "description": "The link type name value.",
                "type": "string"
              },
              "link_type_reverse_label": {
                "description": "The link type reverse label value.",
                "type": "string"
              },
              "source_id": {
                "description": "The source id value.",
                "type": "integer"
              },
              "source_item_number": {
                "description": "The source item number value.",
                "nullable": true,
                "type": "integer"
              },
              "source_item_type_color": {
                "description": "The source item type color value.",
                "type": "string"
              },
              "source_item_type_icon": {
                "description": "The source item type icon value.",
                "type": "string"
              },
              "source_item_type_id": {
                "description": "The source item type id value.",
                "nullable": true,
                "type": "integer"
              },
              "source_item_type_name": {
                "description": "The source item type name value.",
                "type": "string"
              },
              "source_status_color": {
                "description": "The source status color value.",
                "type": "string"
              },
              "source_status_id": {
                "description": "The source status id value.",
                "nullable": true,
                "type": "integer"
              },
              "source_status_name": {
                "description": "The source status name value.",
                "type": "string"
              },
              "source_title": {
                "description": "The source title value.",
                "type": "string"
              },
              "source_type": {
                "description": "The source type value.",
                "type": "string"
              },
              "source_workspace_id": {
                "description": "The source workspace id value.",
                "nullable": true,
                "type": "integer"
              },
              "source_workspace_key": {
                "description": "The source workspace key value.",
                "type": "string"
              },
              "target_id": {
                "description": "The target id value.",
                "type": "integer"
              },
              "target_item_number": {
                "description": "The target item number value.",
                "nullable": true,
                "type": "integer"
              },
              "target_item_type_color": {
                "description": "The target item type color value.",
                "type": "string"
              },
              "target_item_type_icon": {
                "description": "The target item type icon value.",
                "type": "string"
              },
              "target_item_type_id": {
                "description": "The target item type id value.",
                "nullable": true,
                "type": "integer"
              },
              "target_item_type_name": {
                "description": "The target item type name value.",
                "type": "string"
              },
              "target_status_color": {
                "description": "The target status color value.",
                "type": "string"
              },
              "target_status_id": {
                "description": "The target status id value.",
                "nullable": true,
                "type": "integer"
              },
              "target_status_name": {
                "description": "The target status name value.",
                "type": "string"
              },
              "target_title": {
                "description": "The target title value.",
                "type": "string"
              },
              "target_type": {
                "description": "The target type value.",
                "type": "string"
              },
              "target_workspace_id": {
                "description": "The target workspace id value.",
                "nullable": true,
                "type": "integer"
              },
              "target_workspace_key": {
                "description": "The target workspace key value.",
                "type": "string"
              }
            },
            "required": [
              "created_at",
              "id",
              "link_type_id",
              "source_id",
              "source_type",
              "target_id",
              "target_type"
            ],
            "type": "object"
          }
        },
        "required": [
          "data"
        ],
        "type": "object"
      },
      "PostAssetsSummariesPayload": {
        "additionalProperties": false,
        "properties": {
          "ids": {
            "description": "Resource IDs in preferred response order. At most 500 IDs are accepted; duplicates use their first occurrence and missing or invisible resources are omitted.",
            "items": {
              "type": "integer"
            },
            "type": "array"
          }
        },
        "required": [
          "ids"
        ],
        "type": "object"
      },
      "PostAssetsSummariesResult": {
        "additionalProperties": false,
        "properties": {
          "data": {
            "items": {
              "additionalProperties": false,
              "properties": {
                "asset_tag": {
                  "description": "The asset tag value.",
                  "type": "string"
                },
                "id": {
                  "description": "The id value.",
                  "type": "integer"
                },
                "set_id": {
                  "description": "The set id value.",
                  "type": "integer"
                },
                "title": {
                  "description": "The title value.",
                  "type": "string"
                }
              },
              "required": [
                "id",
                "set_id",
                "title"
              ],
              "type": "object"
            },
            "type": "array"
          }
        },
        "required": [
          "data"
        ],
        "type": "object"
      },
      "PostCollectionCategoriesPayload": {
        "additionalProperties": false,
        "properties": {
          "color": {
            "description": "The color value.",
            "type": "string"
          },
          "created_at": {
            "description": "The created at value.",
            "format": "date-time",
            "type": "string"
          },
          "description": {
            "description": "The description value.",
            "type": "string"
          },
          "id": {
            "description": "The id value.",
            "type": "integer"
          },
          "name": {
            "description": "The name value.",
            "type": "string"
          },
          "updated_at": {
            "description": "The updated at value.",
            "format": "date-time",
            "type": "string"
          }
        },
        "required": [
          "color",
          "created_at",
          "description",
          "id",
          "name",
          "updated_at"
        ],
        "type": "object"
      },
      "PostCollectionCategoriesResult": {
        "additionalProperties": false,
        "properties": {
          "data": {
            "additionalProperties": false,
            "properties": {
              "color": {
                "description": "The color value.",
                "type": "string"
              },
              "created_at": {
                "description": "The created at value.",
                "format": "date-time",
                "type": "string"
              },
              "description": {
                "description": "The description value.",
                "type": "string"
              },
              "id": {
                "description": "The id value.",
                "type": "integer"
              },
              "name": {
                "description": "The name value.",
                "type": "string"
              },
              "updated_at": {
                "description": "The updated at value.",
                "format": "date-time",
                "type": "string"
              }
            },
            "required": [
              "color",
              "created_at",
              "description",
              "id",
              "name",
              "updated_at"
            ],
            "type": "object"
          }
        },
        "required": [
          "data"
        ],
        "type": "object"
      },
      "PostCollectionsCollectionIdTestCoverageConfigPayload": {
        "additionalProperties": false,
        "properties": {
          "requirement_item_type_ids": {
            "description": "The requirement item type ids value.",
            "items": {
              "type": "integer"
            },
            "type": "array"
          }
        },
        "required": [
          "requirement_item_type_ids"
        ],
        "type": "object"
      },
      "PostCollectionsCollectionIdTestCoverageConfigResult": {
        "additionalProperties": false,
        "properties": {
          "data": {
            "additionalProperties": false,
            "nullable": true,
            "properties": {
              "collection_id": {
                "description": "The collection id value.",
                "nullable": true,
                "type": "integer"
              },
              "created_at": {
                "description": "The created at value.",
                "format": "date-time",
                "type": "string"
              },
              "id": {
                "description": "The id value.",
                "type": "integer"
              },
              "requirement_item_type_ids": {
                "description": "The requirement item type ids value.",
                "items": {
                  "type": "integer"
                },
                "type": "array"
              },
              "updated_at": {
                "description": "The updated at value.",
                "format": "date-time",
                "type": "string"
              },
              "workspace_id": {
                "description": "The workspace id value.",
                "nullable": true,
                "type": "integer"
              }
            },
            "required": [
              "created_at",
              "id",
              "requirement_item_type_ids",
              "updated_at"
            ],
            "type": "object"
          }
        },
        "required": [
          "data"
        ],
        "type": "object"
      },
      "PostCollectionsPayload": {
        "additionalProperties": false,
        "properties": {
          "category_color": {
            "description": "The category color value.",
            "type": "string"
          },
          "category_id": {
            "description": "The category id value.",
            "nullable": true,
            "type": "integer"
          },
          "category_name": {
            "description": "The category name value.",
            "type": "string"
          },
          "created_at": {
            "description": "The created at value.",
            "type": "string"
          },
          "created_by": {
            "description": "The created by value.",
            "nullable": true,
            "type": "integer"
          },
          "creator_email": {
            "description": "The creator email value.",
            "type": "string"
          },
          "creator_name": {
            "description": "The creator name value.",
            "type": "string"
          },
          "description": {
            "description": "The description value.",
            "type": "string"
          },
          "filter_state": {
            "description": "The filter state value.",
            "nullable": true,
            "type": "string"
          },
          "id": {
            "description": "The id value.",
            "type": "integer"
          },
          "is_public": {
            "description": "The is public value.",
            "type": "boolean"
          },
          "name": {
            "description": "The name value.",
            "type": "string"
          },
          "public_slug": {
            "description": "The public slug value.",
            "nullable": true,
            "type": "string"
          },
          "ql_query": {
            "description": "The ql query value.",
            "type": "string"
          },
          "updated_at": {
            "description": "The updated at value.",
            "type": "string"
          },
          "workspace_id": {
            "description": "The workspace id value.",
            "nullable": true,
            "type": "integer"
          }
        },
        "required": [
          "created_at",
          "description",
          "id",
          "is_public",
          "name",
          "ql_query",
          "updated_at"
        ],
        "type": "object"
      },
      "PostCollectionsResult": {
        "additionalProperties": false,
        "properties": {
          "data": {
            "additionalProperties": false,
            "properties": {
              "category_color": {
                "description": "The category color value.",
                "type": "string"
              },
              "category_id": {
                "description": "The category id value.",
                "nullable": true,
                "type": "integer"
              },
              "category_name": {
                "description": "The category name value.",
                "type": "string"
              },
              "created_at": {
                "description": "The created at value.",
                "type": "string"
              },
              "created_by": {
                "description": "The created by value.",
                "nullable": true,
                "type": "integer"
              },
              "creator_email": {
                "description": "The creator email value.",
                "type": "string"
              },
              "creator_name": {
                "description": "The creator name value.",
                "type": "string"
              },
              "description": {
                "description": "The description value.",
                "type": "string"
              },
              "filter_state": {
                "description": "The filter state value.",
                "nullable": true,
                "type": "string"
              },
              "id": {
                "description": "The id value.",
                "type": "integer"
              },
              "is_public": {
                "description": "The is public value.",
                "type": "boolean"
              },
              "name": {
                "description": "The name value.",
                "type": "string"
              },
              "public_slug": {
                "description": "The public slug value.",
                "nullable": true,
                "type": "string"
              },
              "ql_query": {
                "description": "The ql query value.",
                "type": "string"
              },
              "updated_at": {
                "description": "The updated at value.",
                "type": "string"
              },
              "workspace_id": {
                "description": "The workspace id value.",
                "nullable": true,
                "type": "integer"
              }
            },
            "required": [
              "created_at",
              "description",
              "id",
              "is_public",
              "name",
              "ql_query",
              "updated_at"
            ],
            "type": "object"
          }
        },
        "required": [
          "data"
        ],
        "type": "object"
      },
      "PostConditionSetsPayload": {
        "additionalProperties": false,
        "properties": {
          "created_at": {
            "description": "The created at value.",
            "format": "date-time",
            "type": "string"
          },
          "description": {
            "description": "The description value.",
            "type": "string"
          },
          "gated_transitions": {
            "description": "The gated transitions value.",
            "items": {
              "additionalProperties": false,
              "properties": {
                "from_status_name": {
                  "description": "The from status name value.",
                  "type": "string"
                },
                "to_status_name": {
                  "description": "The to status name value.",
                  "type": "string"
                },
                "transition_id": {
                  "description": "The transition id value.",
                  "type": "integer"
                }
              },
              "required": [
                "to_status_name",
                "transition_id"
              ],
              "type": "object"
            },
            "type": "array"
          },
          "id": {
            "description": "The id value.",
            "type": "integer"
          },
          "name": {
            "description": "The name value.",
            "type": "string"
          },
          "transition_conditions": {
            "description": "The transition conditions value.",
            "items": {
              "additionalProperties": false,
              "properties": {
                "condition_set_id": {
                  "description": "The condition set id value.",
                  "type": "integer"
                },
                "conditions": {
                  "description": "The conditions value.",
                  "items": {
                    "additionalProperties": false,
                    "properties": {
                      "condition_set_transition_id": {
                        "description": "The condition set transition id value.",
                        "type": "integer"
                      },
                      "condition_type": {
                        "description": "The condition type value.",
                        "type": "string"
                      },
                      "config": {
                        "description": "The config value.",
                        "format": "byte",
                        "type": "string"
                      },
                      "display_order": {
                        "description": "The display order value.",
                        "type": "integer"
                      },
                      "error_message": {
                        "description": "The error message value.",
                        "type": "string"
                      },
                      "id": {
                        "description": "The id value.",
                        "type": "integer"
                      },
                      "mode": {
                        "description": "The mode value.",
                        "type": "string"
                      }
                    },
                    "required": [
                      "condition_set_transition_id",
                      "condition_type",
                      "config",
                      "display_order",
                      "id",
                      "mode"
                    ],
                    "type": "object"
                  },
                  "type": "array"
                },
                "from_status_name": {
                  "description": "The from status name value.",
                  "type": "string"
                },
                "id": {
                  "description": "The id value.",
                  "type": "integer"
                },
                "logic_mode": {
                  "description": "The logic mode value.",
                  "type": "string"
                },
                "to_status_name": {
                  "description": "The to status name value.",
                  "type": "string"
                },
                "transition_id": {
                  "description": "The transition id value.",
                  "type": "integer"
                }
              },
              "required": [
                "condition_set_id",
                "id",
                "logic_mode",
                "transition_id"
              ],
              "type": "object"
            },
            "type": "array"
          },
          "updated_at": {
            "description": "The updated at value.",
            "format": "date-time",
            "type": "string"
          },
          "workflow_id": {
            "description": "The workflow id value.",
            "type": "integer"
          },
          "workflow_name": {
            "description": "The workflow name value.",
            "type": "string"
          }
        },
        "required": [
          "created_at",
          "description",
          "id",
          "name",
          "updated_at",
          "workflow_id"
        ],
        "type": "object"
      },
      "PostConditionSetsResult": {
        "additionalProperties": false,
        "properties": {
          "data": {
            "additionalProperties": false,
            "properties": {
              "created_at": {
                "description": "The created at value.",
                "format": "date-time",
                "type": "string"
              },
              "description": {
                "description": "The description value.",
                "type": "string"
              },
              "gated_transitions": {
                "description": "The gated transitions value.",
                "items": {
                  "additionalProperties": false,
                  "properties": {
                    "from_status_name": {
                      "description": "The from status name value.",
                      "type": "string"
                    },
                    "to_status_name": {
                      "description": "The to status name value.",
                      "type": "string"
                    },
                    "transition_id": {
                      "description": "The transition id value.",
                      "type": "integer"
                    }
                  },
                  "required": [
                    "to_status_name",
                    "transition_id"
                  ],
                  "type": "object"
                },
                "type": "array"
              },
              "id": {
                "description": "The id value.",
                "type": "integer"
              },
              "name": {
                "description": "The name value.",
                "type": "string"
              },
              "transition_conditions": {
                "description": "The transition conditions value.",
                "items": {
                  "additionalProperties": false,
                  "properties": {
                    "condition_set_id": {
                      "description": "The condition set id value.",
                      "type": "integer"
                    },
                    "conditions": {
                      "description": "The conditions value.",
                      "items": {
                        "additionalProperties": false,
                        "properties": {
                          "condition_set_transition_id": {
                            "description": "The condition set transition id value.",
                            "type": "integer"
                          },
                          "condition_type": {
                            "description": "The condition type value.",
                            "type": "string"
                          },
                          "config": {
                            "description": "The config value.",
                            "format": "byte",
                            "type": "string"
                          },
                          "display_order": {
                            "description": "The display order value.",
                            "type": "integer"
                          },
                          "error_message": {
                            "description": "The error message value.",
                            "type": "string"
                          },
                          "id": {
                            "description": "The id value.",
                            "type": "integer"
                          },
                          "mode": {
                            "description": "The mode value.",
                            "type": "string"
                          }
                        },
                        "required": [
                          "condition_set_transition_id",
                          "condition_type",
                          "config",
                          "display_order",
                          "id",
                          "mode"
                        ],
                        "type": "object"
                      },
                      "type": "array"
                    },
                    "from_status_name": {
                      "description": "The from status name value.",
                      "type": "string"
                    },
                    "id": {
                      "description": "The id value.",
                      "type": "integer"
                    },
                    "logic_mode": {
                      "description": "The logic mode value.",
                      "type": "string"
                    },
                    "to_status_name": {
                      "description": "The to status name value.",
                      "type": "string"
                    },
                    "transition_id": {
                      "description": "The transition id value.",
                      "type": "integer"
                    }
                  },
                  "required": [
                    "condition_set_id",
                    "id",
                    "logic_mode",
                    "transition_id"
                  ],
                  "type": "object"
                },
                "type": "array"
              },
              "updated_at": {
                "description": "The updated at value.",
                "format": "date-time",
                "type": "string"
              },
              "workflow_id": {
                "description": "The workflow id value.",
                "type": "integer"
              },
              "workflow_name": {
                "description": "The workflow name value.",
                "type": "string"
              }
            },
            "required": [
              "created_at",
              "description",
              "id",
              "name",
              "updated_at",
              "workflow_id"
            ],
            "type": "object"
          }
        },
        "required": [
          "data"
        ],
        "type": "object"
      },
      "PostItemTypesPayload": {
        "additionalProperties": false,
        "properties": {
          "builtin_key": {
            "description": "The builtin key value.",
            "type": "string"
          },
          "color": {
            "description": "The color value.",
            "type": "string"
          },
          "configuration_set_builtin_keys": {
            "description": "The configuration set builtin keys value.",
            "items": {
              "type": "string"
            },
            "type": "array"
          },
          "configuration_set_id": {
            "description": "The configuration set id value.",
            "type": "integer"
          },
          "configuration_set_ids": {
            "description": "The configuration set ids value.",
            "items": {
              "type": "integer"
            },
            "type": "array"
          },
          "configuration_set_name": {
            "description": "The configuration set name value.",
            "type": "string"
          },
          "configuration_set_names": {
            "description": "The configuration set names value.",
            "items": {
              "type": "string"
            },
            "type": "array"
          },
          "created_at": {
            "description": "The created at value.",
            "format": "date-time",
            "type": "string"
          },
          "description": {
            "description": "The description value.",
            "type": "string"
          },
          "display_description": {
            "description": "The display description value.",
            "type": "string"
          },
          "display_name": {
            "description": "The display name value.",
            "type": "string"
          },
          "hierarchy_level": {
            "description": "The hierarchy level value.",
            "type": "integer"
          },
          "icon": {
            "description": "The icon value.",
            "type": "string"
          },
          "id": {
            "description": "The id value.",
            "type": "integer"
          },
          "is_default": {
            "description": "The is default value.",
            "type": "boolean"
          },
          "name": {
            "description": "The name value.",
            "type": "string"
          },
          "sort_order": {
            "description": "The sort order value.",
            "type": "integer"
          },
          "updated_at": {
            "description": "The updated at value.",
            "format": "date-time",
            "type": "string"
          },
          "workspace_name": {
            "description": "The workspace name value.",
            "type": "string"
          }
        },
        "required": [
          "color",
          "created_at",
          "description",
          "display_name",
          "hierarchy_level",
          "icon",
          "id",
          "is_default",
          "name",
          "sort_order",
          "updated_at"
        ],
        "type": "object"
      },
      "PostItemTypesResult": {
        "additionalProperties": false,
        "properties": {
          "data": {
            "additionalProperties": false,
            "properties": {
              "builtin_key": {
                "description": "The builtin key value.",
                "nullable": true,
                "type": "string"
              },
              "color": {
                "description": "The color value.",
                "type": "string"
              },
              "description": {
                "description": "The description value.",
                "type": "string"
              },
              "display_description": {
                "description": "The display description value.",
                "type": "string"
              },
              "display_name": {
                "description": "The display name value.",
                "type": "string"
              },
              "hierarchy_level": {
                "description": "The hierarchy level value.",
                "type": "integer"
              },
              "icon": {
                "description": "The icon value.",
                "type": "string"
              },
              "id": {
                "description": "The id value.",
                "type": "integer"
              },
              "is_default": {
                "description": "The is default value.",
                "type": "boolean"
              },
              "name": {
                "description": "The name value.",
                "type": "string"
              },
              "sort_order": {
                "description": "The sort order value.",
                "type": "integer"
              }
            },
            "required": [
              "color",
              "description",
              "display_description",
              "display_name",
              "hierarchy_level",
              "icon",
              "id",
              "is_default",
              "name",
              "sort_order"
            ],
            "type": "object"
          }
        },
        "required": [
          "data"
        ],
        "type": "object"
      },
      "PostItemsBatchPayload": {
        "additionalProperties": false,
        "properties": {
          "ids": {
            "description": "Resource IDs in preferred response order. At most 500 IDs are accepted; duplicates use their first occurrence and missing or invisible resources are omitted.",
            "items": {
              "type": "integer"
            },
            "type": "array"
          }
        },
        "required": [
          "ids"
        ],
        "type": "object"
      },
      "PostItemsBatchResult": {
        "additionalProperties": false,
        "properties": {
          "data": {
            "items": {
              "additionalProperties": false,
              "properties": {
                "assignee_avatar": {
                  "description": "The assignee avatar value.",
                  "type": "string"
                },
                "assignee_email": {
                  "description": "The assignee email value.",
                  "type": "string"
                },
                "assignee_id": {
                  "description": "The assignee id value.",
                  "nullable": true,
                  "type": "integer"
                },
                "assignee_name": {
                  "description": "The assignee name value.",
                  "type": "string"
                },
                "calendar_data": {
                  "description": "The calendar data value.",
                  "items": {
                    "additionalProperties": false,
                    "properties": {
                      "created_at": {
                        "description": "The created at value.",
                        "type": "string"
                      },
                      "duration_minutes": {
                        "description": "The duration minutes value.",
                        "type": "integer"
                      },
                      "notes": {
                        "description": "The notes value.",
                        "type": "string"
                      },
                      "scheduled_date": {
                        "description": "The scheduled date value.",
                        "type": "string"
                      },
                      "scheduled_time": {
                        "description": "The scheduled time value.",
                        "type": "string"
                      },
                      "user_id": {
                        "description": "The user id value.",
                        "type": "integer"
                      },
                      "workspace_id": {
                        "description": "The workspace id value.",
                        "type": "integer"
                      }
                    },
                    "required": [
                      "created_at",
                      "scheduled_date",
                      "user_id",
                      "workspace_id"
                    ],
                    "type": "object"
                  },
                  "type": "array"
                },
                "channel_id": {
                  "description": "The channel id value.",
                  "nullable": true,
                  "type": "integer"
                },
                "channel_name": {
                  "description": "The channel name value.",
                  "type": "string"
                },
                "children": {
                  "description": "The children value.",
                  "items": {
                    "description": "Nested resource reference.",
                    "type": "object"
                  },
                  "type": "array"
                },
                "completed_at": {
                  "description": "The completed at value.",
                  "format": "date-time",
                  "nullable": true,
                  "type": "string"
                },
                "created_at": {
                  "description": "The created at value.",
                  "format": "date-time",
                  "type": "string"
                },
                "creator_email": {
                  "description": "The creator email value.",
                  "type": "string"
                },
                "creator_id": {
                  "description": "The creator id value.",
                  "nullable": true,
                  "type": "integer"
                },
                "creator_name": {
                  "description": "The creator name value.",
                  "type": "string"
                },
                "creator_portal_customer_email": {
                  "description": "The creator portal customer email value.",
                  "type": "string"
                },
                "creator_portal_customer_id": {
                  "description": "The creator portal customer id value.",
                  "nullable": true,
                  "type": "integer"
                },
                "creator_portal_customer_name": {
                  "description": "The creator portal customer name value.",
                  "type": "string"
                },
                "custom_field_values": {
                  "additionalProperties": {
                    "description": "Arbitrary JSON extension value."
                  },
                  "description": "The custom field values value.",
                  "type": "object"
                },
                "description": {
                  "description": "The description value.",
                  "type": "string"
                },
                "description_html": {
                  "description": "The description html value.",
                  "type": "string"
                },
                "due_date": {
                  "description": "The due date value.",
                  "format": "date-time",
                  "nullable": true,
                  "type": "string"
                },
                "effective_project_id": {
                  "description": "The effective project id value.",
                  "nullable": true,
                  "type": "integer"
                },
                "effective_project_name": {
                  "description": "The effective project name value.",
                  "type": "string"
                },
                "end_date": {
                  "description": "The end date value.",
                  "format": "date-time",
                  "nullable": true,
                  "type": "string"
                },
                "estimate_minutes": {
                  "description": "The estimate minutes value.",
                  "nullable": true,
                  "type": "integer"
                },
                "frac_index": {
                  "description": "The frac index value.",
                  "nullable": true,
                  "type": "string"
                },
                "id": {
                  "description": "The id value.",
                  "type": "integer"
                },
                "inherit_project": {
                  "description": "The inherit project value.",
                  "type": "boolean"
                },
                "is_task": {
                  "description": "Whether the item is a personal task. True is valid only in the authenticated caller's personal workspace and only with the Open or Done system status.",
                  "type": "boolean"
                },
                "item_type_builtin_key": {
                  "description": "The item type builtin key value.",
                  "type": "string"
                },
                "item_type_id": {
                  "description": "The item type id value.",
                  "nullable": true,
                  "type": "integer"
                },
                "item_type_name": {
                  "description": "The item type name value.",
                  "type": "string"
                },
                "iteration_end_date": {
                  "description": "The iteration end date value.",
                  "type": "string"
                },
                "iteration_id": {
                  "description": "The iteration id value.",
                  "nullable": true,
                  "type": "integer"
                },
                "iteration_name": {
                  "description": "The iteration name value.",
                  "type": "string"
                },
                "key": {
                  "description": "The key value.",
                  "type": "string"
                },
                "labels": {
                  "description": "The labels value.",
                  "items": {
                    "additionalProperties": false,
                    "properties": {
                      "color": {
                        "description": "The color value.",
                        "type": "string"
                      },
                      "created_at": {
                        "description": "The created at value.",
                        "format": "date-time",
                        "type": "string"
                      },
                      "id": {
                        "description": "The id value.",
                        "type": "integer"
                      },
                      "name": {
                        "description": "The name value.",
                        "type": "string"
                      },
                      "updated_at": {
                        "description": "The updated at value.",
                        "format": "date-time",
                        "type": "string"
                      }
                    },
                    "required": [
                      "color",
                      "created_at",
                      "id",
                      "name",
                      "updated_at"
                    ],
                    "type": "object"
                  },
                  "type": "array"
                },
                "last_active_at": {
                  "description": "The last active at value.",
                  "format": "date-time",
                  "type": "string"
                },
                "milestones": {
                  "description": "The milestones value.",
                  "items": {
                    "additionalProperties": false,
                    "properties": {
                      "category_color": {
                        "description": "The category color value.",
                        "type": "string"
                      },
                      "category_id": {
                        "description": "The category id value.",
                        "nullable": true,
                        "type": "integer"
                      },
                      "category_name": {
                        "description": "The category name value.",
                        "type": "string"
                      },
                      "created_at": {
                        "description": "The created at value.",
                        "format": "date-time",
                        "type": "string"
                      },
                      "description": {
                        "description": "The description value.",
                        "type": "string"
                      },
                      "external_key": {
                        "description": "The external key value.",
                        "nullable": true,
                        "type": "string"
                      },
                      "id": {
                        "description": "The id value.",
                        "type": "integer"
                      },
                      "is_global": {
                        "description": "The is global value.",
                        "type": "boolean"
                      },
                      "latest_release": {
                        "additionalProperties": false,
                        "description": "The latest release value.",
                        "nullable": true,
                        "properties": {
                          "body": {
                            "description": "The body value.",
                            "type": "string"
                          },
                          "created_at": {
                            "description": "The created at value.",
                            "type": "string"
                          },
                          "created_by": {
                            "description": "The created by value.",
                            "nullable": true,
                            "type": "integer"
                          },
                          "id": {
                            "description": "The id value.",
                            "type": "integer"
                          },
                          "is_draft": {
                            "description": "The is draft value.",
                            "type": "boolean"
                          },
                          "is_prerelease": {
                            "description": "The is prerelease value.",
                            "type": "boolean"
                          },
                          "milestone_id": {
                            "description": "The milestone id value.",
                            "type": "integer"
                          },
                          "name": {
                            "description": "The name value.",
                            "type": "string"
                          },
                          "scm_connection_id": {
                            "description": "The scm connection id value.",
                            "nullable": true,
                            "type": "integer"
                          },
                          "scm_release_id": {
                            "description": "The scm release id value.",
                            "nullable": true,
                            "type": "string"
                          },
                          "scm_release_url": {
                            "description": "The scm release url value.",
                            "nullable": true,
                            "type": "string"
                          },
                          "scm_repository": {
                            "description": "The scm repository value.",
                            "nullable": true,
                            "type": "string"
                          },
                          "tag_name": {
                            "description": "The tag name value.",
                            "type": "string"
                          },
                          "target_commitish": {
                            "description": "The target commitish value.",
                            "type": "string"
                          }
                        },
                        "required": [
                          "created_at",
                          "id",
                          "is_draft",
                          "is_prerelease",
                          "milestone_id",
                          "tag_name"
                        ],
                        "type": "object"
                      },
                      "name": {
                        "description": "The name value.",
                        "type": "string"
                      },
                      "position": {
                        "description": "The position value.",
                        "type": "integer"
                      },
                      "releases": {
                        "description": "The releases value.",
                        "items": {
                          "additionalProperties": false,
                          "properties": {
                            "body": {
                              "description": "The body value.",
                              "type": "string"
                            },
                            "created_at": {
                              "description": "The created at value.",
                              "type": "string"
                            },
                            "created_by": {
                              "description": "The created by value.",
                              "nullable": true,
                              "type": "integer"
                            },
                            "id": {
                              "description": "The id value.",
                              "type": "integer"
                            },
                            "is_draft": {
                              "description": "The is draft value.",
                              "type": "boolean"
                            },
                            "is_prerelease": {
                              "description": "The is prerelease value.",
                              "type": "boolean"
                            },
                            "milestone_id": {
                              "description": "The milestone id value.",
                              "type": "integer"
                            },
                            "name": {
                              "description": "The name value.",
                              "type": "string"
                            },
                            "scm_connection_id": {
                              "description": "The scm connection id value.",
                              "nullable": true,
                              "type": "integer"
                            },
                            "scm_release_id": {
                              "description": "The scm release id value.",
                              "nullable": true,
                              "type": "string"
                            },
                            "scm_release_url": {
                              "description": "The scm release url value.",
                              "nullable": true,
                              "type": "string"
                            },
                            "scm_repository": {
                              "description": "The scm repository value.",
                              "nullable": true,
                              "type": "string"
                            },
                            "tag_name": {
                              "description": "The tag name value.",
                              "type": "string"
                            },
                            "target_commitish": {
                              "description": "The target commitish value.",
                              "type": "string"
                            }
                          },
                          "required": [
                            "created_at",
                            "id",
                            "is_draft",
                            "is_prerelease",
                            "milestone_id",
                            "tag_name"
                          ],
                          "type": "object"
                        },
                        "type": "array"
                      },
                      "status": {
                        "description": "The status value.",
                        "type": "string"
                      },
                      "target_date": {
                        "description": "The target date value.",
                        "nullable": true,
                        "type": "string"
                      },
                      "updated_at": {
                        "description": "The updated at value.",
                        "format": "date-time",
                        "type": "string"
                      },
                      "workspace_id": {
                        "description": "The workspace id value.",
                        "nullable": true,
                        "type": "integer"
                      },
                      "workspace_name": {
                        "description": "The workspace name value.",
                        "type": "string"
                      }
                    },
                    "required": [
                      "created_at",
                      "description",
                      "id",
                      "is_global",
                      "name",
                      "position",
                      "status",
                      "updated_at"
                    ],
                    "type": "object"
                  },
                  "type": "array"
                },
                "parent_id": {
                  "description": "The parent id value.",
                  "nullable": true,
                  "type": "integer"
                },
                "parent_key": {
                  "description": "The parent key value.",
                  "type": "string"
                },
                "parent_title": {
                  "description": "The parent title value.",
                  "type": "string"
                },
                "parent_workspace_item_number": {
                  "description": "The parent workspace item number value.",
                  "nullable": true,
                  "type": "integer"
                },
                "personal_labels": {
                  "description": "The personal labels value.",
                  "items": {
                    "additionalProperties": false,
                    "properties": {
                      "color": {
                        "description": "The color value.",
                        "type": "string"
                      },
                      "created_at": {
                        "description": "The created at value.",
                        "format": "date-time",
                        "type": "string"
                      },
                      "id": {
                        "description": "The id value.",
                        "type": "integer"
                      },
                      "name": {
                        "description": "The name value.",
                        "type": "string"
                      },
                      "updated_at": {
                        "description": "The updated at value.",
                        "format": "date-time",
                        "type": "string"
                      },
                      "user_id": {
                        "description": "The user id value.",
                        "nullable": true,
                        "type": "integer"
                      }
                    },
                    "required": [
                      "color",
                      "created_at",
                      "id",
                      "name",
                      "updated_at"
                    ],
                    "type": "object"
                  },
                  "type": "array"
                },
                "priority_builtin_key": {
                  "description": "The priority builtin key value.",
                  "type": "string"
                },
                "priority_color": {
                  "description": "The priority color value.",
                  "type": "string"
                },
                "priority_icon": {
                  "description": "The priority icon value.",
                  "type": "string"
                },
                "priority_id": {
                  "description": "The priority id value.",
                  "nullable": true,
                  "type": "integer"
                },
                "priority_name": {
                  "description": "The priority name value.",
                  "type": "string"
                },
                "project_id": {
                  "description": "The project id value.",
                  "nullable": true,
                  "type": "integer"
                },
                "project_inheritance_mode": {
                  "description": "The project inheritance mode value.",
                  "type": "string"
                },
                "project_name": {
                  "description": "The project name value.",
                  "type": "string"
                },
                "related_work_item_id": {
                  "description": "The related work item id value.",
                  "nullable": true,
                  "type": "integer"
                },
                "related_work_item_number": {
                  "description": "The related work item number value.",
                  "type": "integer"
                },
                "related_work_item_title": {
                  "description": "The related work item title value.",
                  "type": "string"
                },
                "related_work_item_workspace_id": {
                  "description": "The related work item workspace id value.",
                  "type": "integer"
                },
                "related_work_item_workspace_key": {
                  "description": "The related work item workspace key value.",
                  "type": "string"
                },
                "reporter_avatar": {
                  "description": "The reporter avatar value.",
                  "type": "string"
                },
                "reporter_email": {
                  "description": "The reporter email value.",
                  "type": "string"
                },
                "reporter_id": {
                  "description": "The reporter id value.",
                  "nullable": true,
                  "type": "integer"
                },
                "reporter_name": {
                  "description": "The reporter name value.",
                  "type": "string"
                },
                "request_type_id": {
                  "description": "The request type id value.",
                  "nullable": true,
                  "type": "integer"
                },
                "request_type_name": {
                  "description": "The request type name value.",
                  "type": "string"
                },
                "start_date": {
                  "description": "The start date value.",
                  "format": "date-time",
                  "nullable": true,
                  "type": "string"
                },
                "status_builtin_key": {
                  "description": "The status builtin key value.",
                  "type": "string"
                },
                "status_color": {
                  "description": "The status color value.",
                  "type": "string"
                },
                "status_id": {
                  "description": "The status id value.",
                  "nullable": true,
                  "type": "integer"
                },
                "status_name": {
                  "description": "The status name value.",
                  "type": "string"
                },
                "status_since": {
                  "description": "The status since value.",
                  "format": "date-time",
                  "nullable": true,
                  "type": "string"
                },
                "story_points": {
                  "description": "The story points value.",
                  "nullable": true,
                  "type": "number"
                },
                "time_project_id": {
                  "description": "The time project id value.",
                  "nullable": true,
                  "type": "integer"
                },
                "time_project_name": {
                  "description": "The time project name value.",
                  "type": "string"
                },
                "title": {
                  "description": "The title value.",
                  "type": "string"
                },
                "updated_at": {
                  "description": "The updated at value.",
                  "format": "date-time",
                  "type": "string"
                },
                "virtual_field_data": {
                  "additionalProperties": {
                    "description": "Arbitrary JSON extension value."
                  },
                  "description": "The virtual field data value.",
                  "type": "object"
                },
                "workspace_id": {
                  "description": "The workspace id value.",
                  "type": "integer"
                },
                "workspace_item_number": {
                  "description": "The workspace item number value.",
                  "type": "integer"
                },
                "workspace_key": {
                  "description": "The workspace key value.",
                  "type": "string"
                },
                "workspace_name": {
                  "description": "The workspace name value.",
                  "type": "string"
                }
              },
              "required": [
                "created_at",
                "description",
                "id",
                "inherit_project",
                "is_task",
                "last_active_at",
                "title",
                "updated_at",
                "workspace_id",
                "workspace_item_number"
              ],
              "type": "object"
            },
            "type": "array"
          }
        },
        "required": [
          "data"
        ],
        "type": "object"
      },
      "PostItemsBulkPatchPayload": {
        "additionalProperties": false,
        "properties": {
          "patches": {
            "description": "The patches value.",
            "items": {
              "additionalProperties": false,
              "properties": {
                "item_id": {
                  "description": "The item id value.",
                  "type": "integer"
                },
                "set": {
                  "additionalProperties": {
                    "description": "Arbitrary JSON extension value."
                  },
                  "description": "The set value.",
                  "type": "object"
                }
              },
              "required": [
                "item_id",
                "set"
              ],
              "type": "object"
            },
            "type": "array"
          }
        },
        "required": [
          "patches"
        ],
        "type": "object"
      },
      "PostItemsBulkPatchResult": {
        "additionalProperties": false,
        "properties": {
          "data": {
            "additionalProperties": false,
            "properties": {
              "atomic": {
                "description": "The atomic value.",
                "type": "boolean"
              },
              "items": {
                "description": "The items value.",
                "items": {
                  "additionalProperties": false,
                  "nullable": true,
                  "properties": {
                    "assignee_avatar": {
                      "description": "The assignee avatar value.",
                      "type": "string"
                    },
                    "assignee_email": {
                      "description": "The assignee email value.",
                      "type": "string"
                    },
                    "assignee_id": {
                      "description": "The assignee id value.",
                      "nullable": true,
                      "type": "integer"
                    },
                    "assignee_name": {
                      "description": "The assignee name value.",
                      "type": "string"
                    },
                    "calendar_data": {
                      "description": "The calendar data value.",
                      "items": {
                        "additionalProperties": false,
                        "properties": {
                          "created_at": {
                            "description": "The created at value.",
                            "type": "string"
                          },
                          "duration_minutes": {
                            "description": "The duration minutes value.",
                            "type": "integer"
                          },
                          "notes": {
                            "description": "The notes value.",
                            "type": "string"
                          },
                          "scheduled_date": {
                            "description": "The scheduled date value.",
                            "type": "string"
                          },
                          "scheduled_time": {
                            "description": "The scheduled time value.",
                            "type": "string"
                          },
                          "user_id": {
                            "description": "The user id value.",
                            "type": "integer"
                          },
                          "workspace_id": {
                            "description": "The workspace id value.",
                            "type": "integer"
                          }
                        },
                        "required": [
                          "created_at",
                          "scheduled_date",
                          "user_id",
                          "workspace_id"
                        ],
                        "type": "object"
                      },
                      "type": "array"
                    },
                    "channel_id": {
                      "description": "The channel id value.",
                      "nullable": true,
                      "type": "integer"
                    },
                    "channel_name": {
                      "description": "The channel name value.",
                      "type": "string"
                    },
                    "children": {
                      "description": "The children value.",
                      "items": {
                        "description": "Nested resource reference.",
                        "type": "object"
                      },
                      "type": "array"
                    },
                    "completed_at": {
                      "description": "The completed at value.",
                      "format": "date-time",
                      "nullable": true,
                      "type": "string"
                    },
                    "created_at": {
                      "description": "The created at value.",
                      "format": "date-time",
                      "type": "string"
                    },
                    "creator_email": {
                      "description": "The creator email value.",
                      "type": "string"
                    },
                    "creator_id": {
                      "description": "The creator id value.",
                      "nullable": true,
                      "type": "integer"
                    },
                    "creator_name": {
                      "description": "The creator name value.",
                      "type": "string"
                    },
                    "creator_portal_customer_email": {
                      "description": "The creator portal customer email value.",
                      "type": "string"
                    },
                    "creator_portal_customer_id": {
                      "description": "The creator portal customer id value.",
                      "nullable": true,
                      "type": "integer"
                    },
                    "creator_portal_customer_name": {
                      "description": "The creator portal customer name value.",
                      "type": "string"
                    },
                    "custom_field_values": {
                      "additionalProperties": {
                        "description": "Arbitrary JSON extension value."
                      },
                      "description": "The custom field values value.",
                      "type": "object"
                    },
                    "description": {
                      "description": "The description value.",
                      "type": "string"
                    },
                    "description_html": {
                      "description": "The description html value.",
                      "type": "string"
                    },
                    "due_date": {
                      "description": "The due date value.",
                      "format": "date-time",
                      "nullable": true,
                      "type": "string"
                    },
                    "effective_project_id": {
                      "description": "The effective project id value.",
                      "nullable": true,
                      "type": "integer"
                    },
                    "effective_project_name": {
                      "description": "The effective project name value.",
                      "type": "string"
                    },
                    "end_date": {
                      "description": "The end date value.",
                      "format": "date-time",
                      "nullable": true,
                      "type": "string"
                    },
                    "estimate_minutes": {
                      "description": "The estimate minutes value.",
                      "nullable": true,
                      "type": "integer"
                    },
                    "frac_index": {
                      "description": "The frac index value.",
                      "nullable": true,
                      "type": "string"
                    },
                    "id": {
                      "description": "The id value.",
                      "type": "integer"
                    },
                    "inherit_project": {
                      "description": "The inherit project value.",
                      "type": "boolean"
                    },
                    "is_task": {
                      "description": "Whether the item is a personal task. True is valid only in the authenticated caller's personal workspace and only with the Open or Done system status.",
                      "type": "boolean"
                    },
                    "item_type_builtin_key": {
                      "description": "The item type builtin key value.",
                      "type": "string"
                    },
                    "item_type_id": {
                      "description": "The item type id value.",
                      "nullable": true,
                      "type": "integer"
                    },
                    "item_type_name": {
                      "description": "The item type name value.",
                      "type": "string"
                    },
                    "iteration_end_date": {
                      "description": "The iteration end date value.",
                      "type": "string"
                    },
                    "iteration_id": {
                      "description": "The iteration id value.",
                      "nullable": true,
                      "type": "integer"
                    },
                    "iteration_name": {
                      "description": "The iteration name value.",
                      "type": "string"
                    },
                    "key": {
                      "description": "The key value.",
                      "type": "string"
                    },
                    "labels": {
                      "description": "The labels value.",
                      "items": {
                        "additionalProperties": false,
                        "properties": {
                          "color": {
                            "description": "The color value.",
                            "type": "string"
                          },
                          "created_at": {
                            "description": "The created at value.",
                            "format": "date-time",
                            "type": "string"
                          },
                          "id": {
                            "description": "The id value.",
                            "type": "integer"
                          },
                          "name": {
                            "description": "The name value.",
                            "type": "string"
                          },
                          "updated_at": {
                            "description": "The updated at value.",
                            "format": "date-time",
                            "type": "string"
                          }
                        },
                        "required": [
                          "color",
                          "created_at",
                          "id",
                          "name",
                          "updated_at"
                        ],
                        "type": "object"
                      },
                      "type": "array"
                    },
                    "last_active_at": {
                      "description": "The last active at value.",
                      "format": "date-time",
                      "type": "string"
                    },
                    "milestones": {
                      "description": "The milestones value.",
                      "items": {
                        "additionalProperties": false,
                        "properties": {
                          "category_color": {
                            "description": "The category color value.",
                            "type": "string"
                          },
                          "category_id": {
                            "description": "The category id value.",
                            "nullable": true,
                            "type": "integer"
                          },
                          "category_name": {
                            "description": "The category name value.",
                            "type": "string"
                          },
                          "created_at": {
                            "description": "The created at value.",
                            "format": "date-time",
                            "type": "string"
                          },
                          "description": {
                            "description": "The description value.",
                            "type": "string"
                          },
                          "external_key": {
                            "description": "The external key value.",
                            "nullable": true,
                            "type": "string"
                          },
                          "id": {
                            "description": "The id value.",
                            "type": "integer"
                          },
                          "is_global": {
                            "description": "The is global value.",
                            "type": "boolean"
                          },
                          "latest_release": {
                            "additionalProperties": false,
                            "description": "The latest release value.",
                            "nullable": true,
                            "properties": {
                              "body": {
                                "description": "The body value.",
                                "type": "string"
                              },
                              "created_at": {
                                "description": "The created at value.",
                                "type": "string"
                              },
                              "created_by": {
                                "description": "The created by value.",
                                "nullable": true,
                                "type": "integer"
                              },
                              "id": {
                                "description": "The id value.",
                                "type": "integer"
                              },
                              "is_draft": {
                                "description": "The is draft value.",
                                "type": "boolean"
                              },
                              "is_prerelease": {
                                "description": "The is prerelease value.",
                                "type": "boolean"
                              },
                              "milestone_id": {
                                "description": "The milestone id value.",
                                "type": "integer"
                              },
                              "name": {
                                "description": "The name value.",
                                "type": "string"
                              },
                              "scm_connection_id": {
                                "description": "The scm connection id value.",
                                "nullable": true,
                                "type": "integer"
                              },
                              "scm_release_id": {
                                "description": "The scm release id value.",
                                "nullable": true,
                                "type": "string"
                              },
                              "scm_release_url": {
                                "description": "The scm release url value.",
                                "nullable": true,
                                "type": "string"
                              },
                              "scm_repository": {
                                "description": "The scm repository value.",
                                "nullable": true,
                                "type": "string"
                              },
                              "tag_name": {
                                "description": "The tag name value.",
                                "type": "string"
                              },
                              "target_commitish": {
                                "description": "The target commitish value.",
                                "type": "string"
                              }
                            },
                            "required": [
                              "created_at",
                              "id",
                              "is_draft",
                              "is_prerelease",
                              "milestone_id",
                              "tag_name"
                            ],
                            "type": "object"
                          },
                          "name": {
                            "description": "The name value.",
                            "type": "string"
                          },
                          "position": {
                            "description": "The position value.",
                            "type": "integer"
                          },
                          "releases": {
                            "description": "The releases value.",
                            "items": {
                              "additionalProperties": false,
                              "properties": {
                                "body": {
                                  "description": "The body value.",
                                  "type": "string"
                                },
                                "created_at": {
                                  "description": "The created at value.",
                                  "type": "string"
                                },
                                "created_by": {
                                  "description": "The created by value.",
                                  "nullable": true,
                                  "type": "integer"
                                },
                                "id": {
                                  "description": "The id value.",
                                  "type": "integer"
                                },
                                "is_draft": {
                                  "description": "The is draft value.",
                                  "type": "boolean"
                                },
                                "is_prerelease": {
                                  "description": "The is prerelease value.",
                                  "type": "boolean"
                                },
                                "milestone_id": {
                                  "description": "The milestone id value.",
                                  "type": "integer"
                                },
                                "name": {
                                  "description": "The name value.",
                                  "type": "string"
                                },
                                "scm_connection_id": {
                                  "description": "The scm connection id value.",
                                  "nullable": true,
                                  "type": "integer"
                                },
                                "scm_release_id": {
                                  "description": "The scm release id value.",
                                  "nullable": true,
                                  "type": "string"
                                },
                                "scm_release_url": {
                                  "description": "The scm release url value.",
                                  "nullable": true,
                                  "type": "string"
                                },
                                "scm_repository": {
                                  "description": "The scm repository value.",
                                  "nullable": true,
                                  "type": "string"
                                },
                                "tag_name": {
                                  "description": "The tag name value.",
                                  "type": "string"
                                },
                                "target_commitish": {
                                  "description": "The target commitish value.",
                                  "type": "string"
                                }
                              },
                              "required": [
                                "created_at",
                                "id",
                                "is_draft",
                                "is_prerelease",
                                "milestone_id",
                                "tag_name"
                              ],
                              "type": "object"
                            },
                            "type": "array"
                          },
                          "status": {
                            "description": "The status value.",
                            "type": "string"
                          },
                          "target_date": {
                            "description": "The target date value.",
                            "nullable": true,
                            "type": "string"
                          },
                          "updated_at": {
                            "description": "The updated at value.",
                            "format": "date-time",
                            "type": "string"
                          },
                          "workspace_id": {
                            "description": "The workspace id value.",
                            "nullable": true,
                            "type": "integer"
                          },
                          "workspace_name": {
                            "description": "The workspace name value.",
                            "type": "string"
                          }
                        },
                        "required": [
                          "created_at",
                          "description",
                          "id",
                          "is_global",
                          "name",
                          "position",
                          "status",
                          "updated_at"
                        ],
                        "type": "object"
                      },
                      "type": "array"
                    },
                    "parent_id": {
                      "description": "The parent id value.",
                      "nullable": true,
                      "type": "integer"
                    },
                    "parent_key": {
                      "description": "The parent key value.",
                      "type": "string"
                    },
                    "parent_title": {
                      "description": "The parent title value.",
                      "type": "string"
                    },
                    "parent_workspace_item_number": {
                      "description": "The parent workspace item number value.",
                      "nullable": true,
                      "type": "integer"
                    },
                    "personal_labels": {
                      "description": "The personal labels value.",
                      "items": {
                        "additionalProperties": false,
                        "properties": {
                          "color": {
                            "description": "The color value.",
                            "type": "string"
                          },
                          "created_at": {
                            "description": "The created at value.",
                            "format": "date-time",
                            "type": "string"
                          },
                          "id": {
                            "description": "The id value.",
                            "type": "integer"
                          },
                          "name": {
                            "description": "The name value.",
                            "type": "string"
                          },
                          "updated_at": {
                            "description": "The updated at value.",
                            "format": "date-time",
                            "type": "string"
                          },
                          "user_id": {
                            "description": "The user id value.",
                            "nullable": true,
                            "type": "integer"
                          }
                        },
                        "required": [
                          "color",
                          "created_at",
                          "id",
                          "name",
                          "updated_at"
                        ],
                        "type": "object"
                      },
                      "type": "array"
                    },
                    "priority_builtin_key": {
                      "description": "The priority builtin key value.",
                      "type": "string"
                    },
                    "priority_color": {
                      "description": "The priority color value.",
                      "type": "string"
                    },
                    "priority_icon": {
                      "description": "The priority icon value.",
                      "type": "string"
                    },
                    "priority_id": {
                      "description": "The priority id value.",
                      "nullable": true,
                      "type": "integer"
                    },
                    "priority_name": {
                      "description": "The priority name value.",
                      "type": "string"
                    },
                    "project_id": {
                      "description": "The project id value.",
                      "nullable": true,
                      "type": "integer"
                    },
                    "project_inheritance_mode": {
                      "description": "The project inheritance mode value.",
                      "type": "string"
                    },
                    "project_name": {
                      "description": "The project name value.",
                      "type": "string"
                    },
                    "related_work_item_id": {
                      "description": "The related work item id value.",
                      "nullable": true,
                      "type": "integer"
                    },
                    "related_work_item_number": {
                      "description": "The related work item number value.",
                      "type": "integer"
                    },
                    "related_work_item_title": {
                      "description": "The related work item title value.",
                      "type": "string"
                    },
                    "related_work_item_workspace_id": {
                      "description": "The related work item workspace id value.",
                      "type": "integer"
                    },
                    "related_work_item_workspace_key": {
                      "description": "The related work item workspace key value.",
                      "type": "string"
                    },
                    "reporter_avatar": {
                      "description": "The reporter avatar value.",
                      "type": "string"
                    },
                    "reporter_email": {
                      "description": "The reporter email value.",
                      "type": "string"
                    },
                    "reporter_id": {
                      "description": "The reporter id value.",
                      "nullable": true,
                      "type": "integer"
                    },
                    "reporter_name": {
                      "description": "The reporter name value.",
                      "type": "string"
                    },
                    "request_type_id": {
                      "description": "The request type id value.",
                      "nullable": true,
                      "type": "integer"
                    },
                    "request_type_name": {
                      "description": "The request type name value.",
                      "type": "string"
                    },
                    "start_date": {
                      "description": "The start date value.",
                      "format": "date-time",
                      "nullable": true,
                      "type": "string"
                    },
                    "status_builtin_key": {
                      "description": "The status builtin key value.",
                      "type": "string"
                    },
                    "status_color": {
                      "description": "The status color value.",
                      "type": "string"
                    },
                    "status_id": {
                      "description": "The status id value.",
                      "nullable": true,
                      "type": "integer"
                    },
                    "status_name": {
                      "description": "The status name value.",
                      "type": "string"
                    },
                    "status_since": {
                      "description": "The status since value.",
                      "format": "date-time",
                      "nullable": true,
                      "type": "string"
                    },
                    "story_points": {
                      "description": "The story points value.",
                      "nullable": true,
                      "type": "number"
                    },
                    "time_project_id": {
                      "description": "The time project id value.",
                      "nullable": true,
                      "type": "integer"
                    },
                    "time_project_name": {
                      "description": "The time project name value.",
                      "type": "string"
                    },
                    "title": {
                      "description": "The title value.",
                      "type": "string"
                    },
                    "updated_at": {
                      "description": "The updated at value.",
                      "format": "date-time",
                      "type": "string"
                    },
                    "virtual_field_data": {
                      "additionalProperties": {
                        "description": "Arbitrary JSON extension value."
                      },
                      "description": "The virtual field data value.",
                      "type": "object"
                    },
                    "workspace_id": {
                      "description": "The workspace id value.",
                      "type": "integer"
                    },
                    "workspace_item_number": {
                      "description": "The workspace item number value.",
                      "type": "integer"
                    },
                    "workspace_key": {
                      "description": "The workspace key value.",
                      "type": "string"
                    },
                    "workspace_name": {
                      "description": "The workspace name value.",
                      "type": "string"
                    }
                  },
                  "required": [
                    "created_at",
                    "description",
                    "id",
                    "inherit_project",
                    "is_task",
                    "last_active_at",
                    "title",
                    "updated_at",
                    "workspace_id",
                    "workspace_item_number"
                  ],
                  "type": "object"
                },
                "type": "array"
              },
              "requested_count": {
                "description": "The requested count value.",
                "type": "integer"
              },
              "unchanged_count": {
                "description": "The unchanged count value.",
                "type": "integer"
              },
              "updated_count": {
                "description": "The updated count value.",
                "type": "integer"
              }
            },
            "required": [
              "atomic",
              "items",
              "requested_count",
              "unchanged_count",
              "updated_count"
            ],
            "type": "object"
          }
        },
        "required": [
          "data"
        ],
        "type": "object"
      },
      "PostItemsBulkUpdatePayload": {
        "additionalProperties": false,
        "properties": {
          "item_ids": {
            "description": "The item ids value.",
            "items": {
              "type": "integer"
            },
            "type": "array"
          },
          "set": {
            "additionalProperties": {
              "description": "Arbitrary JSON extension value."
            },
            "description": "The set value.",
            "type": "object"
          }
        },
        "required": [
          "item_ids",
          "set"
        ],
        "type": "object"
      },
      "PostItemsBulkUpdateResult": {
        "additionalProperties": false,
        "properties": {
          "data": {
            "additionalProperties": false,
            "properties": {
              "atomic": {
                "description": "The atomic value.",
                "type": "boolean"
              },
              "items": {
                "description": "The items value.",
                "items": {
                  "additionalProperties": false,
                  "nullable": true,
                  "properties": {
                    "assignee_avatar": {
                      "description": "The assignee avatar value.",
                      "type": "string"
                    },
                    "assignee_email": {
                      "description": "The assignee email value.",
                      "type": "string"
                    },
                    "assignee_id": {
                      "description": "The assignee id value.",
                      "nullable": true,
                      "type": "integer"
                    },
                    "assignee_name": {
                      "description": "The assignee name value.",
                      "type": "string"
                    },
                    "calendar_data": {
                      "description": "The calendar data value.",
                      "items": {
                        "additionalProperties": false,
                        "properties": {
                          "created_at": {
                            "description": "The created at value.",
                            "type": "string"
                          },
                          "duration_minutes": {
                            "description": "The duration minutes value.",
                            "type": "integer"
                          },
                          "notes": {
                            "description": "The notes value.",
                            "type": "string"
                          },
                          "scheduled_date": {
                            "description": "The scheduled date value.",
                            "type": "string"
                          },
                          "scheduled_time": {
                            "description": "The scheduled time value.",
                            "type": "string"
                          },
                          "user_id": {
                            "description": "The user id value.",
                            "type": "integer"
                          },
                          "workspace_id": {
                            "description": "The workspace id value.",
                            "type": "integer"
                          }
                        },
                        "required": [
                          "created_at",
                          "scheduled_date",
                          "user_id",
                          "workspace_id"
                        ],
                        "type": "object"
                      },
                      "type": "array"
                    },
                    "channel_id": {
                      "description": "The channel id value.",
                      "nullable": true,
                      "type": "integer"
                    },
                    "channel_name": {
                      "description": "The channel name value.",
                      "type": "string"
                    },
                    "children": {
                      "description": "The children value.",
                      "items": {
                        "description": "Nested resource reference.",
                        "type": "object"
                      },
                      "type": "array"
                    },
                    "completed_at": {
                      "description": "The completed at value.",
                      "format": "date-time",
                      "nullable": true,
                      "type": "string"
                    },
                    "created_at": {
                      "description": "The created at value.",
                      "format": "date-time",
                      "type": "string"
                    },
                    "creator_email": {
                      "description": "The creator email value.",
                      "type": "string"
                    },
                    "creator_id": {
                      "description": "The creator id value.",
                      "nullable": true,
                      "type": "integer"
                    },
                    "creator_name": {
                      "description": "The creator name value.",
                      "type": "string"
                    },
                    "creator_portal_customer_email": {
                      "description": "The creator portal customer email value.",
                      "type": "string"
                    },
                    "creator_portal_customer_id": {
                      "description": "The creator portal customer id value.",
                      "nullable": true,
                      "type": "integer"
                    },
                    "creator_portal_customer_name": {
                      "description": "The creator portal customer name value.",
                      "type": "string"
                    },
                    "custom_field_values": {
                      "additionalProperties": {
                        "description": "Arbitrary JSON extension value."
                      },
                      "description": "The custom field values value.",
                      "type": "object"
                    },
                    "description": {
                      "description": "The description value.",
                      "type": "string"
                    },
                    "description_html": {
                      "description": "The description html value.",
                      "type": "string"
                    },
                    "due_date": {
                      "description": "The due date value.",
                      "format": "date-time",
                      "nullable": true,
                      "type": "string"
                    },
                    "effective_project_id": {
                      "description": "The effective project id value.",
                      "nullable": true,
                      "type": "integer"
                    },
                    "effective_project_name": {
                      "description": "The effective project name value.",
                      "type": "string"
                    },
                    "end_date": {
                      "description": "The end date value.",
                      "format": "date-time",
                      "nullable": true,
                      "type": "string"
                    },
                    "estimate_minutes": {
                      "description": "The estimate minutes value.",
                      "nullable": true,
                      "type": "integer"
                    },
                    "frac_index": {
                      "description": "The frac index value.",
                      "nullable": true,
                      "type": "string"
                    },
                    "id": {
                      "description": "The id value.",
                      "type": "integer"
                    },
                    "inherit_project": {
                      "description": "The inherit project value.",
                      "type": "boolean"
                    },
                    "is_task": {
                      "description": "Whether the item is a personal task. True is valid only in the authenticated caller's personal workspace and only with the Open or Done system status.",
                      "type": "boolean"
                    },
                    "item_type_builtin_key": {
                      "description": "The item type builtin key value.",
                      "type": "string"
                    },
                    "item_type_id": {
                      "description": "The item type id value.",
                      "nullable": true,
                      "type": "integer"
                    },
                    "item_type_name": {
                      "description": "The item type name value.",
                      "type": "string"
                    },
                    "iteration_end_date": {
                      "description": "The iteration end date value.",
                      "type": "string"
                    },
                    "iteration_id": {
                      "description": "The iteration id value.",
                      "nullable": true,
                      "type": "integer"
                    },
                    "iteration_name": {
                      "description": "The iteration name value.",
                      "type": "string"
                    },
                    "key": {
                      "description": "The key value.",
                      "type": "string"
                    },
                    "labels": {
                      "description": "The labels value.",
                      "items": {
                        "additionalProperties": false,
                        "properties": {
                          "color": {
                            "description": "The color value.",
                            "type": "string"
                          },
                          "created_at": {
                            "description": "The created at value.",
                            "format": "date-time",
                            "type": "string"
                          },
                          "id": {
                            "description": "The id value.",
                            "type": "integer"
                          },
                          "name": {
                            "description": "The name value.",
                            "type": "string"
                          },
                          "updated_at": {
                            "description": "The updated at value.",
                            "format": "date-time",
                            "type": "string"
                          }
                        },
                        "required": [
                          "color",
                          "created_at",
                          "id",
                          "name",
                          "updated_at"
                        ],
                        "type": "object"
                      },
                      "type": "array"
                    },
                    "last_active_at": {
                      "description": "The last active at value.",
                      "format": "date-time",
                      "type": "string"
                    },
                    "milestones": {
                      "description": "The milestones value.",
                      "items": {
                        "additionalProperties": false,
                        "properties": {
                          "category_color": {
                            "description": "The category color value.",
                            "type": "string"
                          },
                          "category_id": {
                            "description": "The category id value.",
                            "nullable": true,
                            "type": "integer"
                          },
                          "category_name": {
                            "description": "The category name value.",
                            "type": "string"
                          },
                          "created_at": {
                            "description": "The created at value.",
                            "format": "date-time",
                            "type": "string"
                          },
                          "description": {
                            "description": "The description value.",
                            "type": "string"
                          },
                          "external_key": {
                            "description": "The external key value.",
                            "nullable": true,
                            "type": "string"
                          },
                          "id": {
                            "description": "The id value.",
                            "type": "integer"
                          },
                          "is_global": {
                            "description": "The is global value.",
                            "type": "boolean"
                          },
                          "latest_release": {
                            "additionalProperties": false,
                            "description": "The latest release value.",
                            "nullable": true,
                            "properties": {
                              "body": {
                                "description": "The body value.",
                                "type": "string"
                              },
                              "created_at": {
                                "description": "The created at value.",
                                "type": "string"
                              },
                              "created_by": {
                                "description": "The created by value.",
                                "nullable": true,
                                "type": "integer"
                              },
                              "id": {
                                "description": "The id value.",
                                "type": "integer"
                              },
                              "is_draft": {
                                "description": "The is draft value.",
                                "type": "boolean"
                              },
                              "is_prerelease": {
                                "description": "The is prerelease value.",
                                "type": "boolean"
                              },
                              "milestone_id": {
                                "description": "The milestone id value.",
                                "type": "integer"
                              },
                              "name": {
                                "description": "The name value.",
                                "type": "string"
                              },
                              "scm_connection_id": {
                                "description": "The scm connection id value.",
                                "nullable": true,
                                "type": "integer"
                              },
                              "scm_release_id": {
                                "description": "The scm release id value.",
                                "nullable": true,
                                "type": "string"
                              },
                              "scm_release_url": {
                                "description": "The scm release url value.",
                                "nullable": true,
                                "type": "string"
                              },
                              "scm_repository": {
                                "description": "The scm repository value.",
                                "nullable": true,
                                "type": "string"
                              },
                              "tag_name": {
                                "description": "The tag name value.",
                                "type": "string"
                              },
                              "target_commitish": {
                                "description": "The target commitish value.",
                                "type": "string"
                              }
                            },
                            "required": [
                              "created_at",
                              "id",
                              "is_draft",
                              "is_prerelease",
                              "milestone_id",
                              "tag_name"
                            ],
                            "type": "object"
                          },
                          "name": {
                            "description": "The name value.",
                            "type": "string"
                          },
                          "position": {
                            "description": "The position value.",
                            "type": "integer"
                          },
                          "releases": {
                            "description": "The releases value.",
                            "items": {
                              "additionalProperties": false,
                              "properties": {
                                "body": {
                                  "description": "The body value.",
                                  "type": "string"
                                },
                                "created_at": {
                                  "description": "The created at value.",
                                  "type": "string"
                                },
                                "created_by": {
                                  "description": "The created by value.",
                                  "nullable": true,
                                  "type": "integer"
                                },
                                "id": {
                                  "description": "The id value.",
                                  "type": "integer"
                                },
                                "is_draft": {
                                  "description": "The is draft value.",
                                  "type": "boolean"
                                },
                                "is_prerelease": {
                                  "description": "The is prerelease value.",
                                  "type": "boolean"
                                },
                                "milestone_id": {
                                  "description": "The milestone id value.",
                                  "type": "integer"
                                },
                                "name": {
                                  "description": "The name value.",
                                  "type": "string"
                                },
                                "scm_connection_id": {
                                  "description": "The scm connection id value.",
                                  "nullable": true,
                                  "type": "integer"
                                },
                                "scm_release_id": {
                                  "description": "The scm release id value.",
                                  "nullable": true,
                                  "type": "string"
                                },
                                "scm_release_url": {
                                  "description": "The scm release url value.",
                                  "nullable": true,
                                  "type": "string"
                                },
                                "scm_repository": {
                                  "description": "The scm repository value.",
                                  "nullable": true,
                                  "type": "string"
                                },
                                "tag_name": {
                                  "description": "The tag name value.",
                                  "type": "string"
                                },
                                "target_commitish": {
                                  "description": "The target commitish value.",
                                  "type": "string"
                                }
                              },
                              "required": [
                                "created_at",
                                "id",
                                "is_draft",
                                "is_prerelease",
                                "milestone_id",
                                "tag_name"
                              ],
                              "type": "object"
                            },
                            "type": "array"
                          },
                          "status": {
                            "description": "The status value.",
                            "type": "string"
                          },
                          "target_date": {
                            "description": "The target date value.",
                            "nullable": true,
                            "type": "string"
                          },
                          "updated_at": {
                            "description": "The updated at value.",
                            "format": "date-time",
                            "type": "string"
                          },
                          "workspace_id": {
                            "description": "The workspace id value.",
                            "nullable": true,
                            "type": "integer"
                          },
                          "workspace_name": {
                            "description": "The workspace name value.",
                            "type": "string"
                          }
                        },
                        "required": [
                          "created_at",
                          "description",
                          "id",
                          "is_global",
                          "name",
                          "position",
                          "status",
                          "updated_at"
                        ],
                        "type": "object"
                      },
                      "type": "array"
                    },
                    "parent_id": {
                      "description": "The parent id value.",
                      "nullable": true,
                      "type": "integer"
                    },
                    "parent_key": {
                      "description": "The parent key value.",
                      "type": "string"
                    },
                    "parent_title": {
                      "description": "The parent title value.",
                      "type": "string"
                    },
                    "parent_workspace_item_number": {
                      "description": "The parent workspace item number value.",
                      "nullable": true,
                      "type": "integer"
                    },
                    "personal_labels": {
                      "description": "The personal labels value.",
                      "items": {
                        "additionalProperties": false,
                        "properties": {
                          "color": {
                            "description": "The color value.",
                            "type": "string"
                          },
                          "created_at": {
                            "description": "The created at value.",
                            "format": "date-time",
                            "type": "string"
                          },
                          "id": {
                            "description": "The id value.",
                            "type": "integer"
                          },
                          "name": {
                            "description": "The name value.",
                            "type": "string"
                          },
                          "updated_at": {
                            "description": "The updated at value.",
                            "format": "date-time",
                            "type": "string"
                          },
                          "user_id": {
                            "description": "The user id value.",
                            "nullable": true,
                            "type": "integer"
                          }
                        },
                        "required": [
                          "color",
                          "created_at",
                          "id",
                          "name",
                          "updated_at"
                        ],
                        "type": "object"
                      },
                      "type": "array"
                    },
                    "priority_builtin_key": {
                      "description": "The priority builtin key value.",
                      "type": "string"
                    },
                    "priority_color": {
                      "description": "The priority color value.",
                      "type": "string"
                    },
                    "priority_icon": {
                      "description": "The priority icon value.",
                      "type": "string"
                    },
                    "priority_id": {
                      "description": "The priority id value.",
                      "nullable": true,
                      "type": "integer"
                    },
                    "priority_name": {
                      "description": "The priority name value.",
                      "type": "string"
                    },
                    "project_id": {
                      "description": "The project id value.",
                      "nullable": true,
                      "type": "integer"
                    },
                    "project_inheritance_mode": {
                      "description": "The project inheritance mode value.",
                      "type": "string"
                    },
                    "project_name": {
                      "description": "The project name value.",
                      "type": "string"
                    },
                    "related_work_item_id": {
                      "description": "The related work item id value.",
                      "nullable": true,
                      "type": "integer"
                    },
                    "related_work_item_number": {
                      "description": "The related work item number value.",
                      "type": "integer"
                    },
                    "related_work_item_title": {
                      "description": "The related work item title value.",
                      "type": "string"
                    },
                    "related_work_item_workspace_id": {
                      "description": "The related work item workspace id value.",
                      "type": "integer"
                    },
                    "related_work_item_workspace_key": {
                      "description": "The related work item workspace key value.",
                      "type": "string"
                    },
                    "reporter_avatar": {
                      "description": "The reporter avatar value.",
                      "type": "string"
                    },
                    "reporter_email": {
                      "description": "The reporter email value.",
                      "type": "string"
                    },
                    "reporter_id": {
                      "description": "The reporter id value.",
                      "nullable": true,
                      "type": "integer"
                    },
                    "reporter_name": {
                      "description": "The reporter name value.",
                      "type": "string"
                    },
                    "request_type_id": {
                      "description": "The request type id value.",
                      "nullable": true,
                      "type": "integer"
                    },
                    "request_type_name": {
                      "description": "The request type name value.",
                      "type": "string"
                    },
                    "start_date": {
                      "description": "The start date value.",
                      "format": "date-time",
                      "nullable": true,
                      "type": "string"
                    },
                    "status_builtin_key": {
                      "description": "The status builtin key value.",
                      "type": "string"
                    },
                    "status_color": {
                      "description": "The status color value.",
                      "type": "string"
                    },
                    "status_id": {
                      "description": "The status id value.",
                      "nullable": true,
                      "type": "integer"
                    },
                    "status_name": {
                      "description": "The status name value.",
                      "type": "string"
                    },
                    "status_since": {
                      "description": "The status since value.",
                      "format": "date-time",
                      "nullable": true,
                      "type": "string"
                    },
                    "story_points": {
                      "description": "The story points value.",
                      "nullable": true,
                      "type": "number"
                    },
                    "time_project_id": {
                      "description": "The time project id value.",
                      "nullable": true,
                      "type": "integer"
                    },
                    "time_project_name": {
                      "description": "The time project name value.",
                      "type": "string"
                    },
                    "title": {
                      "description": "The title value.",
                      "type": "string"
                    },
                    "updated_at": {
                      "description": "The updated at value.",
                      "format": "date-time",
                      "type": "string"
                    },
                    "virtual_field_data": {
                      "additionalProperties": {
                        "description": "Arbitrary JSON extension value."
                      },
                      "description": "The virtual field data value.",
                      "type": "object"
                    },
                    "workspace_id": {
                      "description": "The workspace id value.",
                      "type": "integer"
                    },
                    "workspace_item_number": {
                      "description": "The workspace item number value.",
                      "type": "integer"
                    },
                    "workspace_key": {
                      "description": "The workspace key value.",
                      "type": "string"
                    },
                    "workspace_name": {
                      "description": "The workspace name value.",
                      "type": "string"
                    }
                  },
                  "required": [
                    "created_at",
                    "description",
                    "id",
                    "inherit_project",
                    "is_task",
                    "last_active_at",
                    "title",
                    "updated_at",
                    "workspace_id",
                    "workspace_item_number"
                  ],
                  "type": "object"
                },
                "type": "array"
              },
              "requested_count": {
                "description": "The requested count value.",
                "type": "integer"
              },
              "unchanged_count": {
                "description": "The unchanged count value.",
                "type": "integer"
              },
              "updated_count": {
                "description": "The updated count value.",
                "type": "integer"
              }
            },
            "required": [
              "atomic",
              "items",
              "requested_count",
              "unchanged_count",
              "updated_count"
            ],
            "type": "object"
          }
        },
        "required": [
          "data"
        ],
        "type": "object"
      },
      "PostItemsItemIdAgentRunsResult": {
        "additionalProperties": false,
        "properties": {
          "data": {
            "additionalProperties": false,
            "properties": {
              "started": {
                "description": "The started value.",
                "type": "boolean"
              }
            },
            "required": [
              "started"
            ],
            "type": "object"
          }
        },
        "required": [
          "data"
        ],
        "type": "object"
      },
      "PostItemsItemIdAttachmentsPayload": {
        "additionalProperties": false,
        "properties": {
          "file": {
            "description": "The file value.",
            "format": "byte",
            "type": "string"
          }
        },
        "required": [
          "file"
        ],
        "type": "object"
      },
      "PostItemsItemIdAttachmentsResult": {
        "additionalProperties": false,
        "properties": {
          "data": {
            "additionalProperties": false,
            "properties": {
              "created_at": {
                "description": "The created at value.",
                "format": "date-time",
                "type": "string"
              },
              "file_size": {
                "description": "The file size value.",
                "type": "integer"
              },
              "filename": {
                "description": "The filename value.",
                "type": "string"
              },
              "has_thumbnail": {
                "description": "The has thumbnail value.",
                "type": "boolean"
              },
              "id": {
                "description": "The id value.",
                "type": "integer"
              },
              "item_id": {
                "description": "The item id value.",
                "nullable": true,
                "type": "integer"
              },
              "mime_type": {
                "description": "The mime type value.",
                "type": "string"
              },
              "original_filename": {
                "description": "The original filename value.",
                "type": "string"
              },
              "uploaded_by": {
                "description": "The uploaded by value.",
                "nullable": true,
                "type": "integer"
              },
              "uploader_email": {
                "description": "The uploader email value.",
                "type": "string"
              },
              "uploader_name": {
                "description": "The uploader name value.",
                "type": "string"
              }
            },
            "required": [
              "created_at",
              "file_size",
              "filename",
              "has_thumbnail",
              "id",
              "mime_type",
              "original_filename"
            ],
            "type": "object"
          }
        },
        "required": [
          "data"
        ],
        "type": "object"
      },
      "PostItemsItemIdCascadeDeletionResult": {
        "additionalProperties": false,
        "properties": {
          "data": {
            "additionalProperties": false,
            "properties": {
              "count": {
                "description": "The count value.",
                "type": "integer"
              }
            },
            "required": [
              "count"
            ],
            "type": "object"
          }
        },
        "required": [
          "data"
        ],
        "type": "object"
      },
      "PostItemsItemIdChangeTypePayload": {
        "additionalProperties": false,
        "properties": {
          "target_item_type_id": {
            "description": "The target item type id value.",
            "type": "integer"
          },
          "target_status_id": {
            "description": "The target status id value.",
            "nullable": true,
            "type": "integer"
          }
        },
        "required": [
          "target_item_type_id"
        ],
        "type": "object"
      },
      "PostItemsItemIdChangeTypeResult": {
        "additionalProperties": false,
        "properties": {
          "data": {
            "additionalProperties": false,
            "nullable": true,
            "properties": {
              "assignee_avatar": {
                "description": "The assignee avatar value.",
                "type": "string"
              },
              "assignee_email": {
                "description": "The assignee email value.",
                "type": "string"
              },
              "assignee_id": {
                "description": "The assignee id value.",
                "nullable": true,
                "type": "integer"
              },
              "assignee_name": {
                "description": "The assignee name value.",
                "type": "string"
              },
              "calendar_data": {
                "description": "The calendar data value.",
                "items": {
                  "additionalProperties": false,
                  "properties": {
                    "created_at": {
                      "description": "The created at value.",
                      "type": "string"
                    },
                    "duration_minutes": {
                      "description": "The duration minutes value.",
                      "type": "integer"
                    },
                    "notes": {
                      "description": "The notes value.",
                      "type": "string"
                    },
                    "scheduled_date": {
                      "description": "The scheduled date value.",
                      "type": "string"
                    },
                    "scheduled_time": {
                      "description": "The scheduled time value.",
                      "type": "string"
                    },
                    "user_id": {
                      "description": "The user id value.",
                      "type": "integer"
                    },
                    "workspace_id": {
                      "description": "The workspace id value.",
                      "type": "integer"
                    }
                  },
                  "required": [
                    "created_at",
                    "scheduled_date",
                    "user_id",
                    "workspace_id"
                  ],
                  "type": "object"
                },
                "type": "array"
              },
              "channel_id": {
                "description": "The channel id value.",
                "nullable": true,
                "type": "integer"
              },
              "channel_name": {
                "description": "The channel name value.",
                "type": "string"
              },
              "children": {
                "description": "The children value.",
                "items": {
                  "description": "Nested resource reference.",
                  "type": "object"
                },
                "type": "array"
              },
              "completed_at": {
                "description": "The completed at value.",
                "format": "date-time",
                "nullable": true,
                "type": "string"
              },
              "created_at": {
                "description": "The created at value.",
                "format": "date-time",
                "type": "string"
              },
              "creator_email": {
                "description": "The creator email value.",
                "type": "string"
              },
              "creator_id": {
                "description": "The creator id value.",
                "nullable": true,
                "type": "integer"
              },
              "creator_name": {
                "description": "The creator name value.",
                "type": "string"
              },
              "creator_portal_customer_email": {
                "description": "The creator portal customer email value.",
                "type": "string"
              },
              "creator_portal_customer_id": {
                "description": "The creator portal customer id value.",
                "nullable": true,
                "type": "integer"
              },
              "creator_portal_customer_name": {
                "description": "The creator portal customer name value.",
                "type": "string"
              },
              "custom_field_values": {
                "additionalProperties": {
                  "description": "Arbitrary JSON extension value."
                },
                "description": "The custom field values value.",
                "type": "object"
              },
              "description": {
                "description": "The description value.",
                "type": "string"
              },
              "description_html": {
                "description": "The description html value.",
                "type": "string"
              },
              "due_date": {
                "description": "The due date value.",
                "format": "date-time",
                "nullable": true,
                "type": "string"
              },
              "effective_project_id": {
                "description": "The effective project id value.",
                "nullable": true,
                "type": "integer"
              },
              "effective_project_name": {
                "description": "The effective project name value.",
                "type": "string"
              },
              "end_date": {
                "description": "The end date value.",
                "format": "date-time",
                "nullable": true,
                "type": "string"
              },
              "estimate_minutes": {
                "description": "The estimate minutes value.",
                "nullable": true,
                "type": "integer"
              },
              "frac_index": {
                "description": "The frac index value.",
                "nullable": true,
                "type": "string"
              },
              "id": {
                "description": "The id value.",
                "type": "integer"
              },
              "inherit_project": {
                "description": "The inherit project value.",
                "type": "boolean"
              },
              "is_task": {
                "description": "Whether the item is a personal task. True is valid only in the authenticated caller's personal workspace and only with the Open or Done system status.",
                "type": "boolean"
              },
              "item_type_builtin_key": {
                "description": "The item type builtin key value.",
                "type": "string"
              },
              "item_type_id": {
                "description": "The item type id value.",
                "nullable": true,
                "type": "integer"
              },
              "item_type_name": {
                "description": "The item type name value.",
                "type": "string"
              },
              "iteration_end_date": {
                "description": "The iteration end date value.",
                "type": "string"
              },
              "iteration_id": {
                "description": "The iteration id value.",
                "nullable": true,
                "type": "integer"
              },
              "iteration_name": {
                "description": "The iteration name value.",
                "type": "string"
              },
              "key": {
                "description": "The key value.",
                "type": "string"
              },
              "labels": {
                "description": "The labels value.",
                "items": {
                  "additionalProperties": false,
                  "properties": {
                    "color": {
                      "description": "The color value.",
                      "type": "string"
                    },
                    "created_at": {
                      "description": "The created at value.",
                      "format": "date-time",
                      "type": "string"
                    },
                    "id": {
                      "description": "The id value.",
                      "type": "integer"
                    },
                    "name": {
                      "description": "The name value.",
                      "type": "string"
                    },
                    "updated_at": {
                      "description": "The updated at value.",
                      "format": "date-time",
                      "type": "string"
                    }
                  },
                  "required": [
                    "color",
                    "created_at",
                    "id",
                    "name",
                    "updated_at"
                  ],
                  "type": "object"
                },
                "type": "array"
              },
              "last_active_at": {
                "description": "The last active at value.",
                "format": "date-time",
                "type": "string"
              },
              "milestones": {
                "description": "The milestones value.",
                "items": {
                  "additionalProperties": false,
                  "properties": {
                    "category_color": {
                      "description": "The category color value.",
                      "type": "string"
                    },
                    "category_id": {
                      "description": "The category id value.",
                      "nullable": true,
                      "type": "integer"
                    },
                    "category_name": {
                      "description": "The category name value.",
                      "type": "string"
                    },
                    "created_at": {
                      "description": "The created at value.",
                      "format": "date-time",
                      "type": "string"
                    },
                    "description": {
                      "description": "The description value.",
                      "type": "string"
                    },
                    "external_key": {
                      "description": "The external key value.",
                      "nullable": true,
                      "type": "string"
                    },
                    "id": {
                      "description": "The id value.",
                      "type": "integer"
                    },
                    "is_global": {
                      "description": "The is global value.",
                      "type": "boolean"
                    },
                    "latest_release": {
                      "additionalProperties": false,
                      "description": "The latest release value.",
                      "nullable": true,
                      "properties": {
                        "body": {
                          "description": "The body value.",
                          "type": "string"
                        },
                        "created_at": {
                          "description": "The created at value.",
                          "type": "string"
                        },
                        "created_by": {
                          "description": "The created by value.",
                          "nullable": true,
                          "type": "integer"
                        },
                        "id": {
                          "description": "The id value.",
                          "type": "integer"
                        },
                        "is_draft": {
                          "description": "The is draft value.",
                          "type": "boolean"
                        },
                        "is_prerelease": {
                          "description": "The is prerelease value.",
                          "type": "boolean"
                        },
                        "milestone_id": {
                          "description": "The milestone id value.",
                          "type": "integer"
                        },
                        "name": {
                          "description": "The name value.",
                          "type": "string"
                        },
                        "scm_connection_id": {
                          "description": "The scm connection id value.",
                          "nullable": true,
                          "type": "integer"
                        },
                        "scm_release_id": {
                          "description": "The scm release id value.",
                          "nullable": true,
                          "type": "string"
                        },
                        "scm_release_url": {
                          "description": "The scm release url value.",
                          "nullable": true,
                          "type": "string"
                        },
                        "scm_repository": {
                          "description": "The scm repository value.",
                          "nullable": true,
                          "type": "string"
                        },
                        "tag_name": {
                          "description": "The tag name value.",
                          "type": "string"
                        },
                        "target_commitish": {
                          "description": "The target commitish value.",
                          "type": "string"
                        }
                      },
                      "required": [
                        "created_at",
                        "id",
                        "is_draft",
                        "is_prerelease",
                        "milestone_id",
                        "tag_name"
                      ],
                      "type": "object"
                    },
                    "name": {
                      "description": "The name value.",
                      "type": "string"
                    },
                    "position": {
                      "description": "The position value.",
                      "type": "integer"
                    },
                    "releases": {
                      "description": "The releases value.",
                      "items": {
                        "additionalProperties": false,
                        "properties": {
                          "body": {
                            "description": "The body value.",
                            "type": "string"
                          },
                          "created_at": {
                            "description": "The created at value.",
                            "type": "string"
                          },
                          "created_by": {
                            "description": "The created by value.",
                            "nullable": true,
                            "type": "integer"
                          },
                          "id": {
                            "description": "The id value.",
                            "type": "integer"
                          },
                          "is_draft": {
                            "description": "The is draft value.",
                            "type": "boolean"
                          },
                          "is_prerelease": {
                            "description": "The is prerelease value.",
                            "type": "boolean"
                          },
                          "milestone_id": {
                            "description": "The milestone id value.",
                            "type": "integer"
                          },
                          "name": {
                            "description": "The name value.",
                            "type": "string"
                          },
                          "scm_connection_id": {
                            "description": "The scm connection id value.",
                            "nullable": true,
                            "type": "integer"
                          },
                          "scm_release_id": {
                            "description": "The scm release id value.",
                            "nullable": true,
                            "type": "string"
                          },
                          "scm_release_url": {
                            "description": "The scm release url value.",
                            "nullable": true,
                            "type": "string"
                          },
                          "scm_repository": {
                            "description": "The scm repository value.",
                            "nullable": true,
                            "type": "string"
                          },
                          "tag_name": {
                            "description": "The tag name value.",
                            "type": "string"
                          },
                          "target_commitish": {
                            "description": "The target commitish value.",
                            "type": "string"
                          }
                        },
                        "required": [
                          "created_at",
                          "id",
                          "is_draft",
                          "is_prerelease",
                          "milestone_id",
                          "tag_name"
                        ],
                        "type": "object"
                      },
                      "type": "array"
                    },
                    "status": {
                      "description": "The status value.",
                      "type": "string"
                    },
                    "target_date": {
                      "description": "The target date value.",
                      "nullable": true,
                      "type": "string"
                    },
                    "updated_at": {
                      "description": "The updated at value.",
                      "format": "date-time",
                      "type": "string"
                    },
                    "workspace_id": {
                      "description": "The workspace id value.",
                      "nullable": true,
                      "type": "integer"
                    },
                    "workspace_name": {
                      "description": "The workspace name value.",
                      "type": "string"
                    }
                  },
                  "required": [
                    "created_at",
                    "description",
                    "id",
                    "is_global",
                    "name",
                    "position",
                    "status",
                    "updated_at"
                  ],
                  "type": "object"
                },
                "type": "array"
              },
              "parent_id": {
                "description": "The parent id value.",
                "nullable": true,
                "type": "integer"
              },
              "parent_key": {
                "description": "The parent key value.",
                "type": "string"
              },
              "parent_title": {
                "description": "The parent title value.",
                "type": "string"
              },
              "parent_workspace_item_number": {
                "description": "The parent workspace item number value.",
                "nullable": true,
                "type": "integer"
              },
              "personal_labels": {
                "description": "The personal labels value.",
                "items": {
                  "additionalProperties": false,
                  "properties": {
                    "color": {
                      "description": "The color value.",
                      "type": "string"
                    },
                    "created_at": {
                      "description": "The created at value.",
                      "format": "date-time",
                      "type": "string"
                    },
                    "id": {
                      "description": "The id value.",
                      "type": "integer"
                    },
                    "name": {
                      "description": "The name value.",
                      "type": "string"
                    },
                    "updated_at": {
                      "description": "The updated at value.",
                      "format": "date-time",
                      "type": "string"
                    },
                    "user_id": {
                      "description": "The user id value.",
                      "nullable": true,
                      "type": "integer"
                    }
                  },
                  "required": [
                    "color",
                    "created_at",
                    "id",
                    "name",
                    "updated_at"
                  ],
                  "type": "object"
                },
                "type": "array"
              },
              "priority_builtin_key": {
                "description": "The priority builtin key value.",
                "type": "string"
              },
              "priority_color": {
                "description": "The priority color value.",
                "type": "string"
              },
              "priority_icon": {
                "description": "The priority icon value.",
                "type": "string"
              },
              "priority_id": {
                "description": "The priority id value.",
                "nullable": true,
                "type": "integer"
              },
              "priority_name": {
                "description": "The priority name value.",
                "type": "string"
              },
              "project_id": {
                "description": "The project id value.",
                "nullable": true,
                "type": "integer"
              },
              "project_inheritance_mode": {
                "description": "The project inheritance mode value.",
                "type": "string"
              },
              "project_name": {
                "description": "The project name value.",
                "type": "string"
              },
              "related_work_item_id": {
                "description": "The related work item id value.",
                "nullable": true,
                "type": "integer"
              },
              "related_work_item_number": {
                "description": "The related work item number value.",
                "type": "integer"
              },
              "related_work_item_title": {
                "description": "The related work item title value.",
                "type": "string"
              },
              "related_work_item_workspace_id": {
                "description": "The related work item workspace id value.",
                "type": "integer"
              },
              "related_work_item_workspace_key": {
                "description": "The related work item workspace key value.",
                "type": "string"
              },
              "reporter_avatar": {
                "description": "The reporter avatar value.",
                "type": "string"
              },
              "reporter_email": {
                "description": "The reporter email value.",
                "type": "string"
              },
              "reporter_id": {
                "description": "The reporter id value.",
                "nullable": true,
                "type": "integer"
              },
              "reporter_name": {
                "description": "The reporter name value.",
                "type": "string"
              },
              "request_type_id": {
                "description": "The request type id value.",
                "nullable": true,
                "type": "integer"
              },
              "request_type_name": {
                "description": "The request type name value.",
                "type": "string"
              },
              "start_date": {
                "description": "The start date value.",
                "format": "date-time",
                "nullable": true,
                "type": "string"
              },
              "status_builtin_key": {
                "description": "The status builtin key value.",
                "type": "string"
              },
              "status_color": {
                "description": "The status color value.",
                "type": "string"
              },
              "status_id": {
                "description": "The status id value.",
                "nullable": true,
                "type": "integer"
              },
              "status_name": {
                "description": "The status name value.",
                "type": "string"
              },
              "status_since": {
                "description": "The status since value.",
                "format": "date-time",
                "nullable": true,
                "type": "string"
              },
              "story_points": {
                "description": "The story points value.",
                "nullable": true,
                "type": "number"
              },
              "time_project_id": {
                "description": "The time project id value.",
                "nullable": true,
                "type": "integer"
              },
              "time_project_name": {
                "description": "The time project name value.",
                "type": "string"
              },
              "title": {
                "description": "The title value.",
                "type": "string"
              },
              "updated_at": {
                "description": "The updated at value.",
                "format": "date-time",
                "type": "string"
              },
              "virtual_field_data": {
                "additionalProperties": {
                  "description": "Arbitrary JSON extension value."
                },
                "description": "The virtual field data value.",
                "type": "object"
              },
              "workspace_id": {
                "description": "The workspace id value.",
                "type": "integer"
              },
              "workspace_item_number": {
                "description": "The workspace item number value.",
                "type": "integer"
              },
              "workspace_key": {
                "description": "The workspace key value.",
                "type": "string"
              },
              "workspace_name": {
                "description": "The workspace name value.",
                "type": "string"
              }
            },
            "required": [
              "created_at",
              "description",
              "id",
              "inherit_project",
              "is_task",
              "last_active_at",
              "title",
              "updated_at",
              "workspace_id",
              "workspace_item_number"
            ],
            "type": "object"
          }
        },
        "required": [
          "data"
        ],
        "type": "object"
      },
      "PostItemsItemIdCommentsPayload": {
        "additionalProperties": false,
        "properties": {
          "content": {
            "description": "The content value.",
            "type": "string"
          },
          "is_private": {
            "description": "The is private value.",
            "type": "boolean"
          }
        },
        "required": [
          "content",
          "is_private"
        ],
        "type": "object"
      },
      "PostItemsItemIdCommentsResult": {
        "additionalProperties": false,
        "properties": {
          "data": {
            "additionalProperties": false,
            "properties": {
              "agent_owner_name": {
                "description": "The agent owner name value.",
                "type": "string"
              },
              "author_avatar": {
                "description": "The author avatar value.",
                "type": "string"
              },
              "author_email": {
                "description": "The author email value.",
                "type": "string"
              },
              "author_id": {
                "description": "The author id value.",
                "nullable": true,
                "type": "integer"
              },
              "author_name": {
                "description": "The author name value.",
                "type": "string"
              },
              "content": {
                "description": "The content value.",
                "type": "string"
              },
              "content_html": {
                "description": "The content html value.",
                "type": "string"
              },
              "created_at": {
                "description": "The created at value.",
                "format": "date-time",
                "type": "string"
              },
              "id": {
                "description": "The id value.",
                "type": "integer"
              },
              "is_agent": {
                "description": "The is agent value.",
                "type": "boolean"
              },
              "is_private": {
                "description": "The is private value.",
                "type": "boolean"
              },
              "item_id": {
                "description": "The item id value.",
                "type": "integer"
              },
              "portal_customer_id": {
                "description": "The portal customer id value.",
                "nullable": true,
                "type": "integer"
              },
              "source": {
                "description": "The source value.",
                "type": "string"
              },
              "updated_at": {
                "description": "The updated at value.",
                "format": "date-time",
                "type": "string"
              }
            },
            "required": [
              "content",
              "created_at",
              "id",
              "is_private",
              "item_id",
              "source",
              "updated_at"
            ],
            "type": "object"
          }
        },
        "required": [
          "data"
        ],
        "type": "object"
      },
      "PostItemsItemIdCopyResult": {
        "additionalProperties": false,
        "properties": {
          "data": {
            "additionalProperties": false,
            "nullable": true,
            "properties": {
              "assignee_avatar": {
                "description": "The assignee avatar value.",
                "type": "string"
              },
              "assignee_email": {
                "description": "The assignee email value.",
                "type": "string"
              },
              "assignee_id": {
                "description": "The assignee id value.",
                "nullable": true,
                "type": "integer"
              },
              "assignee_name": {
                "description": "The assignee name value.",
                "type": "string"
              },
              "calendar_data": {
                "description": "The calendar data value.",
                "items": {
                  "additionalProperties": false,
                  "properties": {
                    "created_at": {
                      "description": "The created at value.",
                      "type": "string"
                    },
                    "duration_minutes": {
                      "description": "The duration minutes value.",
                      "type": "integer"
                    },
                    "notes": {
                      "description": "The notes value.",
                      "type": "string"
                    },
                    "scheduled_date": {
                      "description": "The scheduled date value.",
                      "type": "string"
                    },
                    "scheduled_time": {
                      "description": "The scheduled time value.",
                      "type": "string"
                    },
                    "user_id": {
                      "description": "The user id value.",
                      "type": "integer"
                    },
                    "workspace_id": {
                      "description": "The workspace id value.",
                      "type": "integer"
                    }
                  },
                  "required": [
                    "created_at",
                    "scheduled_date",
                    "user_id",
                    "workspace_id"
                  ],
                  "type": "object"
                },
                "type": "array"
              },
              "channel_id": {
                "description": "The channel id value.",
                "nullable": true,
                "type": "integer"
              },
              "channel_name": {
                "description": "The channel name value.",
                "type": "string"
              },
              "children": {
                "description": "The children value.",
                "items": {
                  "description": "Nested resource reference.",
                  "type": "object"
                },
                "type": "array"
              },
              "completed_at": {
                "description": "The completed at value.",
                "format": "date-time",
                "nullable": true,
                "type": "string"
              },
              "created_at": {
                "description": "The created at value.",
                "format": "date-time",
                "type": "string"
              },
              "creator_email": {
                "description": "The creator email value.",
                "type": "string"
              },
              "creator_id": {
                "description": "The creator id value.",
                "nullable": true,
                "type": "integer"
              },
              "creator_name": {
                "description": "The creator name value.",
                "type": "string"
              },
              "creator_portal_customer_email": {
                "description": "The creator portal customer email value.",
                "type": "string"
              },
              "creator_portal_customer_id": {
                "description": "The creator portal customer id value.",
                "nullable": true,
                "type": "integer"
              },
              "creator_portal_customer_name": {
                "description": "The creator portal customer name value.",
                "type": "string"
              },
              "custom_field_values": {
                "additionalProperties": {
                  "description": "Arbitrary JSON extension value."
                },
                "description": "The custom field values value.",
                "type": "object"
              },
              "description": {
                "description": "The description value.",
                "type": "string"
              },
              "description_html": {
                "description": "The description html value.",
                "type": "string"
              },
              "due_date": {
                "description": "The due date value.",
                "format": "date-time",
                "nullable": true,
                "type": "string"
              },
              "effective_project_id": {
                "description": "The effective project id value.",
                "nullable": true,
                "type": "integer"
              },
              "effective_project_name": {
                "description": "The effective project name value.",
                "type": "string"
              },
              "end_date": {
                "description": "The end date value.",
                "format": "date-time",
                "nullable": true,
                "type": "string"
              },
              "estimate_minutes": {
                "description": "The estimate minutes value.",
                "nullable": true,
                "type": "integer"
              },
              "frac_index": {
                "description": "The frac index value.",
                "nullable": true,
                "type": "string"
              },
              "id": {
                "description": "The id value.",
                "type": "integer"
              },
              "inherit_project": {
                "description": "The inherit project value.",
                "type": "boolean"
              },
              "is_task": {
                "description": "Whether the item is a personal task. True is valid only in the authenticated caller's personal workspace and only with the Open or Done system status.",
                "type": "boolean"
              },
              "item_type_builtin_key": {
                "description": "The item type builtin key value.",
                "type": "string"
              },
              "item_type_id": {
                "description": "The item type id value.",
                "nullable": true,
                "type": "integer"
              },
              "item_type_name": {
                "description": "The item type name value.",
                "type": "string"
              },
              "iteration_end_date": {
                "description": "The iteration end date value.",
                "type": "string"
              },
              "iteration_id": {
                "description": "The iteration id value.",
                "nullable": true,
                "type": "integer"
              },
              "iteration_name": {
                "description": "The iteration name value.",
                "type": "string"
              },
              "key": {
                "description": "The key value.",
                "type": "string"
              },
              "labels": {
                "description": "The labels value.",
                "items": {
                  "additionalProperties": false,
                  "properties": {
                    "color": {
                      "description": "The color value.",
                      "type": "string"
                    },
                    "created_at": {
                      "description": "The created at value.",
                      "format": "date-time",
                      "type": "string"
                    },
                    "id": {
                      "description": "The id value.",
                      "type": "integer"
                    },
                    "name": {
                      "description": "The name value.",
                      "type": "string"
                    },
                    "updated_at": {
                      "description": "The updated at value.",
                      "format": "date-time",
                      "type": "string"
                    }
                  },
                  "required": [
                    "color",
                    "created_at",
                    "id",
                    "name",
                    "updated_at"
                  ],
                  "type": "object"
                },
                "type": "array"
              },
              "last_active_at": {
                "description": "The last active at value.",
                "format": "date-time",
                "type": "string"
              },
              "milestones": {
                "description": "The milestones value.",
                "items": {
                  "additionalProperties": false,
                  "properties": {
                    "category_color": {
                      "description": "The category color value.",
                      "type": "string"
                    },
                    "category_id": {
                      "description": "The category id value.",
                      "nullable": true,
                      "type": "integer"
                    },
                    "category_name": {
                      "description": "The category name value.",
                      "type": "string"
                    },
                    "created_at": {
                      "description": "The created at value.",
                      "format": "date-time",
                      "type": "string"
                    },
                    "description": {
                      "description": "The description value.",
                      "type": "string"
                    },
                    "external_key": {
                      "description": "The external key value.",
                      "nullable": true,
                      "type": "string"
                    },
                    "id": {
                      "description": "The id value.",
                      "type": "integer"
                    },
                    "is_global": {
                      "description": "The is global value.",
                      "type": "boolean"
                    },
                    "latest_release": {
                      "additionalProperties": false,
                      "description": "The latest release value.",
                      "nullable": true,
                      "properties": {
                        "body": {
                          "description": "The body value.",
                          "type": "string"
                        },
                        "created_at": {
                          "description": "The created at value.",
                          "type": "string"
                        },
                        "created_by": {
                          "description": "The created by value.",
                          "nullable": true,
                          "type": "integer"
                        },
                        "id": {
                          "description": "The id value.",
                          "type": "integer"
                        },
                        "is_draft": {
                          "description": "The is draft value.",
                          "type": "boolean"
                        },
                        "is_prerelease": {
                          "description": "The is prerelease value.",
                          "type": "boolean"
                        },
                        "milestone_id": {
                          "description": "The milestone id value.",
                          "type": "integer"
                        },
                        "name": {
                          "description": "The name value.",
                          "type": "string"
                        },
                        "scm_connection_id": {
                          "description": "The scm connection id value.",
                          "nullable": true,
                          "type": "integer"
                        },
                        "scm_release_id": {
                          "description": "The scm release id value.",
                          "nullable": true,
                          "type": "string"
                        },
                        "scm_release_url": {
                          "description": "The scm release url value.",
                          "nullable": true,
                          "type": "string"
                        },
                        "scm_repository": {
                          "description": "The scm repository value.",
                          "nullable": true,
                          "type": "string"
                        },
                        "tag_name": {
                          "description": "The tag name value.",
                          "type": "string"
                        },
                        "target_commitish": {
                          "description": "The target commitish value.",
                          "type": "string"
                        }
                      },
                      "required": [
                        "created_at",
                        "id",
                        "is_draft",
                        "is_prerelease",
                        "milestone_id",
                        "tag_name"
                      ],
                      "type": "object"
                    },
                    "name": {
                      "description": "The name value.",
                      "type": "string"
                    },
                    "position": {
                      "description": "The position value.",
                      "type": "integer"
                    },
                    "releases": {
                      "description": "The releases value.",
                      "items": {
                        "additionalProperties": false,
                        "properties": {
                          "body": {
                            "description": "The body value.",
                            "type": "string"
                          },
                          "created_at": {
                            "description": "The created at value.",
                            "type": "string"
                          },
                          "created_by": {
                            "description": "The created by value.",
                            "nullable": true,
                            "type": "integer"
                          },
                          "id": {
                            "description": "The id value.",
                            "type": "integer"
                          },
                          "is_draft": {
                            "description": "The is draft value.",
                            "type": "boolean"
                          },
                          "is_prerelease": {
                            "description": "The is prerelease value.",
                            "type": "boolean"
                          },
                          "milestone_id": {
                            "description": "The milestone id value.",
                            "type": "integer"
                          },
                          "name": {
                            "description": "The name value.",
                            "type": "string"
                          },
                          "scm_connection_id": {
                            "description": "The scm connection id value.",
                            "nullable": true,
                            "type": "integer"
                          },
                          "scm_release_id": {
                            "description": "The scm release id value.",
                            "nullable": true,
                            "type": "string"
                          },
                          "scm_release_url": {
                            "description": "The scm release url value.",
                            "nullable": true,
                            "type": "string"
                          },
                          "scm_repository": {
                            "description": "The scm repository value.",
                            "nullable": true,
                            "type": "string"
                          },
                          "tag_name": {
                            "description": "The tag name value.",
                            "type": "string"
                          },
                          "target_commitish": {
                            "description": "The target commitish value.",
                            "type": "string"
                          }
                        },
                        "required": [
                          "created_at",
                          "id",
                          "is_draft",
                          "is_prerelease",
                          "milestone_id",
                          "tag_name"
                        ],
                        "type": "object"
                      },
                      "type": "array"
                    },
                    "status": {
                      "description": "The status value.",
                      "type": "string"
                    },
                    "target_date": {
                      "description": "The target date value.",
                      "nullable": true,
                      "type": "string"
                    },
                    "updated_at": {
                      "description": "The updated at value.",
                      "format": "date-time",
                      "type": "string"
                    },
                    "workspace_id": {
                      "description": "The workspace id value.",
                      "nullable": true,
                      "type": "integer"
                    },
                    "workspace_name": {
                      "description": "The workspace name value.",
                      "type": "string"
                    }
                  },
                  "required": [
                    "created_at",
                    "description",
                    "id",
                    "is_global",
                    "name",
                    "position",
                    "status",
                    "updated_at"
                  ],
                  "type": "object"
                },
                "type": "array"
              },
              "parent_id": {
                "description": "The parent id value.",
                "nullable": true,
                "type": "integer"
              },
              "parent_key": {
                "description": "The parent key value.",
                "type": "string"
              },
              "parent_title": {
                "description": "The parent title value.",
                "type": "string"
              },
              "parent_workspace_item_number": {
                "description": "The parent workspace item number value.",
                "nullable": true,
                "type": "integer"
              },
              "personal_labels": {
                "description": "The personal labels value.",
                "items": {
                  "additionalProperties": false,
                  "properties": {
                    "color": {
                      "description": "The color value.",
                      "type": "string"
                    },
                    "created_at": {
                      "description": "The created at value.",
                      "format": "date-time",
                      "type": "string"
                    },
                    "id": {
                      "description": "The id value.",
                      "type": "integer"
                    },
                    "name": {
                      "description": "The name value.",
                      "type": "string"
                    },
                    "updated_at": {
                      "description": "The updated at value.",
                      "format": "date-time",
                      "type": "string"
                    },
                    "user_id": {
                      "description": "The user id value.",
                      "nullable": true,
                      "type": "integer"
                    }
                  },
                  "required": [
                    "color",
                    "created_at",
                    "id",
                    "name",
                    "updated_at"
                  ],
                  "type": "object"
                },
                "type": "array"
              },
              "priority_builtin_key": {
                "description": "The priority builtin key value.",
                "type": "string"
              },
              "priority_color": {
                "description": "The priority color value.",
                "type": "string"
              },
              "priority_icon": {
                "description": "The priority icon value.",
                "type": "string"
              },
              "priority_id": {
                "description": "The priority id value.",
                "nullable": true,
                "type": "integer"
              },
              "priority_name": {
                "description": "The priority name value.",
                "type": "string"
              },
              "project_id": {
                "description": "The project id value.",
                "nullable": true,
                "type": "integer"
              },
              "project_inheritance_mode": {
                "description": "The project inheritance mode value.",
                "type": "string"
              },
              "project_name": {
                "description": "The project name value.",
                "type": "string"
              },
              "related_work_item_id": {
                "description": "The related work item id value.",
                "nullable": true,
                "type": "integer"
              },
              "related_work_item_number": {
                "description": "The related work item number value.",
                "type": "integer"
              },
              "related_work_item_title": {
                "description": "The related work item title value.",
                "type": "string"
              },
              "related_work_item_workspace_id": {
                "description": "The related work item workspace id value.",
                "type": "integer"
              },
              "related_work_item_workspace_key": {
                "description": "The related work item workspace key value.",
                "type": "string"
              },
              "reporter_avatar": {
                "description": "The reporter avatar value.",
                "type": "string"
              },
              "reporter_email": {
                "description": "The reporter email value.",
                "type": "string"
              },
              "reporter_id": {
                "description": "The reporter id value.",
                "nullable": true,
                "type": "integer"
              },
              "reporter_name": {
                "description": "The reporter name value.",
                "type": "string"
              },
              "request_type_id": {
                "description": "The request type id value.",
                "nullable": true,
                "type": "integer"
              },
              "request_type_name": {
                "description": "The request type name value.",
                "type": "string"
              },
              "start_date": {
                "description": "The start date value.",
                "format": "date-time",
                "nullable": true,
                "type": "string"
              },
              "status_builtin_key": {
                "description": "The status builtin key value.",
                "type": "string"
              },
              "status_color": {
                "description": "The status color value.",
                "type": "string"
              },
              "status_id": {
                "description": "The status id value.",
                "nullable": true,
                "type": "integer"
              },
              "status_name": {
                "description": "The status name value.",
                "type": "string"
              },
              "status_since": {
                "description": "The status since value.",
                "format": "date-time",
                "nullable": true,
                "type": "string"
              },
              "story_points": {
                "description": "The story points value.",
                "nullable": true,
                "type": "number"
              },
              "time_project_id": {
                "description": "The time project id value.",
                "nullable": true,
                "type": "integer"
              },
              "time_project_name": {
                "description": "The time project name value.",
                "type": "string"
              },
              "title": {
                "description": "The title value.",
                "type": "string"
              },
              "updated_at": {
                "description": "The updated at value.",
                "format": "date-time",
                "type": "string"
              },
              "virtual_field_data": {
                "additionalProperties": {
                  "description": "Arbitrary JSON extension value."
                },
                "description": "The virtual field data value.",
                "type": "object"
              },
              "workspace_id": {
                "description": "The workspace id value.",
                "type": "integer"
              },
              "workspace_item_number": {
                "description": "The workspace item number value.",
                "type": "integer"
              },
              "workspace_key": {
                "description": "The workspace key value.",
                "type": "string"
              },
              "workspace_name": {
                "description": "The workspace name value.",
                "type": "string"
              }
            },
            "required": [
              "created_at",
              "description",
              "id",
              "inherit_project",
              "is_task",
              "last_active_at",
              "title",
              "updated_at",
              "workspace_id",
              "workspace_item_number"
            ],
            "type": "object"
          }
        },
        "required": [
          "data"
        ],
        "type": "object"
      },
      "PostItemsItemIdDiagramsPayload": {
        "additionalProperties": false,
        "properties": {
          "diagram_data": {
            "description": "The diagram data value.",
            "type": "string"
          },
          "name": {
            "description": "The name value.",
            "type": "string"
          }
        },
        "required": [
          "diagram_data",
          "name"
        ],
        "type": "object"
      },
      "PostItemsItemIdDiagramsResult": {
        "additionalProperties": false,
        "properties": {
          "data": {
            "additionalProperties": false,
            "properties": {
              "created_at": {
                "description": "The created at value.",
                "format": "date-time",
                "type": "string"
              },
              "created_by": {
                "description": "The created by value.",
                "nullable": true,
                "type": "integer"
              },
              "creator_email": {
                "description": "The creator email value.",
                "type": "string"
              },
              "creator_name": {
                "description": "The creator name value.",
                "type": "string"
              },
              "diagram_data": {
                "description": "The diagram data value.",
                "type": "string"
              },
              "id": {
                "description": "The id value.",
                "type": "integer"
              },
              "item_id": {
                "description": "The item id value.",
                "type": "integer"
              },
              "name": {
                "description": "The name value.",
                "type": "string"
              },
              "updated_at": {
                "description": "The updated at value.",
                "format": "date-time",
                "type": "string"
              },
              "updated_by": {
                "description": "The updated by value.",
                "nullable": true,
                "type": "integer"
              },
              "updated_by_email": {
                "description": "The updated by email value.",
                "type": "string"
              },
              "updated_by_name": {
                "description": "The updated by name value.",
                "type": "string"
              }
            },
            "required": [
              "created_at",
              "creator_email",
              "creator_name",
              "diagram_data",
              "id",
              "item_id",
              "name",
              "updated_at",
              "updated_by_email",
              "updated_by_name"
            ],
            "type": "object"
          }
        },
        "required": [
          "data"
        ],
        "type": "object"
      },
      "PostItemsItemIdLabelsPayload": {
        "additionalProperties": false,
        "properties": {
          "label_id": {
            "description": "The label id value.",
            "type": "integer"
          }
        },
        "required": [
          "label_id"
        ],
        "type": "object"
      },
      "PostItemsItemIdLabelsResult": {
        "additionalProperties": false,
        "properties": {
          "data": {
            "items": {
              "additionalProperties": false,
              "properties": {
                "color": {
                  "description": "The color value.",
                  "type": "string"
                },
                "created_at": {
                  "description": "The created at value.",
                  "type": "string"
                },
                "id": {
                  "description": "The id value.",
                  "type": "integer"
                },
                "name": {
                  "description": "The name value.",
                  "type": "string"
                },
                "updated_at": {
                  "description": "The updated at value.",
                  "type": "string"
                }
              },
              "required": [
                "color",
                "created_at",
                "id",
                "name",
                "updated_at"
              ],
              "type": "object"
            },
            "type": "array"
          }
        },
        "required": [
          "data"
        ],
        "type": "object"
      },
      "PostItemsItemIdMoveWorkspacePayload": {
        "additionalProperties": false,
        "properties": {
          "destination_workspace_id": {
            "description": "The destination workspace id value.",
            "type": "integer"
          },
          "target_item_type_id": {
            "description": "The target item type id value.",
            "type": "integer"
          },
          "target_priority_id": {
            "description": "The target priority id value.",
            "nullable": true,
            "type": "integer"
          },
          "target_status_id": {
            "description": "The target status id value.",
            "type": "integer"
          }
        },
        "required": [
          "destination_workspace_id"
        ],
        "type": "object"
      },
      "PostItemsItemIdMoveWorkspacePreviewPayload": {
        "additionalProperties": false,
        "properties": {
          "destination_workspace_id": {
            "description": "The destination workspace id value.",
            "type": "integer"
          },
          "target_item_type_id": {
            "description": "The target item type id value.",
            "type": "integer"
          },
          "target_priority_id": {
            "description": "The target priority id value.",
            "nullable": true,
            "type": "integer"
          },
          "target_status_id": {
            "description": "The target status id value.",
            "type": "integer"
          }
        },
        "required": [
          "destination_workspace_id"
        ],
        "type": "object"
      },
      "PostItemsItemIdMoveWorkspacePreviewResult": {
        "additionalProperties": false,
        "properties": {
          "data": {
            "additionalProperties": false,
            "nullable": true,
            "properties": {
              "children_detached": {
                "description": "The children detached value.",
                "type": "integer"
              },
              "custom_fields_dropped": {
                "description": "The custom fields dropped value.",
                "items": {
                  "type": "string"
                },
                "type": "array"
              },
              "custom_fields_kept": {
                "description": "The custom fields kept value.",
                "items": {
                  "type": "string"
                },
                "type": "array"
              },
              "destination_workspace_id": {
                "description": "The destination workspace id value.",
                "type": "integer"
              },
              "destination_workspace_key": {
                "description": "The destination workspace key value.",
                "type": "string"
              },
              "destination_workspace_name": {
                "description": "The destination workspace name value.",
                "type": "string"
              },
              "fields": {
                "description": "The fields value.",
                "items": {
                  "additionalProperties": false,
                  "properties": {
                    "action": {
                      "description": "The action value.",
                      "type": "string"
                    },
                    "field": {
                      "description": "The field value.",
                      "type": "string"
                    },
                    "from": {
                      "description": "The from value.",
                      "type": "string"
                    },
                    "to": {
                      "description": "The to value.",
                      "type": "string"
                    }
                  },
                  "required": [
                    "action",
                    "field"
                  ],
                  "type": "object"
                },
                "type": "array"
              },
              "item_types": {
                "description": "The item types value.",
                "items": {
                  "additionalProperties": false,
                  "properties": {
                    "color": {
                      "description": "The color value.",
                      "type": "string"
                    },
                    "icon": {
                      "description": "The icon value.",
                      "type": "string"
                    },
                    "id": {
                      "description": "The id value.",
                      "type": "integer"
                    },
                    "is_default": {
                      "description": "The is default value.",
                      "type": "boolean"
                    },
                    "name": {
                      "description": "The name value.",
                      "type": "string"
                    }
                  },
                  "required": [
                    "id",
                    "name"
                  ],
                  "type": "object"
                },
                "type": "array"
              },
              "labels_dropped": {
                "description": "The labels dropped value.",
                "items": {
                  "type": "string"
                },
                "type": "array"
              },
              "labels_kept": {
                "description": "The labels kept value.",
                "items": {
                  "type": "string"
                },
                "type": "array"
              },
              "priorities": {
                "description": "The priorities value.",
                "items": {
                  "additionalProperties": false,
                  "properties": {
                    "color": {
                      "description": "The color value.",
                      "type": "string"
                    },
                    "icon": {
                      "description": "The icon value.",
                      "type": "string"
                    },
                    "id": {
                      "description": "The id value.",
                      "type": "integer"
                    },
                    "is_default": {
                      "description": "The is default value.",
                      "type": "boolean"
                    },
                    "name": {
                      "description": "The name value.",
                      "type": "string"
                    }
                  },
                  "required": [
                    "id",
                    "name"
                  ],
                  "type": "object"
                },
                "type": "array"
              },
              "source_key": {
                "description": "The source key value.",
                "type": "string"
              },
              "source_workspace_id": {
                "description": "The source workspace id value.",
                "type": "integer"
              },
              "source_workspace_name": {
                "description": "The source workspace name value.",
                "type": "string"
              },
              "statuses": {
                "description": "The statuses value.",
                "items": {
                  "additionalProperties": false,
                  "properties": {
                    "color": {
                      "description": "The color value.",
                      "type": "string"
                    },
                    "icon": {
                      "description": "The icon value.",
                      "type": "string"
                    },
                    "id": {
                      "description": "The id value.",
                      "type": "integer"
                    },
                    "is_default": {
                      "description": "The is default value.",
                      "type": "boolean"
                    },
                    "name": {
                      "description": "The name value.",
                      "type": "string"
                    }
                  },
                  "required": [
                    "id",
                    "name"
                  ],
                  "type": "object"
                },
                "type": "array"
              },
              "target_item_type_id": {
                "description": "The target item type id value.",
                "type": "integer"
              },
              "target_priority_id": {
                "description": "The target priority id value.",
                "nullable": true,
                "type": "integer"
              },
              "target_status_id": {
                "description": "The target status id value.",
                "type": "integer"
              }
            },
            "required": [
              "children_detached",
              "custom_fields_dropped",
              "custom_fields_kept",
              "destination_workspace_id",
              "destination_workspace_key",
              "destination_workspace_name",
              "fields",
              "item_types",
              "labels_dropped",
              "labels_kept",
              "priorities",
              "source_key",
              "source_workspace_id",
              "source_workspace_name",
              "statuses",
              "target_item_type_id",
              "target_status_id"
            ],
            "type": "object"
          }
        },
        "required": [
          "data"
        ],
        "type": "object"
      },
      "PostItemsItemIdMoveWorkspaceResult": {
        "additionalProperties": false,
        "properties": {
          "data": {
            "additionalProperties": false,
            "nullable": true,
            "properties": {
              "item": {
                "additionalProperties": false,
                "description": "The item value.",
                "nullable": true,
                "properties": {
                  "assignee_avatar": {
                    "description": "The assignee avatar value.",
                    "type": "string"
                  },
                  "assignee_email": {
                    "description": "The assignee email value.",
                    "type": "string"
                  },
                  "assignee_id": {
                    "description": "The assignee id value.",
                    "nullable": true,
                    "type": "integer"
                  },
                  "assignee_name": {
                    "description": "The assignee name value.",
                    "type": "string"
                  },
                  "calendar_data": {
                    "description": "The calendar data value.",
                    "items": {
                      "additionalProperties": false,
                      "properties": {
                        "created_at": {
                          "description": "The created at value.",
                          "type": "string"
                        },
                        "duration_minutes": {
                          "description": "The duration minutes value.",
                          "type": "integer"
                        },
                        "notes": {
                          "description": "The notes value.",
                          "type": "string"
                        },
                        "scheduled_date": {
                          "description": "The scheduled date value.",
                          "type": "string"
                        },
                        "scheduled_time": {
                          "description": "The scheduled time value.",
                          "type": "string"
                        },
                        "user_id": {
                          "description": "The user id value.",
                          "type": "integer"
                        },
                        "workspace_id": {
                          "description": "The workspace id value.",
                          "type": "integer"
                        }
                      },
                      "required": [
                        "created_at",
                        "scheduled_date",
                        "user_id",
                        "workspace_id"
                      ],
                      "type": "object"
                    },
                    "type": "array"
                  },
                  "channel_id": {
                    "description": "The channel id value.",
                    "nullable": true,
                    "type": "integer"
                  },
                  "channel_name": {
                    "description": "The channel name value.",
                    "type": "string"
                  },
                  "children": {
                    "description": "The children value.",
                    "items": {
                      "description": "Nested resource reference.",
                      "type": "object"
                    },
                    "type": "array"
                  },
                  "completed_at": {
                    "description": "The completed at value.",
                    "format": "date-time",
                    "nullable": true,
                    "type": "string"
                  },
                  "created_at": {
                    "description": "The created at value.",
                    "format": "date-time",
                    "type": "string"
                  },
                  "creator_email": {
                    "description": "The creator email value.",
                    "type": "string"
                  },
                  "creator_id": {
                    "description": "The creator id value.",
                    "nullable": true,
                    "type": "integer"
                  },
                  "creator_name": {
                    "description": "The creator name value.",
                    "type": "string"
                  },
                  "creator_portal_customer_email": {
                    "description": "The creator portal customer email value.",
                    "type": "string"
                  },
                  "creator_portal_customer_id": {
                    "description": "The creator portal customer id value.",
                    "nullable": true,
                    "type": "integer"
                  },
                  "creator_portal_customer_name": {
                    "description": "The creator portal customer name value.",
                    "type": "string"
                  },
                  "custom_field_values": {
                    "additionalProperties": {
                      "description": "Arbitrary JSON extension value."
                    },
                    "description": "The custom field values value.",
                    "type": "object"
                  },
                  "description": {
                    "description": "The description value.",
                    "type": "string"
                  },
                  "description_html": {
                    "description": "The description html value.",
                    "type": "string"
                  },
                  "due_date": {
                    "description": "The due date value.",
                    "format": "date-time",
                    "nullable": true,
                    "type": "string"
                  },
                  "effective_project_id": {
                    "description": "The effective project id value.",
                    "nullable": true,
                    "type": "integer"
                  },
                  "effective_project_name": {
                    "description": "The effective project name value.",
                    "type": "string"
                  },
                  "end_date": {
                    "description": "The end date value.",
                    "format": "date-time",
                    "nullable": true,
                    "type": "string"
                  },
                  "estimate_minutes": {
                    "description": "The estimate minutes value.",
                    "nullable": true,
                    "type": "integer"
                  },
                  "frac_index": {
                    "description": "The frac index value.",
                    "nullable": true,
                    "type": "string"
                  },
                  "id": {
                    "description": "The id value.",
                    "type": "integer"
                  },
                  "inherit_project": {
                    "description": "The inherit project value.",
                    "type": "boolean"
                  },
                  "is_task": {
                    "description": "Whether the item is a personal task. True is valid only in the authenticated caller's personal workspace and only with the Open or Done system status.",
                    "type": "boolean"
                  },
                  "item_type_builtin_key": {
                    "description": "The item type builtin key value.",
                    "type": "string"
                  },
                  "item_type_id": {
                    "description": "The item type id value.",
                    "nullable": true,
                    "type": "integer"
                  },
                  "item_type_name": {
                    "description": "The item type name value.",
                    "type": "string"
                  },
                  "iteration_end_date": {
                    "description": "The iteration end date value.",
                    "type": "string"
                  },
                  "iteration_id": {
                    "description": "The iteration id value.",
                    "nullable": true,
                    "type": "integer"
                  },
                  "iteration_name": {
                    "description": "The iteration name value.",
                    "type": "string"
                  },
                  "key": {
                    "description": "The key value.",
                    "type": "string"
                  },
                  "labels": {
                    "description": "The labels value.",
                    "items": {
                      "additionalProperties": false,
                      "properties": {
                        "color": {
                          "description": "The color value.",
                          "type": "string"
                        },
                        "created_at": {
                          "description": "The created at value.",
                          "format": "date-time",
                          "type": "string"
                        },
                        "id": {
                          "description": "The id value.",
                          "type": "integer"
                        },
                        "name": {
                          "description": "The name value.",
                          "type": "string"
                        },
                        "updated_at": {
                          "description": "The updated at value.",
                          "format": "date-time",
                          "type": "string"
                        }
                      },
                      "required": [
                        "color",
                        "created_at",
                        "id",
                        "name",
                        "updated_at"
                      ],
                      "type": "object"
                    },
                    "type": "array"
                  },
                  "last_active_at": {
                    "description": "The last active at value.",
                    "format": "date-time",
                    "type": "string"
                  },
                  "milestones": {
                    "description": "The milestones value.",
                    "items": {
                      "additionalProperties": false,
                      "properties": {
                        "category_color": {
                          "description": "The category color value.",
                          "type": "string"
                        },
                        "category_id": {
                          "description": "The category id value.",
                          "nullable": true,
                          "type": "integer"
                        },
                        "category_name": {
                          "description": "The category name value.",
                          "type": "string"
                        },
                        "created_at": {
                          "description": "The created at value.",
                          "format": "date-time",
                          "type": "string"
                        },
                        "description": {
                          "description": "The description value.",
                          "type": "string"
                        },
                        "external_key": {
                          "description": "The external key value.",
                          "nullable": true,
                          "type": "string"
                        },
                        "id": {
                          "description": "The id value.",
                          "type": "integer"
                        },
                        "is_global": {
                          "description": "The is global value.",
                          "type": "boolean"
                        },
                        "latest_release": {
                          "additionalProperties": false,
                          "description": "The latest release value.",
                          "nullable": true,
                          "properties": {
                            "body": {
                              "description": "The body value.",
                              "type": "string"
                            },
                            "created_at": {
                              "description": "The created at value.",
                              "type": "string"
                            },
                            "created_by": {
                              "description": "The created by value.",
                              "nullable": true,
                              "type": "integer"
                            },
                            "id": {
                              "description": "The id value.",
                              "type": "integer"
                            },
                            "is_draft": {
                              "description": "The is draft value.",
                              "type": "boolean"
                            },
                            "is_prerelease": {
                              "description": "The is prerelease value.",
                              "type": "boolean"
                            },
                            "milestone_id": {
                              "description": "The milestone id value.",
                              "type": "integer"
                            },
                            "name": {
                              "description": "The name value.",
                              "type": "string"
                            },
                            "scm_connection_id": {
                              "description": "The scm connection id value.",
                              "nullable": true,
                              "type": "integer"
                            },
                            "scm_release_id": {
                              "description": "The scm release id value.",
                              "nullable": true,
                              "type": "string"
                            },
                            "scm_release_url": {
                              "description": "The scm release url value.",
                              "nullable": true,
                              "type": "string"
                            },
                            "scm_repository": {
                              "description": "The scm repository value.",
                              "nullable": true,
                              "type": "string"
                            },
                            "tag_name": {
                              "description": "The tag name value.",
                              "type": "string"
                            },
                            "target_commitish": {
                              "description": "The target commitish value.",
                              "type": "string"
                            }
                          },
                          "required": [
                            "created_at",
                            "id",
                            "is_draft",
                            "is_prerelease",
                            "milestone_id",
                            "tag_name"
                          ],
                          "type": "object"
                        },
                        "name": {
                          "description": "The name value.",
                          "type": "string"
                        },
                        "position": {
                          "description": "The position value.",
                          "type": "integer"
                        },
                        "releases": {
                          "description": "The releases value.",
                          "items": {
                            "additionalProperties": false,
                            "properties": {
                              "body": {
                                "description": "The body value.",
                                "type": "string"
                              },
                              "created_at": {
                                "description": "The created at value.",
                                "type": "string"
                              },
                              "created_by": {
                                "description": "The created by value.",
                                "nullable": true,
                                "type": "integer"
                              },
                              "id": {
                                "description": "The id value.",
                                "type": "integer"
                              },
                              "is_draft": {
                                "description": "The is draft value.",
                                "type": "boolean"
                              },
                              "is_prerelease": {
                                "description": "The is prerelease value.",
                                "type": "boolean"
                              },
                              "milestone_id": {
                                "description": "The milestone id value.",
                                "type": "integer"
                              },
                              "name": {
                                "description": "The name value.",
                                "type": "string"
                              },
                              "scm_connection_id": {
                                "description": "The scm connection id value.",
                                "nullable": true,
                                "type": "integer"
                              },
                              "scm_release_id": {
                                "description": "The scm release id value.",
                                "nullable": true,
                                "type": "string"
                              },
                              "scm_release_url": {
                                "description": "The scm release url value.",
                                "nullable": true,
                                "type": "string"
                              },
                              "scm_repository": {
                                "description": "The scm repository value.",
                                "nullable": true,
                                "type": "string"
                              },
                              "tag_name": {
                                "description": "The tag name value.",
                                "type": "string"
                              },
                              "target_commitish": {
                                "description": "The target commitish value.",
                                "type": "string"
                              }
                            },
                            "required": [
                              "created_at",
                              "id",
                              "is_draft",
                              "is_prerelease",
                              "milestone_id",
                              "tag_name"
                            ],
                            "type": "object"
                          },
                          "type": "array"
                        },
                        "status": {
                          "description": "The status value.",
                          "type": "string"
                        },
                        "target_date": {
                          "description": "The target date value.",
                          "nullable": true,
                          "type": "string"
                        },
                        "updated_at": {
                          "description": "The updated at value.",
                          "format": "date-time",
                          "type": "string"
                        },
                        "workspace_id": {
                          "description": "The workspace id value.",
                          "nullable": true,
                          "type": "integer"
                        },
                        "workspace_name": {
                          "description": "The workspace name value.",
                          "type": "string"
                        }
                      },
                      "required": [
                        "created_at",
                        "description",
                        "id",
                        "is_global",
                        "name",
                        "position",
                        "status",
                        "updated_at"
                      ],
                      "type": "object"
                    },
                    "type": "array"
                  },
                  "parent_id": {
                    "description": "The parent id value.",
                    "nullable": true,
                    "type": "integer"
                  },
                  "parent_key": {
                    "description": "The parent key value.",
                    "type": "string"
                  },
                  "parent_title": {
                    "description": "The parent title value.",
                    "type": "string"
                  },
                  "parent_workspace_item_number": {
                    "description": "The parent workspace item number value.",
                    "nullable": true,
                    "type": "integer"
                  },
                  "personal_labels": {
                    "description": "The personal labels value.",
                    "items": {
                      "additionalProperties": false,
                      "properties": {
                        "color": {
                          "description": "The color value.",
                          "type": "string"
                        },
                        "created_at": {
                          "description": "The created at value.",
                          "format": "date-time",
                          "type": "string"
                        },
                        "id": {
                          "description": "The id value.",
                          "type": "integer"
                        },
                        "name": {
                          "description": "The name value.",
                          "type": "string"
                        },
                        "updated_at": {
                          "description": "The updated at value.",
                          "format": "date-time",
                          "type": "string"
                        },
                        "user_id": {
                          "description": "The user id value.",
                          "nullable": true,
                          "type": "integer"
                        }
                      },
                      "required": [
                        "color",
                        "created_at",
                        "id",
                        "name",
                        "updated_at"
                      ],
                      "type": "object"
                    },
                    "type": "array"
                  },
                  "priority_builtin_key": {
                    "description": "The priority builtin key value.",
                    "type": "string"
                  },
                  "priority_color": {
                    "description": "The priority color value.",
                    "type": "string"
                  },
                  "priority_icon": {
                    "description": "The priority icon value.",
                    "type": "string"
                  },
                  "priority_id": {
                    "description": "The priority id value.",
                    "nullable": true,
                    "type": "integer"
                  },
                  "priority_name": {
                    "description": "The priority name value.",
                    "type": "string"
                  },
                  "project_id": {
                    "description": "The project id value.",
                    "nullable": true,
                    "type": "integer"
                  },
                  "project_inheritance_mode": {
                    "description": "The project inheritance mode value.",
                    "type": "string"
                  },
                  "project_name": {
                    "description": "The project name value.",
                    "type": "string"
                  },
                  "related_work_item_id": {
                    "description": "The related work item id value.",
                    "nullable": true,
                    "type": "integer"
                  },
                  "related_work_item_number": {
                    "description": "The related work item number value.",
                    "type": "integer"
                  },
                  "related_work_item_title": {
                    "description": "The related work item title value.",
                    "type": "string"
                  },
                  "related_work_item_workspace_id": {
                    "description": "The related work item workspace id value.",
                    "type": "integer"
                  },
                  "related_work_item_workspace_key": {
                    "description": "The related work item workspace key value.",
                    "type": "string"
                  },
                  "reporter_avatar": {
                    "description": "The reporter avatar value.",
                    "type": "string"
                  },
                  "reporter_email": {
                    "description": "The reporter email value.",
                    "type": "string"
                  },
                  "reporter_id": {
                    "description": "The reporter id value.",
                    "nullable": true,
                    "type": "integer"
                  },
                  "reporter_name": {
                    "description": "The reporter name value.",
                    "type": "string"
                  },
                  "request_type_id": {
                    "description": "The request type id value.",
                    "nullable": true,
                    "type": "integer"
                  },
                  "request_type_name": {
                    "description": "The request type name value.",
                    "type": "string"
                  },
                  "start_date": {
                    "description": "The start date value.",
                    "format": "date-time",
                    "nullable": true,
                    "type": "string"
                  },
                  "status_builtin_key": {
                    "description": "The status builtin key value.",
                    "type": "string"
                  },
                  "status_color": {
                    "description": "The status color value.",
                    "type": "string"
                  },
                  "status_id": {
                    "description": "The status id value.",
                    "nullable": true,
                    "type": "integer"
                  },
                  "status_name": {
                    "description": "The status name value.",
                    "type": "string"
                  },
                  "status_since": {
                    "description": "The status since value.",
                    "format": "date-time",
                    "nullable": true,
                    "type": "string"
                  },
                  "story_points": {
                    "description": "The story points value.",
                    "nullable": true,
                    "type": "number"
                  },
                  "time_project_id": {
                    "description": "The time project id value.",
                    "nullable": true,
                    "type": "integer"
                  },
                  "time_project_name": {
                    "description": "The time project name value.",
                    "type": "string"
                  },
                  "title": {
                    "description": "The title value.",
                    "type": "string"
                  },
                  "updated_at": {
                    "description": "The updated at value.",
                    "format": "date-time",
                    "type": "string"
                  },
                  "virtual_field_data": {
                    "additionalProperties": {
                      "description": "Arbitrary JSON extension value."
                    },
                    "description": "The virtual field data value.",
                    "type": "object"
                  },
                  "workspace_id": {
                    "description": "The workspace id value.",
                    "type": "integer"
                  },
                  "workspace_item_number": {
                    "description": "The workspace item number value.",
                    "type": "integer"
                  },
                  "workspace_key": {
                    "description": "The workspace key value.",
                    "type": "string"
                  },
                  "workspace_name": {
                    "description": "The workspace name value.",
                    "type": "string"
                  }
                },
                "required": [
                  "created_at",
                  "description",
                  "id",
                  "inherit_project",
                  "is_task",
                  "last_active_at",
                  "title",
                  "updated_at",
                  "workspace_id",
                  "workspace_item_number"
                ],
                "type": "object"
              },
              "new_key": {
                "description": "The new key value.",
                "type": "string"
              },
              "old_key": {
                "description": "The old key value.",
                "type": "string"
              },
              "preview": {
                "additionalProperties": false,
                "description": "The preview value.",
                "nullable": true,
                "properties": {
                  "children_detached": {
                    "description": "The children detached value.",
                    "type": "integer"
                  },
                  "custom_fields_dropped": {
                    "description": "The custom fields dropped value.",
                    "items": {
                      "type": "string"
                    },
                    "type": "array"
                  },
                  "custom_fields_kept": {
                    "description": "The custom fields kept value.",
                    "items": {
                      "type": "string"
                    },
                    "type": "array"
                  },
                  "destination_workspace_id": {
                    "description": "The destination workspace id value.",
                    "type": "integer"
                  },
                  "destination_workspace_key": {
                    "description": "The destination workspace key value.",
                    "type": "string"
                  },
                  "destination_workspace_name": {
                    "description": "The destination workspace name value.",
                    "type": "string"
                  },
                  "fields": {
                    "description": "The fields value.",
                    "items": {
                      "additionalProperties": false,
                      "properties": {
                        "action": {
                          "description": "The action value.",
                          "type": "string"
                        },
                        "field": {
                          "description": "The field value.",
                          "type": "string"
                        },
                        "from": {
                          "description": "The from value.",
                          "type": "string"
                        },
                        "to": {
                          "description": "The to value.",
                          "type": "string"
                        }
                      },
                      "required": [
                        "action",
                        "field"
                      ],
                      "type": "object"
                    },
                    "type": "array"
                  },
                  "item_types": {
                    "description": "The item types value.",
                    "items": {
                      "additionalProperties": false,
                      "properties": {
                        "color": {
                          "description": "The color value.",
                          "type": "string"
                        },
                        "icon": {
                          "description": "The icon value.",
                          "type": "string"
                        },
                        "id": {
                          "description": "The id value.",
                          "type": "integer"
                        },
                        "is_default": {
                          "description": "The is default value.",
                          "type": "boolean"
                        },
                        "name": {
                          "description": "The name value.",
                          "type": "string"
                        }
                      },
                      "required": [
                        "id",
                        "name"
                      ],
                      "type": "object"
                    },
                    "type": "array"
                  },
                  "labels_dropped": {
                    "description": "The labels dropped value.",
                    "items": {
                      "type": "string"
                    },
                    "type": "array"
                  },
                  "labels_kept": {
                    "description": "The labels kept value.",
                    "items": {
                      "type": "string"
                    },
                    "type": "array"
                  },
                  "priorities": {
                    "description": "The priorities value.",
                    "items": {
                      "additionalProperties": false,
                      "properties": {
                        "color": {
                          "description": "The color value.",
                          "type": "string"
                        },
                        "icon": {
                          "description": "The icon value.",
                          "type": "string"
                        },
                        "id": {
                          "description": "The id value.",
                          "type": "integer"
                        },
                        "is_default": {
                          "description": "The is default value.",
                          "type": "boolean"
                        },
                        "name": {
                          "description": "The name value.",
                          "type": "string"
                        }
                      },
                      "required": [
                        "id",
                        "name"
                      ],
                      "type": "object"
                    },
                    "type": "array"
                  },
                  "source_key": {
                    "description": "The source key value.",
                    "type": "string"
                  },
                  "source_workspace_id": {
                    "description": "The source workspace id value.",
                    "type": "integer"
                  },
                  "source_workspace_name": {
                    "description": "The source workspace name value.",
                    "type": "string"
                  },
                  "statuses": {
                    "description": "The statuses value.",
                    "items": {
                      "additionalProperties": false,
                      "properties": {
                        "color": {
                          "description": "The color value.",
                          "type": "string"
                        },
                        "icon": {
                          "description": "The icon value.",
                          "type": "string"
                        },
                        "id": {
                          "description": "The id value.",
                          "type": "integer"
                        },
                        "is_default": {
                          "description": "The is default value.",
                          "type": "boolean"
                        },
                        "name": {
                          "description": "The name value.",
                          "type": "string"
                        }
                      },
                      "required": [
                        "id",
                        "name"
                      ],
                      "type": "object"
                    },
                    "type": "array"
                  },
                  "target_item_type_id": {
                    "description": "The target item type id value.",
                    "type": "integer"
                  },
                  "target_priority_id": {
                    "description": "The target priority id value.",
                    "nullable": true,
                    "type": "integer"
                  },
                  "target_status_id": {
                    "description": "The target status id value.",
                    "type": "integer"
                  }
                },
                "required": [
                  "children_detached",
                  "custom_fields_dropped",
                  "custom_fields_kept",
                  "destination_workspace_id",
                  "destination_workspace_key",
                  "destination_workspace_name",
                  "fields",
                  "item_types",
                  "labels_dropped",
                  "labels_kept",
                  "priorities",
                  "source_key",
                  "source_workspace_id",
                  "source_workspace_name",
                  "statuses",
                  "target_item_type_id",
                  "target_status_id"
                ],
                "type": "object"
              }
            },
            "required": [
              "new_key",
              "old_key"
            ],
            "type": "object"
          }
        },
        "required": [
          "data"
        ],
        "type": "object"
      },
      "PostItemsItemIdRecurrenceGenerateResult": {
        "additionalProperties": false,
        "properties": {
          "data": {
            "additionalProperties": false,
            "properties": {
              "generated_count": {
                "description": "The generated count value.",
                "type": "integer"
              }
            },
            "required": [
              "generated_count"
            ],
            "type": "object"
          }
        },
        "required": [
          "data"
        ],
        "type": "object"
      },
      "PostItemsItemIdRecurrencePayload": {
        "additionalProperties": false,
        "properties": {
          "copy_assignee": {
            "description": "The copy assignee value.",
            "nullable": true,
            "type": "boolean"
          },
          "copy_custom_fields": {
            "description": "The copy custom fields value.",
            "nullable": true,
            "type": "boolean"
          },
          "copy_description": {
            "description": "The copy description value.",
            "nullable": true,
            "type": "boolean"
          },
          "copy_priority": {
            "description": "The copy priority value.",
            "nullable": true,
            "type": "boolean"
          },
          "dtend": {
            "description": "The dtend value.",
            "nullable": true,
            "type": "string"
          },
          "dtstart": {
            "description": "The dtstart value.",
            "type": "string"
          },
          "lead_time_days": {
            "description": "The lead time days value.",
            "nullable": true,
            "type": "integer"
          },
          "rrule": {
            "description": "The rrule value.",
            "type": "string"
          },
          "status_on_create": {
            "description": "The status on create value.",
            "nullable": true,
            "type": "integer"
          },
          "template_item_id": {
            "description": "The template item id value.",
            "type": "integer"
          },
          "timezone": {
            "description": "The timezone value.",
            "type": "string"
          }
        },
        "required": [
          "dtstart",
          "rrule",
          "template_item_id"
        ],
        "type": "object"
      },
      "PostItemsItemIdRecurrenceResult": {
        "additionalProperties": false,
        "properties": {
          "data": {
            "additionalProperties": false,
            "properties": {
              "copy_assignee": {
                "description": "The copy assignee value.",
                "type": "boolean"
              },
              "copy_custom_fields": {
                "description": "The copy custom fields value.",
                "type": "boolean"
              },
              "copy_description": {
                "description": "The copy description value.",
                "type": "boolean"
              },
              "copy_priority": {
                "description": "The copy priority value.",
                "type": "boolean"
              },
              "created_at": {
                "description": "The created at value.",
                "format": "date-time",
                "type": "string"
              },
              "created_by": {
                "description": "The created by value.",
                "nullable": true,
                "type": "integer"
              },
              "creator_name": {
                "description": "The creator name value.",
                "type": "string"
              },
              "dtend": {
                "description": "The dtend value.",
                "format": "date-time",
                "nullable": true,
                "type": "string"
              },
              "dtstart": {
                "description": "The dtstart value.",
                "format": "date-time",
                "type": "string"
              },
              "id": {
                "description": "The id value.",
                "type": "integer"
              },
              "instance_count": {
                "description": "The instance count value.",
                "type": "integer"
              },
              "is_active": {
                "description": "The is active value.",
                "type": "boolean"
              },
              "last_generated_until": {
                "description": "The last generated until value.",
                "format": "date-time",
                "nullable": true,
                "type": "string"
              },
              "lead_time_days": {
                "description": "The lead time days value.",
                "type": "integer"
              },
              "next_generation_check": {
                "description": "The next generation check value.",
                "format": "date-time",
                "nullable": true,
                "type": "string"
              },
              "next_occurrence": {
                "description": "The next occurrence value.",
                "format": "date-time",
                "nullable": true,
                "type": "string"
              },
              "rrule": {
                "description": "The rrule value.",
                "type": "string"
              },
              "status_on_create": {
                "description": "The status on create value.",
                "nullable": true,
                "type": "integer"
              },
              "template_item_id": {
                "description": "The template item id value.",
                "type": "integer"
              },
              "template_title": {
                "description": "The template title value.",
                "type": "string"
              },
              "timezone": {
                "description": "The timezone value.",
                "type": "string"
              },
              "updated_at": {
                "description": "The updated at value.",
                "format": "date-time",
                "type": "string"
              },
              "workspace_id": {
                "description": "The workspace id value.",
                "type": "integer"
              },
              "workspace_key": {
                "description": "The workspace key value.",
                "type": "string"
              },
              "workspace_name": {
                "description": "The workspace name value.",
                "type": "string"
              }
            },
            "required": [
              "copy_assignee",
              "copy_custom_fields",
              "copy_description",
              "copy_priority",
              "created_at",
              "creator_name",
              "dtstart",
              "id",
              "instance_count",
              "is_active",
              "lead_time_days",
              "rrule",
              "template_item_id",
              "template_title",
              "timezone",
              "updated_at",
              "workspace_id",
              "workspace_key",
              "workspace_name"
            ],
            "type": "object"
          }
        },
        "required": [
          "data"
        ],
        "type": "object"
      },
      "PostItemsItemIdReparentChildrenPayload": {
        "additionalProperties": false,
        "properties": {
          "parent_id": {
            "description": "The parent id value.",
            "nullable": true,
            "type": "integer"
          }
        },
        "type": "object"
      },
      "PostItemsItemIdReparentChildrenResult": {
        "additionalProperties": false,
        "properties": {
          "data": {
            "additionalProperties": false,
            "properties": {
              "count": {
                "description": "The count value.",
                "type": "integer"
              }
            },
            "required": [
              "count"
            ],
            "type": "object"
          }
        },
        "required": [
          "data"
        ],
        "type": "object"
      },
      "PostItemsItemIdTransitionPayload": {
        "additionalProperties": false,
        "properties": {
          "to_status_id": {
            "description": "The to status id value.",
            "type": "integer"
          }
        },
        "required": [
          "to_status_id"
        ],
        "type": "object"
      },
      "PostItemsItemIdTransitionResult": {
        "additionalProperties": false,
        "properties": {
          "data": {
            "additionalProperties": false,
            "nullable": true,
            "properties": {
              "item": {
                "additionalProperties": false,
                "description": "The item value.",
                "nullable": true,
                "properties": {
                  "assignee_avatar": {
                    "description": "The assignee avatar value.",
                    "type": "string"
                  },
                  "assignee_email": {
                    "description": "The assignee email value.",
                    "type": "string"
                  },
                  "assignee_id": {
                    "description": "The assignee id value.",
                    "nullable": true,
                    "type": "integer"
                  },
                  "assignee_name": {
                    "description": "The assignee name value.",
                    "type": "string"
                  },
                  "calendar_data": {
                    "description": "The calendar data value.",
                    "items": {
                      "additionalProperties": false,
                      "properties": {
                        "created_at": {
                          "description": "The created at value.",
                          "type": "string"
                        },
                        "duration_minutes": {
                          "description": "The duration minutes value.",
                          "type": "integer"
                        },
                        "notes": {
                          "description": "The notes value.",
                          "type": "string"
                        },
                        "scheduled_date": {
                          "description": "The scheduled date value.",
                          "type": "string"
                        },
                        "scheduled_time": {
                          "description": "The scheduled time value.",
                          "type": "string"
                        },
                        "user_id": {
                          "description": "The user id value.",
                          "type": "integer"
                        },
                        "workspace_id": {
                          "description": "The workspace id value.",
                          "type": "integer"
                        }
                      },
                      "required": [
                        "created_at",
                        "scheduled_date",
                        "user_id",
                        "workspace_id"
                      ],
                      "type": "object"
                    },
                    "type": "array"
                  },
                  "channel_id": {
                    "description": "The channel id value.",
                    "nullable": true,
                    "type": "integer"
                  },
                  "channel_name": {
                    "description": "The channel name value.",
                    "type": "string"
                  },
                  "children": {
                    "description": "The children value.",
                    "items": {
                      "description": "Nested resource reference.",
                      "type": "object"
                    },
                    "type": "array"
                  },
                  "completed_at": {
                    "description": "The completed at value.",
                    "format": "date-time",
                    "nullable": true,
                    "type": "string"
                  },
                  "created_at": {
                    "description": "The created at value.",
                    "format": "date-time",
                    "type": "string"
                  },
                  "creator_email": {
                    "description": "The creator email value.",
                    "type": "string"
                  },
                  "creator_id": {
                    "description": "The creator id value.",
                    "nullable": true,
                    "type": "integer"
                  },
                  "creator_name": {
                    "description": "The creator name value.",
                    "type": "string"
                  },
                  "creator_portal_customer_email": {
                    "description": "The creator portal customer email value.",
                    "type": "string"
                  },
                  "creator_portal_customer_id": {
                    "description": "The creator portal customer id value.",
                    "nullable": true,
                    "type": "integer"
                  },
                  "creator_portal_customer_name": {
                    "description": "The creator portal customer name value.",
                    "type": "string"
                  },
                  "custom_field_values": {
                    "additionalProperties": {
                      "description": "Arbitrary JSON extension value."
                    },
                    "description": "The custom field values value.",
                    "type": "object"
                  },
                  "description": {
                    "description": "The description value.",
                    "type": "string"
                  },
                  "description_html": {
                    "description": "The description html value.",
                    "type": "string"
                  },
                  "due_date": {
                    "description": "The due date value.",
                    "format": "date-time",
                    "nullable": true,
                    "type": "string"
                  },
                  "effective_project_id": {
                    "description": "The effective project id value.",
                    "nullable": true,
                    "type": "integer"
                  },
                  "effective_project_name": {
                    "description": "The effective project name value.",
                    "type": "string"
                  },
                  "end_date": {
                    "description": "The end date value.",
                    "format": "date-time",
                    "nullable": true,
                    "type": "string"
                  },
                  "estimate_minutes": {
                    "description": "The estimate minutes value.",
                    "nullable": true,
                    "type": "integer"
                  },
                  "frac_index": {
                    "description": "The frac index value.",
                    "nullable": true,
                    "type": "string"
                  },
                  "id": {
                    "description": "The id value.",
                    "type": "integer"
                  },
                  "inherit_project": {
                    "description": "The inherit project value.",
                    "type": "boolean"
                  },
                  "is_task": {
                    "description": "Whether the item is a personal task. True is valid only in the authenticated caller's personal workspace and only with the Open or Done system status.",
                    "type": "boolean"
                  },
                  "item_type_builtin_key": {
                    "description": "The item type builtin key value.",
                    "type": "string"
                  },
                  "item_type_id": {
                    "description": "The item type id value.",
                    "nullable": true,
                    "type": "integer"
                  },
                  "item_type_name": {
                    "description": "The item type name value.",
                    "type": "string"
                  },
                  "iteration_end_date": {
                    "description": "The iteration end date value.",
                    "type": "string"
                  },
                  "iteration_id": {
                    "description": "The iteration id value.",
                    "nullable": true,
                    "type": "integer"
                  },
                  "iteration_name": {
                    "description": "The iteration name value.",
                    "type": "string"
                  },
                  "key": {
                    "description": "The key value.",
                    "type": "string"
                  },
                  "labels": {
                    "description": "The labels value.",
                    "items": {
                      "additionalProperties": false,
                      "properties": {
                        "color": {
                          "description": "The color value.",
                          "type": "string"
                        },
                        "created_at": {
                          "description": "The created at value.",
                          "format": "date-time",
                          "type": "string"
                        },
                        "id": {
                          "description": "The id value.",
                          "type": "integer"
                        },
                        "name": {
                          "description": "The name value.",
                          "type": "string"
                        },
                        "updated_at": {
                          "description": "The updated at value.",
                          "format": "date-time",
                          "type": "string"
                        }
                      },
                      "required": [
                        "color",
                        "created_at",
                        "id",
                        "name",
                        "updated_at"
                      ],
                      "type": "object"
                    },
                    "type": "array"
                  },
                  "last_active_at": {
                    "description": "The last active at value.",
                    "format": "date-time",
                    "type": "string"
                  },
                  "milestones": {
                    "description": "The milestones value.",
                    "items": {
                      "additionalProperties": false,
                      "properties": {
                        "category_color": {
                          "description": "The category color value.",
                          "type": "string"
                        },
                        "category_id": {
                          "description": "The category id value.",
                          "nullable": true,
                          "type": "integer"
                        },
                        "category_name": {
                          "description": "The category name value.",
                          "type": "string"
                        },
                        "created_at": {
                          "description": "The created at value.",
                          "format": "date-time",
                          "type": "string"
                        },
                        "description": {
                          "description": "The description value.",
                          "type": "string"
                        },
                        "external_key": {
                          "description": "The external key value.",
                          "nullable": true,
                          "type": "string"
                        },
                        "id": {
                          "description": "The id value.",
                          "type": "integer"
                        },
                        "is_global": {
                          "description": "The is global value.",
                          "type": "boolean"
                        },
                        "latest_release": {
                          "additionalProperties": false,
                          "description": "The latest release value.",
                          "nullable": true,
                          "properties": {
                            "body": {
                              "description": "The body value.",
                              "type": "string"
                            },
                            "created_at": {
                              "description": "The created at value.",
                              "type": "string"
                            },
                            "created_by": {
                              "description": "The created by value.",
                              "nullable": true,
                              "type": "integer"
                            },
                            "id": {
                              "description": "The id value.",
                              "type": "integer"
                            },
                            "is_draft": {
                              "description": "The is draft value.",
                              "type": "boolean"
                            },
                            "is_prerelease": {
                              "description": "The is prerelease value.",
                              "type": "boolean"
                            },
                            "milestone_id": {
                              "description": "The milestone id value.",
                              "type": "integer"
                            },
                            "name": {
                              "description": "The name value.",
                              "type": "string"
                            },
                            "scm_connection_id": {
                              "description": "The scm connection id value.",
                              "nullable": true,
                              "type": "integer"
                            },
                            "scm_release_id": {
                              "description": "The scm release id value.",
                              "nullable": true,
                              "type": "string"
                            },
                            "scm_release_url": {
                              "description": "The scm release url value.",
                              "nullable": true,
                              "type": "string"
                            },
                            "scm_repository": {
                              "description": "The scm repository value.",
                              "nullable": true,
                              "type": "string"
                            },
                            "tag_name": {
                              "description": "The tag name value.",
                              "type": "string"
                            },
                            "target_commitish": {
                              "description": "The target commitish value.",
                              "type": "string"
                            }
                          },
                          "required": [
                            "created_at",
                            "id",
                            "is_draft",
                            "is_prerelease",
                            "milestone_id",
                            "tag_name"
                          ],
                          "type": "object"
                        },
                        "name": {
                          "description": "The name value.",
                          "type": "string"
                        },
                        "position": {
                          "description": "The position value.",
                          "type": "integer"
                        },
                        "releases": {
                          "description": "The releases value.",
                          "items": {
                            "additionalProperties": false,
                            "properties": {
                              "body": {
                                "description": "The body value.",
                                "type": "string"
                              },
                              "created_at": {
                                "description": "The created at value.",
                                "type": "string"
                              },
                              "created_by": {
                                "description": "The created by value.",
                                "nullable": true,
                                "type": "integer"
                              },
                              "id": {
                                "description": "The id value.",
                                "type": "integer"
                              },
                              "is_draft": {
                                "description": "The is draft value.",
                                "type": "boolean"
                              },
                              "is_prerelease": {
                                "description": "The is prerelease value.",
                                "type": "boolean"
                              },
                              "milestone_id": {
                                "description": "The milestone id value.",
                                "type": "integer"
                              },
                              "name": {
                                "description": "The name value.",
                                "type": "string"
                              },
                              "scm_connection_id": {
                                "description": "The scm connection id value.",
                                "nullable": true,
                                "type": "integer"
                              },
                              "scm_release_id": {
                                "description": "The scm release id value.",
                                "nullable": true,
                                "type": "string"
                              },
                              "scm_release_url": {
                                "description": "The scm release url value.",
                                "nullable": true,
                                "type": "string"
                              },
                              "scm_repository": {
                                "description": "The scm repository value.",
                                "nullable": true,
                                "type": "string"
                              },
                              "tag_name": {
                                "description": "The tag name value.",
                                "type": "string"
                              },
                              "target_commitish": {
                                "description": "The target commitish value.",
                                "type": "string"
                              }
                            },
                            "required": [
                              "created_at",
                              "id",
                              "is_draft",
                              "is_prerelease",
                              "milestone_id",
                              "tag_name"
                            ],
                            "type": "object"
                          },
                          "type": "array"
                        },
                        "status": {
                          "description": "The status value.",
                          "type": "string"
                        },
                        "target_date": {
                          "description": "The target date value.",
                          "nullable": true,
                          "type": "string"
                        },
                        "updated_at": {
                          "description": "The updated at value.",
                          "format": "date-time",
                          "type": "string"
                        },
                        "workspace_id": {
                          "description": "The workspace id value.",
                          "nullable": true,
                          "type": "integer"
                        },
                        "workspace_name": {
                          "description": "The workspace name value.",
                          "type": "string"
                        }
                      },
                      "required": [
                        "created_at",
                        "description",
                        "id",
                        "is_global",
                        "name",
                        "position",
                        "status",
                        "updated_at"
                      ],
                      "type": "object"
                    },
                    "type": "array"
                  },
                  "parent_id": {
                    "description": "The parent id value.",
                    "nullable": true,
                    "type": "integer"
                  },
                  "parent_key": {
                    "description": "The parent key value.",
                    "type": "string"
                  },
                  "parent_title": {
                    "description": "The parent title value.",
                    "type": "string"
                  },
                  "parent_workspace_item_number": {
                    "description": "The parent workspace item number value.",
                    "nullable": true,
                    "type": "integer"
                  },
                  "personal_labels": {
                    "description": "The personal labels value.",
                    "items": {
                      "additionalProperties": false,
                      "properties": {
                        "color": {
                          "description": "The color value.",
                          "type": "string"
                        },
                        "created_at": {
                          "description": "The created at value.",
                          "format": "date-time",
                          "type": "string"
                        },
                        "id": {
                          "description": "The id value.",
                          "type": "integer"
                        },
                        "name": {
                          "description": "The name value.",
                          "type": "string"
                        },
                        "updated_at": {
                          "description": "The updated at value.",
                          "format": "date-time",
                          "type": "string"
                        },
                        "user_id": {
                          "description": "The user id value.",
                          "nullable": true,
                          "type": "integer"
                        }
                      },
                      "required": [
                        "color",
                        "created_at",
                        "id",
                        "name",
                        "updated_at"
                      ],
                      "type": "object"
                    },
                    "type": "array"
                  },
                  "priority_builtin_key": {
                    "description": "The priority builtin key value.",
                    "type": "string"
                  },
                  "priority_color": {
                    "description": "The priority color value.",
                    "type": "string"
                  },
                  "priority_icon": {
                    "description": "The priority icon value.",
                    "type": "string"
                  },
                  "priority_id": {
                    "description": "The priority id value.",
                    "nullable": true,
                    "type": "integer"
                  },
                  "priority_name": {
                    "description": "The priority name value.",
                    "type": "string"
                  },
                  "project_id": {
                    "description": "The project id value.",
                    "nullable": true,
                    "type": "integer"
                  },
                  "project_inheritance_mode": {
                    "description": "The project inheritance mode value.",
                    "type": "string"
                  },
                  "project_name": {
                    "description": "The project name value.",
                    "type": "string"
                  },
                  "related_work_item_id": {
                    "description": "The related work item id value.",
                    "nullable": true,
                    "type": "integer"
                  },
                  "related_work_item_number": {
                    "description": "The related work item number value.",
                    "type": "integer"
                  },
                  "related_work_item_title": {
                    "description": "The related work item title value.",
                    "type": "string"
                  },
                  "related_work_item_workspace_id": {
                    "description": "The related work item workspace id value.",
                    "type": "integer"
                  },
                  "related_work_item_workspace_key": {
                    "description": "The related work item workspace key value.",
                    "type": "string"
                  },
                  "reporter_avatar": {
                    "description": "The reporter avatar value.",
                    "type": "string"
                  },
                  "reporter_email": {
                    "description": "The reporter email value.",
                    "type": "string"
                  },
                  "reporter_id": {
                    "description": "The reporter id value.",
                    "nullable": true,
                    "type": "integer"
                  },
                  "reporter_name": {
                    "description": "The reporter name value.",
                    "type": "string"
                  },
                  "request_type_id": {
                    "description": "The request type id value.",
                    "nullable": true,
                    "type": "integer"
                  },
                  "request_type_name": {
                    "description": "The request type name value.",
                    "type": "string"
                  },
                  "start_date": {
                    "description": "The start date value.",
                    "format": "date-time",
                    "nullable": true,
                    "type": "string"
                  },
                  "status_builtin_key": {
                    "description": "The status builtin key value.",
                    "type": "string"
                  },
                  "status_color": {
                    "description": "The status color value.",
                    "type": "string"
                  },
                  "status_id": {
                    "description": "The status id value.",
                    "nullable": true,
                    "type": "integer"
                  },
                  "status_name": {
                    "description": "The status name value.",
                    "type": "string"
                  },
                  "status_since": {
                    "description": "The status since value.",
                    "format": "date-time",
                    "nullable": true,
                    "type": "string"
                  },
                  "story_points": {
                    "description": "The story points value.",
                    "nullable": true,
                    "type": "number"
                  },
                  "time_project_id": {
                    "description": "The time project id value.",
                    "nullable": true,
                    "type": "integer"
                  },
                  "time_project_name": {
                    "description": "The time project name value.",
                    "type": "string"
                  },
                  "title": {
                    "description": "The title value.",
                    "type": "string"
                  },
                  "updated_at": {
                    "description": "The updated at value.",
                    "format": "date-time",
                    "type": "string"
                  },
                  "virtual_field_data": {
                    "additionalProperties": {
                      "description": "Arbitrary JSON extension value."
                    },
                    "description": "The virtual field data value.",
                    "type": "object"
                  },
                  "workspace_id": {
                    "description": "The workspace id value.",
                    "type": "integer"
                  },
                  "workspace_item_number": {
                    "description": "The workspace item number value.",
                    "type": "integer"
                  },
                  "workspace_key": {
                    "description": "The workspace key value.",
                    "type": "string"
                  },
                  "workspace_name": {
                    "description": "The workspace name value.",
                    "type": "string"
                  }
                },
                "required": [
                  "created_at",
                  "description",
                  "id",
                  "inherit_project",
                  "is_task",
                  "last_active_at",
                  "title",
                  "updated_at",
                  "workspace_id",
                  "workspace_item_number"
                ],
                "type": "object"
              },
              "new_status_id": {
                "description": "The new status id value.",
                "nullable": true,
                "type": "integer"
              },
              "no_op": {
                "description": "The no op value.",
                "type": "boolean"
              },
              "old_status_id": {
                "description": "The old status id value.",
                "nullable": true,
                "type": "integer"
              }
            },
            "required": [
              "no_op"
            ],
            "type": "object"
          }
        },
        "required": [
          "data"
        ],
        "type": "object"
      },
      "PostItemsPayload": {
        "additionalProperties": false,
        "properties": {
          "assignee_id": {
            "description": "The assignee id value.",
            "nullable": true,
            "type": "integer"
          },
          "custom_field_values": {
            "additionalProperties": {
              "description": "Arbitrary JSON extension value."
            },
            "description": "The custom field values value.",
            "type": "object"
          },
          "description": {
            "description": "The description value.",
            "type": "string"
          },
          "due_date": {
            "description": "The due date value.",
            "format": "date-time",
            "nullable": true,
            "type": "string"
          },
          "end_date": {
            "description": "The end date value.",
            "format": "date-time",
            "nullable": true,
            "type": "string"
          },
          "estimate_minutes": {
            "description": "The estimate minutes value.",
            "nullable": true,
            "type": "integer"
          },
          "inherit_project": {
            "description": "The inherit project value.",
            "type": "boolean"
          },
          "is_task": {
            "description": "Whether the item is a personal task. True is valid only in the authenticated caller's personal workspace and only with the Open or Done system status.",
            "type": "boolean"
          },
          "item_type_id": {
            "description": "The item type id value.",
            "nullable": true,
            "type": "integer"
          },
          "iteration_id": {
            "description": "The iteration id value.",
            "nullable": true,
            "type": "integer"
          },
          "label_ids": {
            "description": "The label ids value.",
            "items": {
              "type": "integer"
            },
            "type": "array"
          },
          "milestone_ids": {
            "description": "The milestone ids value.",
            "items": {
              "type": "integer"
            },
            "type": "array"
          },
          "parent_id": {
            "description": "The parent id value.",
            "nullable": true,
            "type": "integer"
          },
          "priority_id": {
            "description": "The priority id value.",
            "nullable": true,
            "type": "integer"
          },
          "project_id": {
            "description": "The project id value.",
            "nullable": true,
            "type": "integer"
          },
          "related_work_item_id": {
            "description": "The related work item id value.",
            "nullable": true,
            "type": "integer"
          },
          "start_date": {
            "description": "The start date value.",
            "format": "date-time",
            "nullable": true,
            "type": "string"
          },
          "status_id": {
            "description": "The status id value.",
            "nullable": true,
            "type": "integer"
          },
          "story_points": {
            "description": "The story points value.",
            "nullable": true,
            "type": "number"
          },
          "time_project_id": {
            "description": "The time project id value.",
            "nullable": true,
            "type": "integer"
          },
          "title": {
            "description": "The title value.",
            "type": "string"
          },
          "workspace_id": {
            "description": "The workspace id value.",
            "type": "integer"
          }
        },
        "required": [
          "custom_field_values",
          "description",
          "inherit_project",
          "is_task",
          "label_ids",
          "milestone_ids",
          "title",
          "workspace_id"
        ],
        "type": "object"
      },
      "PostItemsResult": {
        "additionalProperties": false,
        "properties": {
          "data": {
            "additionalProperties": false,
            "nullable": true,
            "properties": {
              "assignee_avatar": {
                "description": "The assignee avatar value.",
                "type": "string"
              },
              "assignee_email": {
                "description": "The assignee email value.",
                "type": "string"
              },
              "assignee_id": {
                "description": "The assignee id value.",
                "nullable": true,
                "type": "integer"
              },
              "assignee_name": {
                "description": "The assignee name value.",
                "type": "string"
              },
              "calendar_data": {
                "description": "The calendar data value.",
                "items": {
                  "additionalProperties": false,
                  "properties": {
                    "created_at": {
                      "description": "The created at value.",
                      "type": "string"
                    },
                    "duration_minutes": {
                      "description": "The duration minutes value.",
                      "type": "integer"
                    },
                    "notes": {
                      "description": "The notes value.",
                      "type": "string"
                    },
                    "scheduled_date": {
                      "description": "The scheduled date value.",
                      "type": "string"
                    },
                    "scheduled_time": {
                      "description": "The scheduled time value.",
                      "type": "string"
                    },
                    "user_id": {
                      "description": "The user id value.",
                      "type": "integer"
                    },
                    "workspace_id": {
                      "description": "The workspace id value.",
                      "type": "integer"
                    }
                  },
                  "required": [
                    "created_at",
                    "scheduled_date",
                    "user_id",
                    "workspace_id"
                  ],
                  "type": "object"
                },
                "type": "array"
              },
              "channel_id": {
                "description": "The channel id value.",
                "nullable": true,
                "type": "integer"
              },
              "channel_name": {
                "description": "The channel name value.",
                "type": "string"
              },
              "children": {
                "description": "The children value.",
                "items": {
                  "description": "Nested resource reference.",
                  "type": "object"
                },
                "type": "array"
              },
              "completed_at": {
                "description": "The completed at value.",
                "format": "date-time",
                "nullable": true,
                "type": "string"
              },
              "created_at": {
                "description": "The created at value.",
                "format": "date-time",
                "type": "string"
              },
              "creator_email": {
                "description": "The creator email value.",
                "type": "string"
              },
              "creator_id": {
                "description": "The creator id value.",
                "nullable": true,
                "type": "integer"
              },
              "creator_name": {
                "description": "The creator name value.",
                "type": "string"
              },
              "creator_portal_customer_email": {
                "description": "The creator portal customer email value.",
                "type": "string"
              },
              "creator_portal_customer_id": {
                "description": "The creator portal customer id value.",
                "nullable": true,
                "type": "integer"
              },
              "creator_portal_customer_name": {
                "description": "The creator portal customer name value.",
                "type": "string"
              },
              "custom_field_values": {
                "additionalProperties": {
                  "description": "Arbitrary JSON extension value."
                },
                "description": "The custom field values value.",
                "type": "object"
              },
              "description": {
                "description": "The description value.",
                "type": "string"
              },
              "description_html": {
                "description": "The description html value.",
                "type": "string"
              },
              "due_date": {
                "description": "The due date value.",
                "format": "date-time",
                "nullable": true,
                "type": "string"
              },
              "effective_project_id": {
                "description": "The effective project id value.",
                "nullable": true,
                "type": "integer"
              },
              "effective_project_name": {
                "description": "The effective project name value.",
                "type": "string"
              },
              "end_date": {
                "description": "The end date value.",
                "format": "date-time",
                "nullable": true,
                "type": "string"
              },
              "estimate_minutes": {
                "description": "The estimate minutes value.",
                "nullable": true,
                "type": "integer"
              },
              "frac_index": {
                "description": "The frac index value.",
                "nullable": true,
                "type": "string"
              },
              "id": {
                "description": "The id value.",
                "type": "integer"
              },
              "inherit_project": {
                "description": "The inherit project value.",
                "type": "boolean"
              },
              "is_task": {
                "description": "Whether the item is a personal task. True is valid only in the authenticated caller's personal workspace and only with the Open or Done system status.",
                "type": "boolean"
              },
              "item_type_builtin_key": {
                "description": "The item type builtin key value.",
                "type": "string"
              },
              "item_type_id": {
                "description": "The item type id value.",
                "nullable": true,
                "type": "integer"
              },
              "item_type_name": {
                "description": "The item type name value.",
                "type": "string"
              },
              "iteration_end_date": {
                "description": "The iteration end date value.",
                "type": "string"
              },
              "iteration_id": {
                "description": "The iteration id value.",
                "nullable": true,
                "type": "integer"
              },
              "iteration_name": {
                "description": "The iteration name value.",
                "type": "string"
              },
              "key": {
                "description": "The key value.",
                "type": "string"
              },
              "labels": {
                "description": "The labels value.",
                "items": {
                  "additionalProperties": false,
                  "properties": {
                    "color": {
                      "description": "The color value.",
                      "type": "string"
                    },
                    "created_at": {
                      "description": "The created at value.",
                      "format": "date-time",
                      "type": "string"
                    },
                    "id": {
                      "description": "The id value.",
                      "type": "integer"
                    },
                    "name": {
                      "description": "The name value.",
                      "type": "string"
                    },
                    "updated_at": {
                      "description": "The updated at value.",
                      "format": "date-time",
                      "type": "string"
                    }
                  },
                  "required": [
                    "color",
                    "created_at",
                    "id",
                    "name",
                    "updated_at"
                  ],
                  "type": "object"
                },
                "type": "array"
              },
              "last_active_at": {
                "description": "The last active at value.",
                "format": "date-time",
                "type": "string"
              },
              "milestones": {
                "description": "The milestones value.",
                "items": {
                  "additionalProperties": false,
                  "properties": {
                    "category_color": {
                      "description": "The category color value.",
                      "type": "string"
                    },
                    "category_id": {
                      "description": "The category id value.",
                      "nullable": true,
                      "type": "integer"
                    },
                    "category_name": {
                      "description": "The category name value.",
                      "type": "string"
                    },
                    "created_at": {
                      "description": "The created at value.",
                      "format": "date-time",
                      "type": "string"
                    },
                    "description": {
                      "description": "The description value.",
                      "type": "string"
                    },
                    "external_key": {
                      "description": "The external key value.",
                      "nullable": true,
                      "type": "string"
                    },
                    "id": {
                      "description": "The id value.",
                      "type": "integer"
                    },
                    "is_global": {
                      "description": "The is global value.",
                      "type": "boolean"
                    },
                    "latest_release": {
                      "additionalProperties": false,
                      "description": "The latest release value.",
                      "nullable": true,
                      "properties": {
                        "body": {
                          "description": "The body value.",
                          "type": "string"
                        },
                        "created_at": {
                          "description": "The created at value.",
                          "type": "string"
                        },
                        "created_by": {
                          "description": "The created by value.",
                          "nullable": true,
                          "type": "integer"
                        },
                        "id": {
                          "description": "The id value.",
                          "type": "integer"
                        },
                        "is_draft": {
                          "description": "The is draft value.",
                          "type": "boolean"
                        },
                        "is_prerelease": {
                          "description": "The is prerelease value.",
                          "type": "boolean"
                        },
                        "milestone_id": {
                          "description": "The milestone id value.",
                          "type": "integer"
                        },
                        "name": {
                          "description": "The name value.",
                          "type": "string"
                        },
                        "scm_connection_id": {
                          "description": "The scm connection id value.",
                          "nullable": true,
                          "type": "integer"
                        },
                        "scm_release_id": {
                          "description": "The scm release id value.",
                          "nullable": true,
                          "type": "string"
                        },
                        "scm_release_url": {
                          "description": "The scm release url value.",
                          "nullable": true,
                          "type": "string"
                        },
                        "scm_repository": {
                          "description": "The scm repository value.",
                          "nullable": true,
                          "type": "string"
                        },
                        "tag_name": {
                          "description": "The tag name value.",
                          "type": "string"
                        },
                        "target_commitish": {
                          "description": "The target commitish value.",
                          "type": "string"
                        }
                      },
                      "required": [
                        "created_at",
                        "id",
                        "is_draft",
                        "is_prerelease",
                        "milestone_id",
                        "tag_name"
                      ],
                      "type": "object"
                    },
                    "name": {
                      "description": "The name value.",
                      "type": "string"
                    },
                    "position": {
                      "description": "The position value.",
                      "type": "integer"
                    },
                    "releases": {
                      "description": "The releases value.",
                      "items": {
                        "additionalProperties": false,
                        "properties": {
                          "body": {
                            "description": "The body value.",
                            "type": "string"
                          },
                          "created_at": {
                            "description": "The created at value.",
                            "type": "string"
                          },
                          "created_by": {
                            "description": "The created by value.",
                            "nullable": true,
                            "type": "integer"
                          },
                          "id": {
                            "description": "The id value.",
                            "type": "integer"
                          },
                          "is_draft": {
                            "description": "The is draft value.",
                            "type": "boolean"
                          },
                          "is_prerelease": {
                            "description": "The is prerelease value.",
                            "type": "boolean"
                          },
                          "milestone_id": {
                            "description": "The milestone id value.",
                            "type": "integer"
                          },
                          "name": {
                            "description": "The name value.",
                            "type": "string"
                          },
                          "scm_connection_id": {
                            "description": "The scm connection id value.",
                            "nullable": true,
                            "type": "integer"
                          },
                          "scm_release_id": {
                            "description": "The scm release id value.",
                            "nullable": true,
                            "type": "string"
                          },
                          "scm_release_url": {
                            "description": "The scm release url value.",
                            "nullable": true,
                            "type": "string"
                          },
                          "scm_repository": {
                            "description": "The scm repository value.",
                            "nullable": true,
                            "type": "string"
                          },
                          "tag_name": {
                            "description": "The tag name value.",
                            "type": "string"
                          },
                          "target_commitish": {
                            "description": "The target commitish value.",
                            "type": "string"
                          }
                        },
                        "required": [
                          "created_at",
                          "id",
                          "is_draft",
                          "is_prerelease",
                          "milestone_id",
                          "tag_name"
                        ],
                        "type": "object"
                      },
                      "type": "array"
                    },
                    "status": {
                      "description": "The status value.",
                      "type": "string"
                    },
                    "target_date": {
                      "description": "The target date value.",
                      "nullable": true,
                      "type": "string"
                    },
                    "updated_at": {
                      "description": "The updated at value.",
                      "format": "date-time",
                      "type": "string"
                    },
                    "workspace_id": {
                      "description": "The workspace id value.",
                      "nullable": true,
                      "type": "integer"
                    },
                    "workspace_name": {
                      "description": "The workspace name value.",
                      "type": "string"
                    }
                  },
                  "required": [
                    "created_at",
                    "description",
                    "id",
                    "is_global",
                    "name",
                    "position",
                    "status",
                    "updated_at"
                  ],
                  "type": "object"
                },
                "type": "array"
              },
              "parent_id": {
                "description": "The parent id value.",
                "nullable": true,
                "type": "integer"
              },
              "parent_key": {
                "description": "The parent key value.",
                "type": "string"
              },
              "parent_title": {
                "description": "The parent title value.",
                "type": "string"
              },
              "parent_workspace_item_number": {
                "description": "The parent workspace item number value.",
                "nullable": true,
                "type": "integer"
              },
              "personal_labels": {
                "description": "The personal labels value.",
                "items": {
                  "additionalProperties": false,
                  "properties": {
                    "color": {
                      "description": "The color value.",
                      "type": "string"
                    },
                    "created_at": {
                      "description": "The created at value.",
                      "format": "date-time",
                      "type": "string"
                    },
                    "id": {
                      "description": "The id value.",
                      "type": "integer"
                    },
                    "name": {
                      "description": "The name value.",
                      "type": "string"
                    },
                    "updated_at": {
                      "description": "The updated at value.",
                      "format": "date-time",
                      "type": "string"
                    },
                    "user_id": {
                      "description": "The user id value.",
                      "nullable": true,
                      "type": "integer"
                    }
                  },
                  "required": [
                    "color",
                    "created_at",
                    "id",
                    "name",
                    "updated_at"
                  ],
                  "type": "object"
                },
                "type": "array"
              },
              "priority_builtin_key": {
                "description": "The priority builtin key value.",
                "type": "string"
              },
              "priority_color": {
                "description": "The priority color value.",
                "type": "string"
              },
              "priority_icon": {
                "description": "The priority icon value.",
                "type": "string"
              },
              "priority_id": {
                "description": "The priority id value.",
                "nullable": true,
                "type": "integer"
              },
              "priority_name": {
                "description": "The priority name value.",
                "type": "string"
              },
              "project_id": {
                "description": "The project id value.",
                "nullable": true,
                "type": "integer"
              },
              "project_inheritance_mode": {
                "description": "The project inheritance mode value.",
                "type": "string"
              },
              "project_name": {
                "description": "The project name value.",
                "type": "string"
              },
              "related_work_item_id": {
                "description": "The related work item id value.",
                "nullable": true,
                "type": "integer"
              },
              "related_work_item_number": {
                "description": "The related work item number value.",
                "type": "integer"
              },
              "related_work_item_title": {
                "description": "The related work item title value.",
                "type": "string"
              },
              "related_work_item_workspace_id": {
                "description": "The related work item workspace id value.",
                "type": "integer"
              },
              "related_work_item_workspace_key": {
                "description": "The related work item workspace key value.",
                "type": "string"
              },
              "reporter_avatar": {
                "description": "The reporter avatar value.",
                "type": "string"
              },
              "reporter_email": {
                "description": "The reporter email value.",
                "type": "string"
              },
              "reporter_id": {
                "description": "The reporter id value.",
                "nullable": true,
                "type": "integer"
              },
              "reporter_name": {
                "description": "The reporter name value.",
                "type": "string"
              },
              "request_type_id": {
                "description": "The request type id value.",
                "nullable": true,
                "type": "integer"
              },
              "request_type_name": {
                "description": "The request type name value.",
                "type": "string"
              },
              "start_date": {
                "description": "The start date value.",
                "format": "date-time",
                "nullable": true,
                "type": "string"
              },
              "status_builtin_key": {
                "description": "The status builtin key value.",
                "type": "string"
              },
              "status_color": {
                "description": "The status color value.",
                "type": "string"
              },
              "status_id": {
                "description": "The status id value.",
                "nullable": true,
                "type": "integer"
              },
              "status_name": {
                "description": "The status name value.",
                "type": "string"
              },
              "status_since": {
                "description": "The status since value.",
                "format": "date-time",
                "nullable": true,
                "type": "string"
              },
              "story_points": {
                "description": "The story points value.",
                "nullable": true,
                "type": "number"
              },
              "time_project_id": {
                "description": "The time project id value.",
                "nullable": true,
                "type": "integer"
              },
              "time_project_name": {
                "description": "The time project name value.",
                "type": "string"
              },
              "title": {
                "description": "The title value.",
                "type": "string"
              },
              "updated_at": {
                "description": "The updated at value.",
                "format": "date-time",
                "type": "string"
              },
              "virtual_field_data": {
                "additionalProperties": {
                  "description": "Arbitrary JSON extension value."
                },
                "description": "The virtual field data value.",
                "type": "object"
              },
              "workspace_id": {
                "description": "The workspace id value.",
                "type": "integer"
              },
              "workspace_item_number": {
                "description": "The workspace item number value.",
                "type": "integer"
              },
              "workspace_key": {
                "description": "The workspace key value.",
                "type": "string"
              },
              "workspace_name": {
                "description": "The workspace name value.",
                "type": "string"
              }
            },
            "required": [
              "created_at",
              "description",
              "id",
              "inherit_project",
              "is_task",
              "last_active_at",
              "title",
              "updated_at",
              "workspace_id",
              "workspace_item_number"
            ],
            "type": "object"
          }
        },
        "required": [
          "data"
        ],
        "type": "object"
      },
      "PostItemsRoadmapHierarchyDatesPayload": {
        "additionalProperties": false,
        "properties": {
          "root_ids": {
            "description": "The root ids value.",
            "items": {
              "type": "integer"
            },
            "type": "array"
          }
        },
        "required": [
          "root_ids"
        ],
        "type": "object"
      },
      "PostItemsRoadmapHierarchyDatesResult": {
        "additionalProperties": false,
        "properties": {
          "data": {
            "additionalProperties": false,
            "properties": {
              "items": {
                "description": "The items value.",
                "items": {
                  "additionalProperties": false,
                  "properties": {
                    "end_date": {
                      "description": "The end date value.",
                      "type": "string"
                    },
                    "id": {
                      "description": "The id value.",
                      "type": "integer"
                    },
                    "parent_id": {
                      "description": "The parent id value.",
                      "nullable": true,
                      "type": "integer"
                    },
                    "start_date": {
                      "description": "The start date value.",
                      "type": "string"
                    },
                    "workspace_id": {
                      "description": "The workspace id value.",
                      "type": "integer"
                    }
                  },
                  "required": [
                    "id",
                    "workspace_id"
                  ],
                  "type": "object"
                },
                "type": "array"
              },
              "truncated": {
                "description": "The truncated value.",
                "type": "boolean"
              }
            },
            "required": [
              "items",
              "truncated"
            ],
            "type": "object"
          }
        },
        "required": [
          "data"
        ],
        "type": "object"
      },
      "PostIterationsIterationIdCompletePayload": {
        "additionalProperties": false,
        "properties": {
          "move_incomplete_to_iteration_id": {
            "description": "The move incomplete to iteration id value.",
            "nullable": true,
            "type": "integer"
          }
        },
        "type": "object"
      },
      "PostIterationsIterationIdCompleteResult": {
        "additionalProperties": false,
        "properties": {
          "data": {
            "additionalProperties": false,
            "nullable": true,
            "properties": {
              "already_completed": {
                "description": "The already completed value.",
                "type": "boolean"
              },
              "duration_ms": {
                "description": "The duration ms value.",
                "type": "integer"
              },
              "items": {
                "description": "The items value.",
                "items": {
                  "additionalProperties": false,
                  "nullable": true,
                  "properties": {
                    "assignee_avatar": {
                      "description": "The assignee avatar value.",
                      "type": "string"
                    },
                    "assignee_email": {
                      "description": "The assignee email value.",
                      "type": "string"
                    },
                    "assignee_id": {
                      "description": "The assignee id value.",
                      "nullable": true,
                      "type": "integer"
                    },
                    "assignee_name": {
                      "description": "The assignee name value.",
                      "type": "string"
                    },
                    "calendar_data": {
                      "description": "The calendar data value.",
                      "items": {
                        "additionalProperties": false,
                        "properties": {
                          "created_at": {
                            "description": "The created at value.",
                            "type": "string"
                          },
                          "duration_minutes": {
                            "description": "The duration minutes value.",
                            "type": "integer"
                          },
                          "notes": {
                            "description": "The notes value.",
                            "type": "string"
                          },
                          "scheduled_date": {
                            "description": "The scheduled date value.",
                            "type": "string"
                          },
                          "scheduled_time": {
                            "description": "The scheduled time value.",
                            "type": "string"
                          },
                          "user_id": {
                            "description": "The user id value.",
                            "type": "integer"
                          },
                          "workspace_id": {
                            "description": "The workspace id value.",
                            "type": "integer"
                          }
                        },
                        "required": [
                          "created_at",
                          "scheduled_date",
                          "user_id",
                          "workspace_id"
                        ],
                        "type": "object"
                      },
                      "type": "array"
                    },
                    "channel_id": {
                      "description": "The channel id value.",
                      "nullable": true,
                      "type": "integer"
                    },
                    "channel_name": {
                      "description": "The channel name value.",
                      "type": "string"
                    },
                    "children": {
                      "description": "The children value.",
                      "items": {
                        "description": "Nested resource reference.",
                        "type": "object"
                      },
                      "type": "array"
                    },
                    "completed_at": {
                      "description": "The completed at value.",
                      "format": "date-time",
                      "nullable": true,
                      "type": "string"
                    },
                    "created_at": {
                      "description": "The created at value.",
                      "format": "date-time",
                      "type": "string"
                    },
                    "creator_email": {
                      "description": "The creator email value.",
                      "type": "string"
                    },
                    "creator_id": {
                      "description": "The creator id value.",
                      "nullable": true,
                      "type": "integer"
                    },
                    "creator_name": {
                      "description": "The creator name value.",
                      "type": "string"
                    },
                    "creator_portal_customer_email": {
                      "description": "The creator portal customer email value.",
                      "type": "string"
                    },
                    "creator_portal_customer_id": {
                      "description": "The creator portal customer id value.",
                      "nullable": true,
                      "type": "integer"
                    },
                    "creator_portal_customer_name": {
                      "description": "The creator portal customer name value.",
                      "type": "string"
                    },
                    "custom_field_values": {
                      "additionalProperties": {
                        "description": "Arbitrary JSON extension value."
                      },
                      "description": "The custom field values value.",
                      "type": "object"
                    },
                    "description": {
                      "description": "The description value.",
                      "type": "string"
                    },
                    "description_html": {
                      "description": "The description html value.",
                      "type": "string"
                    },
                    "due_date": {
                      "description": "The due date value.",
                      "format": "date-time",
                      "nullable": true,
                      "type": "string"
                    },
                    "effective_project_id": {
                      "description": "The effective project id value.",
                      "nullable": true,
                      "type": "integer"
                    },
                    "effective_project_name": {
                      "description": "The effective project name value.",
                      "type": "string"
                    },
                    "end_date": {
                      "description": "The end date value.",
                      "format": "date-time",
                      "nullable": true,
                      "type": "string"
                    },
                    "estimate_minutes": {
                      "description": "The estimate minutes value.",
                      "nullable": true,
                      "type": "integer"
                    },
                    "frac_index": {
                      "description": "The frac index value.",
                      "nullable": true,
                      "type": "string"
                    },
                    "id": {
                      "description": "The id value.",
                      "type": "integer"
                    },
                    "inherit_project": {
                      "description": "The inherit project value.",
                      "type": "boolean"
                    },
                    "is_task": {
                      "description": "Whether the item is a personal task. True is valid only in the authenticated caller's personal workspace and only with the Open or Done system status.",
                      "type": "boolean"
                    },
                    "item_type_builtin_key": {
                      "description": "The item type builtin key value.",
                      "type": "string"
                    },
                    "item_type_id": {
                      "description": "The item type id value.",
                      "nullable": true,
                      "type": "integer"
                    },
                    "item_type_name": {
                      "description": "The item type name value.",
                      "type": "string"
                    },
                    "iteration_end_date": {
                      "description": "The iteration end date value.",
                      "type": "string"
                    },
                    "iteration_id": {
                      "description": "The iteration id value.",
                      "nullable": true,
                      "type": "integer"
                    },
                    "iteration_name": {
                      "description": "The iteration name value.",
                      "type": "string"
                    },
                    "key": {
                      "description": "The key value.",
                      "type": "string"
                    },
                    "labels": {
                      "description": "The labels value.",
                      "items": {
                        "additionalProperties": false,
                        "properties": {
                          "color": {
                            "description": "The color value.",
                            "type": "string"
                          },
                          "created_at": {
                            "description": "The created at value.",
                            "format": "date-time",
                            "type": "string"
                          },
                          "id": {
                            "description": "The id value.",
                            "type": "integer"
                          },
                          "name": {
                            "description": "The name value.",
                            "type": "string"
                          },
                          "updated_at": {
                            "description": "The updated at value.",
                            "format": "date-time",
                            "type": "string"
                          }
                        },
                        "required": [
                          "color",
                          "created_at",
                          "id",
                          "name",
                          "updated_at"
                        ],
                        "type": "object"
                      },
                      "type": "array"
                    },
                    "last_active_at": {
                      "description": "The last active at value.",
                      "format": "date-time",
                      "type": "string"
                    },
                    "milestones": {
                      "description": "The milestones value.",
                      "items": {
                        "additionalProperties": false,
                        "properties": {
                          "category_color": {
                            "description": "The category color value.",
                            "type": "string"
                          },
                          "category_id": {
                            "description": "The category id value.",
                            "nullable": true,
                            "type": "integer"
                          },
                          "category_name": {
                            "description": "The category name value.",
                            "type": "string"
                          },
                          "created_at": {
                            "description": "The created at value.",
                            "format": "date-time",
                            "type": "string"
                          },
                          "description": {
                            "description": "The description value.",
                            "type": "string"
                          },
                          "external_key": {
                            "description": "The external key value.",
                            "nullable": true,
                            "type": "string"
                          },
                          "id": {
                            "description": "The id value.",
                            "type": "integer"
                          },
                          "is_global": {
                            "description": "The is global value.",
                            "type": "boolean"
                          },
                          "latest_release": {
                            "additionalProperties": false,
                            "description": "The latest release value.",
                            "nullable": true,
                            "properties": {
                              "body": {
                                "description": "The body value.",
                                "type": "string"
                              },
                              "created_at": {
                                "description": "The created at value.",
                                "type": "string"
                              },
                              "created_by": {
                                "description": "The created by value.",
                                "nullable": true,
                                "type": "integer"
                              },
                              "id": {
                                "description": "The id value.",
                                "type": "integer"
                              },
                              "is_draft": {
                                "description": "The is draft value.",
                                "type": "boolean"
                              },
                              "is_prerelease": {
                                "description": "The is prerelease value.",
                                "type": "boolean"
                              },
                              "milestone_id": {
                                "description": "The milestone id value.",
                                "type": "integer"
                              },
                              "name": {
                                "description": "The name value.",
                                "type": "string"
                              },
                              "scm_connection_id": {
                                "description": "The scm connection id value.",
                                "nullable": true,
                                "type": "integer"
                              },
                              "scm_release_id": {
                                "description": "The scm release id value.",
                                "nullable": true,
                                "type": "string"
                              },
                              "scm_release_url": {
                                "description": "The scm release url value.",
                                "nullable": true,
                                "type": "string"
                              },
                              "scm_repository": {
                                "description": "The scm repository value.",
                                "nullable": true,
                                "type": "string"
                              },
                              "tag_name": {
                                "description": "The tag name value.",
                                "type": "string"
                              },
                              "target_commitish": {
                                "description": "The target commitish value.",
                                "type": "string"
                              }
                            },
                            "required": [
                              "created_at",
                              "id",
                              "is_draft",
                              "is_prerelease",
                              "milestone_id",
                              "tag_name"
                            ],
                            "type": "object"
                          },
                          "name": {
                            "description": "The name value.",
                            "type": "string"
                          },
                          "position": {
                            "description": "The position value.",
                            "type": "integer"
                          },
                          "releases": {
                            "description": "The releases value.",
                            "items": {
                              "additionalProperties": false,
                              "properties": {
                                "body": {
                                  "description": "The body value.",
                                  "type": "string"
                                },
                                "created_at": {
                                  "description": "The created at value.",
                                  "type": "string"
                                },
                                "created_by": {
                                  "description": "The created by value.",
                                  "nullable": true,
                                  "type": "integer"
                                },
                                "id": {
                                  "description": "The id value.",
                                  "type": "integer"
                                },
                                "is_draft": {
                                  "description": "The is draft value.",
                                  "type": "boolean"
                                },
                                "is_prerelease": {
                                  "description": "The is prerelease value.",
                                  "type": "boolean"
                                },
                                "milestone_id": {
                                  "description": "The milestone id value.",
                                  "type": "integer"
                                },
                                "name": {
                                  "description": "The name value.",
                                  "type": "string"
                                },
                                "scm_connection_id": {
                                  "description": "The scm connection id value.",
                                  "nullable": true,
                                  "type": "integer"
                                },
                                "scm_release_id": {
                                  "description": "The scm release id value.",
                                  "nullable": true,
                                  "type": "string"
                                },
                                "scm_release_url": {
                                  "description": "The scm release url value.",
                                  "nullable": true,
                                  "type": "string"
                                },
                                "scm_repository": {
                                  "description": "The scm repository value.",
                                  "nullable": true,
                                  "type": "string"
                                },
                                "tag_name": {
                                  "description": "The tag name value.",
                                  "type": "string"
                                },
                                "target_commitish": {
                                  "description": "The target commitish value.",
                                  "type": "string"
                                }
                              },
                              "required": [
                                "created_at",
                                "id",
                                "is_draft",
                                "is_prerelease",
                                "milestone_id",
                                "tag_name"
                              ],
                              "type": "object"
                            },
                            "type": "array"
                          },
                          "status": {
                            "description": "The status value.",
                            "type": "string"
                          },
                          "target_date": {
                            "description": "The target date value.",
                            "nullable": true,
                            "type": "string"
                          },
                          "updated_at": {
                            "description": "The updated at value.",
                            "format": "date-time",
                            "type": "string"
                          },
                          "workspace_id": {
                            "description": "The workspace id value.",
                            "nullable": true,
                            "type": "integer"
                          },
                          "workspace_name": {
                            "description": "The workspace name value.",
                            "type": "string"
                          }
                        },
                        "required": [
                          "created_at",
                          "description",
                          "id",
                          "is_global",
                          "name",
                          "position",
                          "status",
                          "updated_at"
                        ],
                        "type": "object"
                      },
                      "type": "array"
                    },
                    "parent_id": {
                      "description": "The parent id value.",
                      "nullable": true,
                      "type": "integer"
                    },
                    "parent_key": {
                      "description": "The parent key value.",
                      "type": "string"
                    },
                    "parent_title": {
                      "description": "The parent title value.",
                      "type": "string"
                    },
                    "parent_workspace_item_number": {
                      "description": "The parent workspace item number value.",
                      "nullable": true,
                      "type": "integer"
                    },
                    "personal_labels": {
                      "description": "The personal labels value.",
                      "items": {
                        "additionalProperties": false,
                        "properties": {
                          "color": {
                            "description": "The color value.",
                            "type": "string"
                          },
                          "created_at": {
                            "description": "The created at value.",
                            "format": "date-time",
                            "type": "string"
                          },
                          "id": {
                            "description": "The id value.",
                            "type": "integer"
                          },
                          "name": {
                            "description": "The name value.",
                            "type": "string"
                          },
                          "updated_at": {
                            "description": "The updated at value.",
                            "format": "date-time",
                            "type": "string"
                          },
                          "user_id": {
                            "description": "The user id value.",
                            "nullable": true,
                            "type": "integer"
                          }
                        },
                        "required": [
                          "color",
                          "created_at",
                          "id",
                          "name",
                          "updated_at"
                        ],
                        "type": "object"
                      },
                      "type": "array"
                    },
                    "priority_builtin_key": {
                      "description": "The priority builtin key value.",
                      "type": "string"
                    },
                    "priority_color": {
                      "description": "The priority color value.",
                      "type": "string"
                    },
                    "priority_icon": {
                      "description": "The priority icon value.",
                      "type": "string"
                    },
                    "priority_id": {
                      "description": "The priority id value.",
                      "nullable": true,
                      "type": "integer"
                    },
                    "priority_name": {
                      "description": "The priority name value.",
                      "type": "string"
                    },
                    "project_id": {
                      "description": "The project id value.",
                      "nullable": true,
                      "type": "integer"
                    },
                    "project_inheritance_mode": {
                      "description": "The project inheritance mode value.",
                      "type": "string"
                    },
                    "project_name": {
                      "description": "The project name value.",
                      "type": "string"
                    },
                    "related_work_item_id": {
                      "description": "The related work item id value.",
                      "nullable": true,
                      "type": "integer"
                    },
                    "related_work_item_number": {
                      "description": "The related work item number value.",
                      "type": "integer"
                    },
                    "related_work_item_title": {
                      "description": "The related work item title value.",
                      "type": "string"
                    },
                    "related_work_item_workspace_id": {
                      "description": "The related work item workspace id value.",
                      "type": "integer"
                    },
                    "related_work_item_workspace_key": {
                      "description": "The related work item workspace key value.",
                      "type": "string"
                    },
                    "reporter_avatar": {
                      "description": "The reporter avatar value.",
                      "type": "string"
                    },
                    "reporter_email": {
                      "description": "The reporter email value.",
                      "type": "string"
                    },
                    "reporter_id": {
                      "description": "The reporter id value.",
                      "nullable": true,
                      "type": "integer"
                    },
                    "reporter_name": {
                      "description": "The reporter name value.",
                      "type": "string"
                    },
                    "request_type_id": {
                      "description": "The request type id value.",
                      "nullable": true,
                      "type": "integer"
                    },
                    "request_type_name": {
                      "description": "The request type name value.",
                      "type": "string"
                    },
                    "start_date": {
                      "description": "The start date value.",
                      "format": "date-time",
                      "nullable": true,
                      "type": "string"
                    },
                    "status_builtin_key": {
                      "description": "The status builtin key value.",
                      "type": "string"
                    },
                    "status_color": {
                      "description": "The status color value.",
                      "type": "string"
                    },
                    "status_id": {
                      "description": "The status id value.",
                      "nullable": true,
                      "type": "integer"
                    },
                    "status_name": {
                      "description": "The status name value.",
                      "type": "string"
                    },
                    "status_since": {
                      "description": "The status since value.",
                      "format": "date-time",
                      "nullable": true,
                      "type": "string"
                    },
                    "story_points": {
                      "description": "The story points value.",
                      "nullable": true,
                      "type": "number"
                    },
                    "time_project_id": {
                      "description": "The time project id value.",
                      "nullable": true,
                      "type": "integer"
                    },
                    "time_project_name": {
                      "description": "The time project name value.",
                      "type": "string"
                    },
                    "title": {
                      "description": "The title value.",
                      "type": "string"
                    },
                    "updated_at": {
                      "description": "The updated at value.",
                      "format": "date-time",
                      "type": "string"
                    },
                    "virtual_field_data": {
                      "additionalProperties": {
                        "description": "Arbitrary JSON extension value."
                      },
                      "description": "The virtual field data value.",
                      "type": "object"
                    },
                    "workspace_id": {
                      "description": "The workspace id value.",
                      "type": "integer"
                    },
                    "workspace_item_number": {
                      "description": "The workspace item number value.",
                      "type": "integer"
                    },
                    "workspace_key": {
                      "description": "The workspace key value.",
                      "type": "string"
                    },
                    "workspace_name": {
                      "description": "The workspace name value.",
                      "type": "string"
                    }
                  },
                  "required": [
                    "created_at",
                    "description",
                    "id",
                    "inherit_project",
                    "is_task",
                    "last_active_at",
                    "title",
                    "updated_at",
                    "workspace_id",
                    "workspace_item_number"
                  ],
                  "type": "object"
                },
                "type": "array"
              },
              "iteration_id": {
                "description": "The iteration id value.",
                "type": "integer"
              },
              "moved_count": {
                "description": "The moved count value.",
                "type": "integer"
              },
              "sql_statements": {
                "description": "The sql statements value.",
                "type": "integer"
              },
              "status": {
                "description": "The status value.",
                "type": "string"
              },
              "target_iteration_id": {
                "description": "The target iteration id value.",
                "nullable": true,
                "type": "integer"
              }
            },
            "required": [
              "already_completed",
              "duration_ms",
              "items",
              "iteration_id",
              "moved_count",
              "sql_statements",
              "status"
            ],
            "type": "object"
          }
        },
        "required": [
          "data"
        ],
        "type": "object"
      },
      "PostIterationsPayload": {
        "additionalProperties": false,
        "properties": {
          "description": {
            "description": "The description value.",
            "type": "string"
          },
          "end_date": {
            "description": "The end date value.",
            "type": "string"
          },
          "name": {
            "description": "The name value.",
            "type": "string"
          },
          "start_date": {
            "description": "The start date value.",
            "type": "string"
          },
          "status": {
            "description": "The status value.",
            "type": "string"
          },
          "type_id": {
            "description": "The type id value.",
            "nullable": true,
            "type": "integer"
          }
        },
        "required": [
          "description",
          "end_date",
          "name",
          "start_date",
          "status"
        ],
        "type": "object"
      },
      "PostIterationsProgressPayload": {
        "additionalProperties": false,
        "properties": {
          "ids": {
            "description": "Resource IDs in preferred response order. At most 500 IDs are accepted; duplicates use their first occurrence and missing or invisible resources are omitted.",
            "items": {
              "type": "integer"
            },
            "type": "array"
          }
        },
        "required": [
          "ids"
        ],
        "type": "object"
      },
      "PostIterationsProgressResult": {
        "additionalProperties": false,
        "properties": {
          "data": {
            "items": {
              "additionalProperties": false,
              "properties": {
                "iteration_id": {
                  "description": "The iteration id value.",
                  "type": "integer"
                },
                "progress": {
                  "additionalProperties": false,
                  "description": "The progress value.",
                  "nullable": true,
                  "properties": {
                    "completed_items": {
                      "description": "The completed items value.",
                      "type": "integer"
                    },
                    "description": {
                      "description": "The description value.",
                      "type": "string"
                    },
                    "end_date": {
                      "description": "The end date value.",
                      "type": "string"
                    },
                    "items_by_category": {
                      "additionalProperties": {
                        "items": {
                          "additionalProperties": false,
                          "properties": {
                            "assignee_avatar": {
                              "description": "The assignee avatar value.",
                              "type": "string"
                            },
                            "assignee_name": {
                              "description": "The assignee name value.",
                              "type": "string"
                            },
                            "id": {
                              "description": "The id value.",
                              "type": "integer"
                            },
                            "item_number": {
                              "description": "The item number value.",
                              "type": "integer"
                            },
                            "priority_builtin_key": {
                              "description": "The priority builtin key value.",
                              "type": "string"
                            },
                            "priority_color": {
                              "description": "The priority color value.",
                              "type": "string"
                            },
                            "priority_name": {
                              "description": "The priority name value.",
                              "type": "string"
                            },
                            "status_builtin_key": {
                              "description": "The status builtin key value.",
                              "type": "string"
                            },
                            "status_color": {
                              "description": "The status color value.",
                              "type": "string"
                            },
                            "status_name": {
                              "description": "The status name value.",
                              "type": "string"
                            },
                            "title": {
                              "description": "The title value.",
                              "type": "string"
                            },
                            "workspace_id": {
                              "description": "The workspace id value.",
                              "type": "integer"
                            },
                            "workspace_key": {
                              "description": "The workspace key value.",
                              "type": "string"
                            }
                          },
                          "required": [
                            "id",
                            "item_number",
                            "title",
                            "workspace_id",
                            "workspace_key"
                          ],
                          "type": "object"
                        },
                        "type": "array"
                      },
                      "description": "The items by category value.",
                      "type": "object"
                    },
                    "iteration_id": {
                      "description": "The iteration id value.",
                      "type": "integer"
                    },
                    "iteration_name": {
                      "description": "The iteration name value.",
                      "type": "string"
                    },
                    "percent_complete": {
                      "description": "The percent complete value.",
                      "type": "number"
                    },
                    "start_date": {
                      "description": "The start date value.",
                      "type": "string"
                    },
                    "status": {
                      "description": "The status value.",
                      "type": "string"
                    },
                    "status_breakdown": {
                      "description": "The status breakdown value.",
                      "items": {
                        "additionalProperties": false,
                        "properties": {
                          "category_builtin_key": {
                            "description": "The category builtin key value.",
                            "type": "string"
                          },
                          "category_color": {
                            "description": "The category color value.",
                            "type": "string"
                          },
                          "category_name": {
                            "description": "The category name value.",
                            "type": "string"
                          },
                          "is_completed": {
                            "description": "The is completed value.",
                            "type": "boolean"
                          },
                          "item_count": {
                            "description": "The item count value.",
                            "type": "integer"
                          }
                        },
                        "required": [
                          "category_name",
                          "is_completed",
                          "item_count"
                        ],
                        "type": "object"
                      },
                      "type": "array"
                    },
                    "total_items": {
                      "description": "The total items value.",
                      "type": "integer"
                    },
                    "type_color": {
                      "description": "The type color value.",
                      "type": "string"
                    }
                  },
                  "required": [
                    "completed_items",
                    "end_date",
                    "items_by_category",
                    "iteration_id",
                    "iteration_name",
                    "percent_complete",
                    "start_date",
                    "status",
                    "status_breakdown",
                    "total_items"
                  ],
                  "type": "object"
                }
              },
              "required": [
                "iteration_id"
              ],
              "type": "object"
            },
            "type": "array"
          }
        },
        "required": [
          "data"
        ],
        "type": "object"
      },
      "PostIterationsResult": {
        "additionalProperties": false,
        "properties": {
          "data": {
            "additionalProperties": false,
            "properties": {
              "created_at": {
                "description": "The created at value.",
                "format": "date-time",
                "type": "string"
              },
              "description": {
                "description": "The description value.",
                "type": "string"
              },
              "end_date": {
                "description": "The end date value.",
                "type": "string"
              },
              "id": {
                "description": "The id value.",
                "type": "integer"
              },
              "is_global": {
                "description": "The is global value.",
                "type": "boolean"
              },
              "name": {
                "description": "The name value.",
                "type": "string"
              },
              "start_date": {
                "description": "The start date value.",
                "type": "string"
              },
              "status": {
                "description": "The status value.",
                "type": "string"
              },
              "type_color": {
                "description": "The type color value.",
                "type": "string"
              },
              "type_id": {
                "description": "The type id value.",
                "nullable": true,
                "type": "integer"
              },
              "type_name": {
                "description": "The type name value.",
                "type": "string"
              },
              "updated_at": {
                "description": "The updated at value.",
                "format": "date-time",
                "type": "string"
              },
              "workspace_id": {
                "description": "The workspace id value.",
                "nullable": true,
                "type": "integer"
              },
              "workspace_name": {
                "description": "The workspace name value.",
                "type": "string"
              }
            },
            "required": [
              "created_at",
              "description",
              "end_date",
              "id",
              "is_global",
              "name",
              "start_date",
              "status",
              "updated_at"
            ],
            "type": "object"
          }
        },
        "required": [
          "data"
        ],
        "type": "object"
      },
      "PostLinkTypesPayload": {
        "additionalProperties": false,
        "properties": {
          "active": {
            "description": "The active value.",
            "type": "boolean"
          },
          "allowed_entity_types": {
            "description": "The allowed entity types value.",
            "items": {
              "type": "string"
            },
            "type": "array"
          },
          "builtin_key": {
            "description": "The builtin key value.",
            "type": "string"
          },
          "color": {
            "description": "The color value.",
            "type": "string"
          },
          "created_at": {
            "description": "The created at value.",
            "format": "date-time",
            "type": "string"
          },
          "description": {
            "description": "The description value.",
            "type": "string"
          },
          "display_description": {
            "description": "The display description value.",
            "type": "string"
          },
          "display_name": {
            "description": "The display name value.",
            "type": "string"
          },
          "forward_label": {
            "description": "The forward label value.",
            "type": "string"
          },
          "id": {
            "description": "The id value.",
            "type": "integer"
          },
          "is_system": {
            "description": "The is system value.",
            "type": "boolean"
          },
          "name": {
            "description": "The name value.",
            "type": "string"
          },
          "reverse_label": {
            "description": "The reverse label value.",
            "type": "string"
          },
          "updated_at": {
            "description": "The updated at value.",
            "format": "date-time",
            "type": "string"
          }
        },
        "required": [
          "active",
          "allowed_entity_types",
          "color",
          "created_at",
          "description",
          "display_name",
          "forward_label",
          "id",
          "is_system",
          "name",
          "reverse_label",
          "updated_at"
        ],
        "type": "object"
      },
      "PostLinkTypesResult": {
        "additionalProperties": false,
        "properties": {
          "data": {
            "additionalProperties": false,
            "properties": {
              "active": {
                "description": "The active value.",
                "type": "boolean"
              },
              "allowed_entity_types": {
                "description": "The allowed entity types value.",
                "items": {
                  "type": "string"
                },
                "type": "array"
              },
              "builtin_key": {
                "description": "The builtin key value.",
                "type": "string"
              },
              "color": {
                "description": "The color value.",
                "type": "string"
              },
              "created_at": {
                "description": "The created at value.",
                "format": "date-time",
                "type": "string"
              },
              "description": {
                "description": "The description value.",
                "type": "string"
              },
              "display_description": {
                "description": "The display description value.",
                "type": "string"
              },
              "display_name": {
                "description": "The display name value.",
                "type": "string"
              },
              "forward_label": {
                "description": "The forward label value.",
                "type": "string"
              },
              "id": {
                "description": "The id value.",
                "type": "integer"
              },
              "is_system": {
                "description": "The is system value.",
                "type": "boolean"
              },
              "name": {
                "description": "The name value.",
                "type": "string"
              },
              "reverse_label": {
                "description": "The reverse label value.",
                "type": "string"
              },
              "updated_at": {
                "description": "The updated at value.",
                "format": "date-time",
                "type": "string"
              }
            },
            "required": [
              "active",
              "allowed_entity_types",
              "color",
              "created_at",
              "description",
              "display_name",
              "forward_label",
              "id",
              "is_system",
              "name",
              "reverse_label",
              "updated_at"
            ],
            "type": "object"
          }
        },
        "required": [
          "data"
        ],
        "type": "object"
      },
      "PostLinksPayload": {
        "additionalProperties": false,
        "properties": {
          "created_at": {
            "description": "The created at value.",
            "format": "date-time",
            "type": "string"
          },
          "created_by": {
            "description": "The created by value.",
            "nullable": true,
            "type": "integer"
          },
          "created_by_name": {
            "description": "The created by name value.",
            "type": "string"
          },
          "custom_field_id": {
            "description": "The custom field id value.",
            "nullable": true,
            "type": "integer"
          },
          "custom_field_name": {
            "description": "The custom field name value.",
            "type": "string"
          },
          "id": {
            "description": "The id value.",
            "type": "integer"
          },
          "link_type_color": {
            "description": "The link type color value.",
            "type": "string"
          },
          "link_type_forward_label": {
            "description": "The link type forward label value.",
            "type": "string"
          },
          "link_type_id": {
            "description": "The link type id value.",
            "type": "integer"
          },
          "link_type_name": {
            "description": "The link type name value.",
            "type": "string"
          },
          "link_type_reverse_label": {
            "description": "The link type reverse label value.",
            "type": "string"
          },
          "source_id": {
            "description": "The source id value.",
            "type": "integer"
          },
          "source_item_number": {
            "description": "The source item number value.",
            "nullable": true,
            "type": "integer"
          },
          "source_item_type_color": {
            "description": "The source item type color value.",
            "type": "string"
          },
          "source_item_type_icon": {
            "description": "The source item type icon value.",
            "type": "string"
          },
          "source_item_type_id": {
            "description": "The source item type id value.",
            "nullable": true,
            "type": "integer"
          },
          "source_item_type_name": {
            "description": "The source item type name value.",
            "type": "string"
          },
          "source_status_color": {
            "description": "The source status color value.",
            "type": "string"
          },
          "source_status_id": {
            "description": "The source status id value.",
            "nullable": true,
            "type": "integer"
          },
          "source_status_name": {
            "description": "The source status name value.",
            "type": "string"
          },
          "source_title": {
            "description": "The source title value.",
            "type": "string"
          },
          "source_type": {
            "description": "The source type value.",
            "type": "string"
          },
          "source_workspace_id": {
            "description": "The source workspace id value.",
            "nullable": true,
            "type": "integer"
          },
          "source_workspace_key": {
            "description": "The source workspace key value.",
            "type": "string"
          },
          "target_id": {
            "description": "The target id value.",
            "type": "integer"
          },
          "target_item_number": {
            "description": "The target item number value.",
            "nullable": true,
            "type": "integer"
          },
          "target_item_type_color": {
            "description": "The target item type color value.",
            "type": "string"
          },
          "target_item_type_icon": {
            "description": "The target item type icon value.",
            "type": "string"
          },
          "target_item_type_id": {
            "description": "The target item type id value.",
            "nullable": true,
            "type": "integer"
          },
          "target_item_type_name": {
            "description": "The target item type name value.",
            "type": "string"
          },
          "target_status_color": {
            "description": "The target status color value.",
            "type": "string"
          },
          "target_status_id": {
            "description": "The target status id value.",
            "nullable": true,
            "type": "integer"
          },
          "target_status_name": {
            "description": "The target status name value.",
            "type": "string"
          },
          "target_title": {
            "description": "The target title value.",
            "type": "string"
          },
          "target_type": {
            "description": "The target type value.",
            "type": "string"
          },
          "target_workspace_id": {
            "description": "The target workspace id value.",
            "nullable": true,
            "type": "integer"
          },
          "target_workspace_key": {
            "description": "The target workspace key value.",
            "type": "string"
          }
        },
        "required": [
          "created_at",
          "id",
          "link_type_id",
          "source_id",
          "source_type",
          "target_id",
          "target_type"
        ],
        "type": "object"
      },
      "PostLinksResult": {
        "additionalProperties": false,
        "properties": {
          "data": {
            "additionalProperties": false,
            "properties": {
              "created_at": {
                "description": "The created at value.",
                "format": "date-time",
                "type": "string"
              },
              "created_by": {
                "description": "The created by value.",
                "nullable": true,
                "type": "integer"
              },
              "created_by_name": {
                "description": "The created by name value.",
                "type": "string"
              },
              "custom_field_id": {
                "description": "The custom field id value.",
                "nullable": true,
                "type": "integer"
              },
              "custom_field_name": {
                "description": "The custom field name value.",
                "type": "string"
              },
              "id": {
                "description": "The id value.",
                "type": "integer"
              },
              "link_type_color": {
                "description": "The link type color value.",
                "type": "string"
              },
              "link_type_forward_label": {
                "description": "The link type forward label value.",
                "type": "string"
              },
              "link_type_id": {
                "description": "The link type id value.",
                "type": "integer"
              },
              "link_type_name": {
                "description": "The link type name value.",
                "type": "string"
              },
              "link_type_reverse_label": {
                "description": "The link type reverse label value.",
                "type": "string"
              },
              "source_id": {
                "description": "The source id value.",
                "type": "integer"
              },
              "source_item_number": {
                "description": "The source item number value.",
                "nullable": true,
                "type": "integer"
              },
              "source_item_type_color": {
                "description": "The source item type color value.",
                "type": "string"
              },
              "source_item_type_icon": {
                "description": "The source item type icon value.",
                "type": "string"
              },
              "source_item_type_id": {
                "description": "The source item type id value.",
                "nullable": true,
                "type": "integer"
              },
              "source_item_type_name": {
                "description": "The source item type name value.",
                "type": "string"
              },
              "source_status_color": {
                "description": "The source status color value.",
                "type": "string"
              },
              "source_status_id": {
                "description": "The source status id value.",
                "nullable": true,
                "type": "integer"
              },
              "source_status_name": {
                "description": "The source status name value.",
                "type": "string"
              },
              "source_title": {
                "description": "The source title value.",
                "type": "string"
              },
              "source_type": {
                "description": "The source type value.",
                "type": "string"
              },
              "source_workspace_id": {
                "description": "The source workspace id value.",
                "nullable": true,
                "type": "integer"
              },
              "source_workspace_key": {
                "description": "The source workspace key value.",
                "type": "string"
              },
              "target_id": {
                "description": "The target id value.",
                "type": "integer"
              },
              "target_item_number": {
                "description": "The target item number value.",
                "nullable": true,
                "type": "integer"
              },
              "target_item_type_color": {
                "description": "The target item type color value.",
                "type": "string"
              },
              "target_item_type_icon": {
                "description": "The target item type icon value.",
                "type": "string"
              },
              "target_item_type_id": {
                "description": "The target item type id value.",
                "nullable": true,
                "type": "integer"
              },
              "target_item_type_name": {
                "description": "The target item type name value.",
                "type": "string"
              },
              "target_status_color": {
                "description": "The target status color value.",
                "type": "string"
              },
              "target_status_id": {
                "description": "The target status id value.",
                "nullable": true,
                "type": "integer"
              },
              "target_status_name": {
                "description": "The target status name value.",
                "type": "string"
              },
              "target_title": {
                "description": "The target title value.",
                "type": "string"
              },
              "target_type": {
                "description": "The target type value.",
                "type": "string"
              },
              "target_workspace_id": {
                "description": "The target workspace id value.",
                "nullable": true,
                "type": "integer"
              },
              "target_workspace_key": {
                "description": "The target workspace key value.",
                "type": "string"
              }
            },
            "required": [
              "created_at",
              "id",
              "link_type_id",
              "source_id",
              "source_type",
              "target_id",
              "target_type"
            ],
            "type": "object"
          }
        },
        "required": [
          "data"
        ],
        "type": "object"
      },
      "PostMilestonesMilestoneIdReleasePayload": {
        "additionalProperties": false,
        "properties": {
          "body": {
            "description": "The body value.",
            "type": "string"
          },
          "connection_id": {
            "description": "The connection id value.",
            "type": "integer"
          },
          "is_draft": {
            "description": "The is draft value.",
            "type": "boolean"
          },
          "is_prerelease": {
            "description": "The is prerelease value.",
            "type": "boolean"
          },
          "name": {
            "description": "The name value.",
            "type": "string"
          },
          "repository": {
            "description": "The repository value.",
            "type": "string"
          },
          "repository_id": {
            "description": "The repository id value.",
            "type": "integer"
          },
          "tag_name": {
            "description": "The tag name value.",
            "type": "string"
          },
          "target_commitish": {
            "description": "The target commitish value.",
            "type": "string"
          }
        },
        "required": [
          "body",
          "connection_id",
          "is_draft",
          "is_prerelease",
          "name",
          "repository",
          "repository_id",
          "tag_name",
          "target_commitish"
        ],
        "type": "object"
      },
      "PostMilestonesMilestoneIdReleaseResult": {
        "additionalProperties": false,
        "properties": {
          "data": {
            "additionalProperties": false,
            "properties": {
              "category_color": {
                "description": "The category color value.",
                "type": "string"
              },
              "category_id": {
                "description": "The category id value.",
                "nullable": true,
                "type": "integer"
              },
              "category_name": {
                "description": "The category name value.",
                "type": "string"
              },
              "created_at": {
                "description": "The created at value.",
                "format": "date-time",
                "type": "string"
              },
              "description": {
                "description": "The description value.",
                "type": "string"
              },
              "external_key": {
                "description": "The external key value.",
                "nullable": true,
                "type": "string"
              },
              "id": {
                "description": "The id value.",
                "type": "integer"
              },
              "is_global": {
                "description": "The is global value.",
                "type": "boolean"
              },
              "latest_release": {
                "additionalProperties": false,
                "description": "The latest release value.",
                "nullable": true,
                "properties": {
                  "body": {
                    "description": "The body value.",
                    "type": "string"
                  },
                  "created_at": {
                    "description": "The created at value.",
                    "type": "string"
                  },
                  "created_by": {
                    "description": "The created by value.",
                    "nullable": true,
                    "type": "integer"
                  },
                  "id": {
                    "description": "The id value.",
                    "type": "integer"
                  },
                  "is_draft": {
                    "description": "The is draft value.",
                    "type": "boolean"
                  },
                  "is_prerelease": {
                    "description": "The is prerelease value.",
                    "type": "boolean"
                  },
                  "milestone_id": {
                    "description": "The milestone id value.",
                    "type": "integer"
                  },
                  "name": {
                    "description": "The name value.",
                    "type": "string"
                  },
                  "scm_connection_id": {
                    "description": "The scm connection id value.",
                    "nullable": true,
                    "type": "integer"
                  },
                  "scm_release_id": {
                    "description": "The scm release id value.",
                    "nullable": true,
                    "type": "string"
                  },
                  "scm_release_url": {
                    "description": "The scm release url value.",
                    "nullable": true,
                    "type": "string"
                  },
                  "scm_repository": {
                    "description": "The scm repository value.",
                    "nullable": true,
                    "type": "string"
                  },
                  "tag_name": {
                    "description": "The tag name value.",
                    "type": "string"
                  },
                  "target_commitish": {
                    "description": "The target commitish value.",
                    "type": "string"
                  }
                },
                "required": [
                  "created_at",
                  "id",
                  "is_draft",
                  "is_prerelease",
                  "milestone_id",
                  "tag_name"
                ],
                "type": "object"
              },
              "name": {
                "description": "The name value.",
                "type": "string"
              },
              "position": {
                "description": "The position value.",
                "type": "integer"
              },
              "releases": {
                "description": "The releases value.",
                "items": {
                  "additionalProperties": false,
                  "properties": {
                    "body": {
                      "description": "The body value.",
                      "type": "string"
                    },
                    "created_at": {
                      "description": "The created at value.",
                      "type": "string"
                    },
                    "created_by": {
                      "description": "The created by value.",
                      "nullable": true,
                      "type": "integer"
                    },
                    "id": {
                      "description": "The id value.",
                      "type": "integer"
                    },
                    "is_draft": {
                      "description": "The is draft value.",
                      "type": "boolean"
                    },
                    "is_prerelease": {
                      "description": "The is prerelease value.",
                      "type": "boolean"
                    },
                    "milestone_id": {
                      "description": "The milestone id value.",
                      "type": "integer"
                    },
                    "name": {
                      "description": "The name value.",
                      "type": "string"
                    },
                    "scm_connection_id": {
                      "description": "The scm connection id value.",
                      "nullable": true,
                      "type": "integer"
                    },
                    "scm_release_id": {
                      "description": "The scm release id value.",
                      "nullable": true,
                      "type": "string"
                    },
                    "scm_release_url": {
                      "description": "The scm release url value.",
                      "nullable": true,
                      "type": "string"
                    },
                    "scm_repository": {
                      "description": "The scm repository value.",
                      "nullable": true,
                      "type": "string"
                    },
                    "tag_name": {
                      "description": "The tag name value.",
                      "type": "string"
                    },
                    "target_commitish": {
                      "description": "The target commitish value.",
                      "type": "string"
                    }
                  },
                  "required": [
                    "created_at",
                    "id",
                    "is_draft",
                    "is_prerelease",
                    "milestone_id",
                    "tag_name"
                  ],
                  "type": "object"
                },
                "type": "array"
              },
              "status": {
                "description": "The status value.",
                "type": "string"
              },
              "target_date": {
                "description": "The target date value.",
                "nullable": true,
                "type": "string"
              },
              "updated_at": {
                "description": "The updated at value.",
                "format": "date-time",
                "type": "string"
              },
              "workspace_id": {
                "description": "The workspace id value.",
                "nullable": true,
                "type": "integer"
              },
              "workspace_name": {
                "description": "The workspace name value.",
                "type": "string"
              }
            },
            "required": [
              "created_at",
              "description",
              "id",
              "is_global",
              "name",
              "position",
              "status",
              "updated_at"
            ],
            "type": "object"
          }
        },
        "required": [
          "data"
        ],
        "type": "object"
      },
      "PostMilestonesPayload": {
        "additionalProperties": false,
        "properties": {
          "category_id": {
            "description": "The category id value.",
            "nullable": true,
            "type": "integer"
          },
          "description": {
            "description": "The description value.",
            "type": "string"
          },
          "name": {
            "description": "The name value.",
            "type": "string"
          },
          "status": {
            "description": "The status value.",
            "type": "string"
          },
          "target_date": {
            "description": "The target date value.",
            "nullable": true,
            "type": "string"
          }
        },
        "required": [
          "description",
          "name",
          "status"
        ],
        "type": "object"
      },
      "PostMilestonesReorderPayload": {
        "additionalProperties": false,
        "properties": {
          "category_id": {
            "description": "The category id value.",
            "nullable": true,
            "type": "integer"
          },
          "ordered_ids": {
            "description": "The ordered ids value.",
            "items": {
              "type": "integer"
            },
            "type": "array"
          }
        },
        "required": [
          "ordered_ids"
        ],
        "type": "object"
      },
      "PostMilestonesReorderResult": {
        "additionalProperties": false,
        "properties": {
          "data": {
            "additionalProperties": false,
            "properties": {
              "reordered": {
                "description": "The reordered value.",
                "type": "boolean"
              }
            },
            "required": [
              "reordered"
            ],
            "type": "object"
          }
        },
        "required": [
          "data"
        ],
        "type": "object"
      },
      "PostMilestonesResult": {
        "additionalProperties": false,
        "properties": {
          "data": {
            "additionalProperties": false,
            "properties": {
              "category_color": {
                "description": "The category color value.",
                "type": "string"
              },
              "category_id": {
                "description": "The category id value.",
                "nullable": true,
                "type": "integer"
              },
              "category_name": {
                "description": "The category name value.",
                "type": "string"
              },
              "created_at": {
                "description": "The created at value.",
                "format": "date-time",
                "type": "string"
              },
              "description": {
                "description": "The description value.",
                "type": "string"
              },
              "external_key": {
                "description": "The external key value.",
                "nullable": true,
                "type": "string"
              },
              "id": {
                "description": "The id value.",
                "type": "integer"
              },
              "is_global": {
                "description": "The is global value.",
                "type": "boolean"
              },
              "latest_release": {
                "additionalProperties": false,
                "description": "The latest release value.",
                "nullable": true,
                "properties": {
                  "body": {
                    "description": "The body value.",
                    "type": "string"
                  },
                  "created_at": {
                    "description": "The created at value.",
                    "type": "string"
                  },
                  "created_by": {
                    "description": "The created by value.",
                    "nullable": true,
                    "type": "integer"
                  },
                  "id": {
                    "description": "The id value.",
                    "type": "integer"
                  },
                  "is_draft": {
                    "description": "The is draft value.",
                    "type": "boolean"
                  },
                  "is_prerelease": {
                    "description": "The is prerelease value.",
                    "type": "boolean"
                  },
                  "milestone_id": {
                    "description": "The milestone id value.",
                    "type": "integer"
                  },
                  "name": {
                    "description": "The name value.",
                    "type": "string"
                  },
                  "scm_connection_id": {
                    "description": "The scm connection id value.",
                    "nullable": true,
                    "type": "integer"
                  },
                  "scm_release_id": {
                    "description": "The scm release id value.",
                    "nullable": true,
                    "type": "string"
                  },
                  "scm_release_url": {
                    "description": "The scm release url value.",
                    "nullable": true,
                    "type": "string"
                  },
                  "scm_repository": {
                    "description": "The scm repository value.",
                    "nullable": true,
                    "type": "string"
                  },
                  "tag_name": {
                    "description": "The tag name value.",
                    "type": "string"
                  },
                  "target_commitish": {
                    "description": "The target commitish value.",
                    "type": "string"
                  }
                },
                "required": [
                  "created_at",
                  "id",
                  "is_draft",
                  "is_prerelease",
                  "milestone_id",
                  "tag_name"
                ],
                "type": "object"
              },
              "name": {
                "description": "The name value.",
                "type": "string"
              },
              "position": {
                "description": "The position value.",
                "type": "integer"
              },
              "releases": {
                "description": "The releases value.",
                "items": {
                  "additionalProperties": false,
                  "properties": {
                    "body": {
                      "description": "The body value.",
                      "type": "string"
                    },
                    "created_at": {
                      "description": "The created at value.",
                      "type": "string"
                    },
                    "created_by": {
                      "description": "The created by value.",
                      "nullable": true,
                      "type": "integer"
                    },
                    "id": {
                      "description": "The id value.",
                      "type": "integer"
                    },
                    "is_draft": {
                      "description": "The is draft value.",
                      "type": "boolean"
                    },
                    "is_prerelease": {
                      "description": "The is prerelease value.",
                      "type": "boolean"
                    },
                    "milestone_id": {
                      "description": "The milestone id value.",
                      "type": "integer"
                    },
                    "name": {
                      "description": "The name value.",
                      "type": "string"
                    },
                    "scm_connection_id": {
                      "description": "The scm connection id value.",
                      "nullable": true,
                      "type": "integer"
                    },
                    "scm_release_id": {
                      "description": "The scm release id value.",
                      "nullable": true,
                      "type": "string"
                    },
                    "scm_release_url": {
                      "description": "The scm release url value.",
                      "nullable": true,
                      "type": "string"
                    },
                    "scm_repository": {
                      "description": "The scm repository value.",
                      "nullable": true,
                      "type": "string"
                    },
                    "tag_name": {
                      "description": "The tag name value.",
                      "type": "string"
                    },
                    "target_commitish": {
                      "description": "The target commitish value.",
                      "type": "string"
                    }
                  },
                  "required": [
                    "created_at",
                    "id",
                    "is_draft",
                    "is_prerelease",
                    "milestone_id",
                    "tag_name"
                  ],
                  "type": "object"
                },
                "type": "array"
              },
              "status": {
                "description": "The status value.",
                "type": "string"
              },
              "target_date": {
                "description": "The target date value.",
                "nullable": true,
                "type": "string"
              },
              "updated_at": {
                "description": "The updated at value.",
                "format": "date-time",
                "type": "string"
              },
              "workspace_id": {
                "description": "The workspace id value.",
                "nullable": true,
                "type": "integer"
              },
              "workspace_name": {
                "description": "The workspace name value.",
                "type": "string"
              }
            },
            "required": [
              "created_at",
              "description",
              "id",
              "is_global",
              "name",
              "position",
              "status",
              "updated_at"
            ],
            "type": "object"
          }
        },
        "required": [
          "data"
        ],
        "type": "object"
      },
      "PostMilestonesTestStatisticsPayload": {
        "additionalProperties": false,
        "properties": {
          "ids": {
            "description": "Resource IDs in preferred response order. At most 500 IDs are accepted; duplicates use their first occurrence and missing or invisible resources are omitted.",
            "items": {
              "type": "integer"
            },
            "type": "array"
          }
        },
        "required": [
          "ids"
        ],
        "type": "object"
      },
      "PostMilestonesTestStatisticsResult": {
        "additionalProperties": false,
        "properties": {
          "data": {
            "items": {
              "additionalProperties": false,
              "properties": {
                "milestone_id": {
                  "description": "The milestone id value.",
                  "type": "integer"
                },
                "statistics": {
                  "additionalProperties": false,
                  "description": "The statistics value.",
                  "nullable": true,
                  "properties": {
                    "failed_test_runs": {
                      "description": "The failed test runs value.",
                      "type": "integer"
                    },
                    "in_progress_test_runs": {
                      "description": "The in progress test runs value.",
                      "type": "integer"
                    },
                    "successful_test_runs": {
                      "description": "The successful test runs value.",
                      "type": "integer"
                    },
                    "total_test_cases": {
                      "description": "The total test cases value.",
                      "type": "integer"
                    },
                    "total_test_plans": {
                      "description": "The total test plans value.",
                      "type": "integer"
                    },
                    "total_test_runs": {
                      "description": "The total test runs value.",
                      "type": "integer"
                    }
                  },
                  "required": [
                    "failed_test_runs",
                    "in_progress_test_runs",
                    "successful_test_runs",
                    "total_test_cases",
                    "total_test_plans",
                    "total_test_runs"
                  ],
                  "type": "object"
                }
              },
              "required": [
                "milestone_id"
              ],
              "type": "object"
            },
            "type": "array"
          }
        },
        "required": [
          "data"
        ],
        "type": "object"
      },
      "PostPrioritiesPayload": {
        "additionalProperties": false,
        "properties": {
          "builtin_key": {
            "description": "The builtin key value.",
            "type": "string"
          },
          "color": {
            "description": "The color value.",
            "type": "string"
          },
          "configuration_set_builtin_keys": {
            "description": "The configuration set builtin keys value.",
            "items": {
              "type": "string"
            },
            "type": "array"
          },
          "configuration_set_ids": {
            "description": "The configuration set ids value.",
            "items": {
              "type": "integer"
            },
            "type": "array"
          },
          "configuration_set_names": {
            "description": "The configuration set names value.",
            "items": {
              "type": "string"
            },
            "type": "array"
          },
          "created_at": {
            "description": "The created at value.",
            "format": "date-time",
            "type": "string"
          },
          "description": {
            "description": "The description value.",
            "type": "string"
          },
          "display_description": {
            "description": "The display description value.",
            "type": "string"
          },
          "display_name": {
            "description": "The display name value.",
            "type": "string"
          },
          "icon": {
            "description": "The icon value.",
            "type": "string"
          },
          "id": {
            "description": "The id value.",
            "type": "integer"
          },
          "is_default": {
            "description": "The is default value.",
            "type": "boolean"
          },
          "name": {
            "description": "The name value.",
            "type": "string"
          },
          "sort_order": {
            "description": "The sort order value.",
            "type": "integer"
          },
          "updated_at": {
            "description": "The updated at value.",
            "format": "date-time",
            "type": "string"
          }
        },
        "required": [
          "color",
          "created_at",
          "description",
          "display_name",
          "icon",
          "id",
          "is_default",
          "name",
          "sort_order",
          "updated_at"
        ],
        "type": "object"
      },
      "PostPrioritiesResult": {
        "additionalProperties": false,
        "properties": {
          "data": {
            "additionalProperties": false,
            "properties": {
              "builtin_key": {
                "description": "The builtin key value.",
                "nullable": true,
                "type": "string"
              },
              "color": {
                "description": "The color value.",
                "type": "string"
              },
              "description": {
                "description": "The description value.",
                "type": "string"
              },
              "display_description": {
                "description": "The display description value.",
                "type": "string"
              },
              "display_name": {
                "description": "The display name value.",
                "type": "string"
              },
              "icon": {
                "description": "The icon value.",
                "type": "string"
              },
              "id": {
                "description": "The id value.",
                "type": "integer"
              },
              "is_default": {
                "description": "The is default value.",
                "type": "boolean"
              },
              "name": {
                "description": "The name value.",
                "type": "string"
              },
              "sort_order": {
                "description": "The sort order value.",
                "type": "integer"
              }
            },
            "required": [
              "color",
              "description",
              "display_description",
              "display_name",
              "icon",
              "id",
              "is_default",
              "name",
              "sort_order"
            ],
            "type": "object"
          }
        },
        "required": [
          "data"
        ],
        "type": "object"
      },
      "PostRecurrenceRulesPreviewPayload": {
        "additionalProperties": false,
        "properties": {
          "count": {
            "description": "The count value.",
            "type": "integer"
          },
          "dtstart": {
            "description": "The dtstart value.",
            "type": "string"
          },
          "rrule": {
            "description": "The rrule value.",
            "type": "string"
          }
        },
        "required": [
          "dtstart",
          "rrule"
        ],
        "type": "object"
      },
      "PostRecurrenceRulesPreviewResult": {
        "additionalProperties": false,
        "properties": {
          "data": {
            "additionalProperties": false,
            "properties": {
              "dtstart": {
                "description": "The dtstart value.",
                "format": "date-time",
                "type": "string"
              },
              "occurrences": {
                "description": "The occurrences value.",
                "items": {
                  "format": "date-time",
                  "type": "string"
                },
                "type": "array"
              },
              "rrule": {
                "description": "The rrule value.",
                "type": "string"
              }
            },
            "required": [
              "dtstart",
              "occurrences",
              "rrule"
            ],
            "type": "object"
          }
        },
        "required": [
          "data"
        ],
        "type": "object"
      },
      "PostStatusCategoriesPayload": {
        "additionalProperties": false,
        "properties": {
          "builtin_key": {
            "description": "The builtin key value.",
            "type": "string"
          },
          "color": {
            "description": "The color value.",
            "type": "string"
          },
          "created_at": {
            "description": "The created at value.",
            "format": "date-time",
            "type": "string"
          },
          "description": {
            "description": "The description value.",
            "type": "string"
          },
          "display_description": {
            "description": "The display description value.",
            "type": "string"
          },
          "display_name": {
            "description": "The display name value.",
            "type": "string"
          },
          "id": {
            "description": "The id value.",
            "type": "integer"
          },
          "is_completed": {
            "description": "The is completed value.",
            "type": "boolean"
          },
          "is_default": {
            "description": "The is default value.",
            "type": "boolean"
          },
          "name": {
            "description": "The name value.",
            "type": "string"
          },
          "updated_at": {
            "description": "The updated at value.",
            "format": "date-time",
            "type": "string"
          }
        },
        "required": [
          "color",
          "created_at",
          "description",
          "display_name",
          "id",
          "is_completed",
          "is_default",
          "name",
          "updated_at"
        ],
        "type": "object"
      },
      "PostStatusCategoriesResult": {
        "additionalProperties": false,
        "properties": {
          "data": {
            "additionalProperties": false,
            "properties": {
              "builtin_key": {
                "description": "The builtin key value.",
                "nullable": true,
                "type": "string"
              },
              "color": {
                "description": "The color value.",
                "type": "string"
              },
              "description": {
                "description": "The description value.",
                "type": "string"
              },
              "display_description": {
                "description": "The display description value.",
                "type": "string"
              },
              "display_name": {
                "description": "The display name value.",
                "type": "string"
              },
              "id": {
                "description": "The id value.",
                "type": "integer"
              },
              "is_completed": {
                "description": "The is completed value.",
                "type": "boolean"
              },
              "is_default": {
                "description": "The is default value.",
                "type": "boolean"
              },
              "name": {
                "description": "The name value.",
                "type": "string"
              }
            },
            "required": [
              "color",
              "description",
              "display_description",
              "display_name",
              "id",
              "is_completed",
              "is_default",
              "name"
            ],
            "type": "object"
          }
        },
        "required": [
          "data"
        ],
        "type": "object"
      },
      "PostStatusesPayload": {
        "additionalProperties": false,
        "properties": {
          "builtin_key": {
            "description": "The builtin key value.",
            "type": "string"
          },
          "category_builtin_key": {
            "description": "The category builtin key value.",
            "type": "string"
          },
          "category_color": {
            "description": "The category color value.",
            "type": "string"
          },
          "category_description": {
            "description": "The category description value.",
            "type": "string"
          },
          "category_id": {
            "description": "The category id value.",
            "type": "integer"
          },
          "category_is_default": {
            "description": "The category is default value.",
            "type": "boolean"
          },
          "category_name": {
            "description": "The category name value.",
            "type": "string"
          },
          "created_at": {
            "description": "The created at value.",
            "format": "date-time",
            "type": "string"
          },
          "description": {
            "description": "The description value.",
            "type": "string"
          },
          "display_description": {
            "description": "The display description value.",
            "type": "string"
          },
          "display_name": {
            "description": "The display name value.",
            "type": "string"
          },
          "id": {
            "description": "The id value.",
            "type": "integer"
          },
          "is_completed": {
            "description": "The is completed value.",
            "type": "boolean"
          },
          "is_default": {
            "description": "The is default value.",
            "type": "boolean"
          },
          "name": {
            "description": "The name value.",
            "type": "string"
          },
          "updated_at": {
            "description": "The updated at value.",
            "format": "date-time",
            "type": "string"
          }
        },
        "required": [
          "category_id",
          "created_at",
          "description",
          "display_name",
          "id",
          "is_default",
          "name",
          "updated_at"
        ],
        "type": "object"
      },
      "PostStatusesResult": {
        "additionalProperties": false,
        "properties": {
          "data": {
            "additionalProperties": false,
            "properties": {
              "builtin_key": {
                "description": "The builtin key value.",
                "nullable": true,
                "type": "string"
              },
              "category": {
                "additionalProperties": false,
                "description": "The category value.",
                "properties": {
                  "builtin_key": {
                    "description": "The builtin key value.",
                    "nullable": true,
                    "type": "string"
                  },
                  "color": {
                    "description": "The color value.",
                    "type": "string"
                  },
                  "description": {
                    "description": "The description value.",
                    "type": "string"
                  },
                  "display_description": {
                    "description": "The display description value.",
                    "type": "string"
                  },
                  "display_name": {
                    "description": "The display name value.",
                    "type": "string"
                  },
                  "id": {
                    "description": "The id value.",
                    "type": "integer"
                  },
                  "is_completed": {
                    "description": "The is completed value.",
                    "type": "boolean"
                  },
                  "is_default": {
                    "description": "The is default value.",
                    "type": "boolean"
                  },
                  "name": {
                    "description": "The name value.",
                    "type": "string"
                  }
                },
                "required": [
                  "color",
                  "description",
                  "display_description",
                  "display_name",
                  "id",
                  "is_completed",
                  "is_default",
                  "name"
                ],
                "type": "object"
              },
              "description": {
                "description": "The description value.",
                "type": "string"
              },
              "display_description": {
                "description": "The display description value.",
                "type": "string"
              },
              "display_name": {
                "description": "The display name value.",
                "type": "string"
              },
              "id": {
                "description": "The id value.",
                "type": "integer"
              },
              "is_default": {
                "description": "The is default value.",
                "type": "boolean"
              },
              "name": {
                "description": "The name value.",
                "type": "string"
              }
            },
            "required": [
              "category",
              "description",
              "display_description",
              "display_name",
              "id",
              "is_default",
              "name"
            ],
            "type": "object"
          }
        },
        "required": [
          "data"
        ],
        "type": "object"
      },
      "PostTimeProjectCategoriesPayload": {
        "additionalProperties": false,
        "properties": {
          "color": {
            "description": "The color value.",
            "type": "string"
          },
          "description": {
            "description": "The description value.",
            "type": "string"
          },
          "display_order": {
            "description": "The display order value.",
            "type": "integer"
          },
          "name": {
            "description": "The name value.",
            "type": "string"
          }
        },
        "required": [
          "color",
          "description",
          "display_order",
          "name"
        ],
        "type": "object"
      },
      "PostTimeProjectCategoriesResult": {
        "additionalProperties": false,
        "properties": {
          "data": {
            "additionalProperties": false,
            "properties": {
              "color": {
                "description": "The color value.",
                "type": "string"
              },
              "created_at": {
                "description": "The created at value.",
                "type": "string"
              },
              "description": {
                "description": "The description value.",
                "type": "string"
              },
              "display_order": {
                "description": "The display order value.",
                "type": "integer"
              },
              "id": {
                "description": "The id value.",
                "type": "integer"
              },
              "name": {
                "description": "The name value.",
                "type": "string"
              },
              "updated_at": {
                "description": "The updated at value.",
                "type": "string"
              }
            },
            "required": [
              "color",
              "created_at",
              "description",
              "display_order",
              "id",
              "name",
              "updated_at"
            ],
            "type": "object"
          }
        },
        "required": [
          "data"
        ],
        "type": "object"
      },
      "PostTimeProjectsPayload": {
        "additionalProperties": false,
        "properties": {
          "category_id": {
            "description": "The category id value.",
            "nullable": true,
            "type": "integer"
          },
          "color": {
            "description": "The color value.",
            "type": "string"
          },
          "customer_id": {
            "description": "The customer id value.",
            "type": "integer"
          },
          "description": {
            "description": "The description value.",
            "type": "string"
          },
          "hourly_rate": {
            "description": "The hourly rate value.",
            "type": "number"
          },
          "name": {
            "description": "The name value.",
            "type": "string"
          },
          "settings": {
            "additionalProperties": {
              "description": "Arbitrary JSON extension value."
            },
            "description": "The settings value.",
            "type": "object"
          },
          "status": {
            "description": "The status value.",
            "type": "string"
          }
        },
        "required": [
          "color",
          "customer_id",
          "description",
          "hourly_rate",
          "name",
          "settings",
          "status"
        ],
        "type": "object"
      },
      "PostTimeProjectsProjectIdManagersPayload": {
        "additionalProperties": false,
        "properties": {
          "principal_id": {
            "description": "The principal id value.",
            "type": "integer"
          },
          "principal_type": {
            "description": "The principal type value.",
            "type": "string"
          }
        },
        "required": [
          "principal_id",
          "principal_type"
        ],
        "type": "object"
      },
      "PostTimeProjectsProjectIdManagersResult": {
        "additionalProperties": false,
        "properties": {
          "data": {
            "additionalProperties": false,
            "properties": {
              "email": {
                "description": "The email value.",
                "type": "string"
              },
              "granted_at": {
                "description": "The granted at value.",
                "type": "string"
              },
              "granted_by": {
                "description": "The granted by value.",
                "nullable": true,
                "type": "integer"
              },
              "id": {
                "description": "The id value.",
                "type": "integer"
              },
              "name": {
                "description": "The name value.",
                "type": "string"
              },
              "principal_id": {
                "description": "The principal id value.",
                "type": "integer"
              },
              "principal_type": {
                "description": "The principal type value.",
                "type": "string"
              },
              "project_id": {
                "description": "The project id value.",
                "type": "integer"
              }
            },
            "required": [
              "email",
              "granted_at",
              "id",
              "name",
              "principal_id",
              "principal_type",
              "project_id"
            ],
            "type": "object"
          }
        },
        "required": [
          "data"
        ],
        "type": "object"
      },
      "PostTimeProjectsProjectIdMembersPayload": {
        "additionalProperties": false,
        "properties": {
          "principal_id": {
            "description": "The principal id value.",
            "type": "integer"
          },
          "principal_type": {
            "description": "The principal type value.",
            "type": "string"
          }
        },
        "required": [
          "principal_id",
          "principal_type"
        ],
        "type": "object"
      },
      "PostTimeProjectsProjectIdMembersResult": {
        "additionalProperties": false,
        "properties": {
          "data": {
            "additionalProperties": false,
            "properties": {
              "email": {
                "description": "The email value.",
                "type": "string"
              },
              "granted_at": {
                "description": "The granted at value.",
                "type": "string"
              },
              "granted_by": {
                "description": "The granted by value.",
                "nullable": true,
                "type": "integer"
              },
              "id": {
                "description": "The id value.",
                "type": "integer"
              },
              "name": {
                "description": "The name value.",
                "type": "string"
              },
              "principal_id": {
                "description": "The principal id value.",
                "type": "integer"
              },
              "principal_type": {
                "description": "The principal type value.",
                "type": "string"
              },
              "project_id": {
                "description": "The project id value.",
                "type": "integer"
              }
            },
            "required": [
              "email",
              "granted_at",
              "id",
              "name",
              "principal_id",
              "principal_type",
              "project_id"
            ],
            "type": "object"
          }
        },
        "required": [
          "data"
        ],
        "type": "object"
      },
      "PostTimeProjectsResult": {
        "additionalProperties": false,
        "properties": {
          "data": {
            "additionalProperties": false,
            "properties": {
              "category_color": {
                "description": "The category color value.",
                "type": "string"
              },
              "category_id": {
                "description": "The category id value.",
                "nullable": true,
                "type": "integer"
              },
              "category_name": {
                "description": "The category name value.",
                "type": "string"
              },
              "color": {
                "description": "The color value.",
                "type": "string"
              },
              "created_at": {
                "description": "The created at value.",
                "type": "string"
              },
              "customer_id": {
                "description": "The customer id value.",
                "nullable": true,
                "type": "integer"
              },
              "customer_name": {
                "description": "The customer name value.",
                "type": "string"
              },
              "description": {
                "description": "The description value.",
                "type": "string"
              },
              "hourly_rate": {
                "description": "The hourly rate value.",
                "type": "number"
              },
              "id": {
                "description": "The id value.",
                "type": "integer"
              },
              "name": {
                "description": "The name value.",
                "type": "string"
              },
              "settings": {
                "additionalProperties": {
                  "description": "Arbitrary JSON extension value."
                },
                "description": "The settings value.",
                "type": "object"
              },
              "status": {
                "description": "The status value.",
                "type": "string"
              },
              "total_hours": {
                "description": "The total hours value.",
                "nullable": true,
                "type": "number"
              },
              "updated_at": {
                "description": "The updated at value.",
                "type": "string"
              }
            },
            "required": [
              "category_color",
              "category_name",
              "color",
              "created_at",
              "customer_name",
              "description",
              "hourly_rate",
              "id",
              "name",
              "settings",
              "status",
              "updated_at"
            ],
            "type": "object"
          }
        },
        "required": [
          "data"
        ],
        "type": "object"
      },
      "PostTimeTimersActiveStopResult": {
        "additionalProperties": false,
        "properties": {
          "data": {
            "additionalProperties": false,
            "properties": {
              "description": {
                "description": "The description value.",
                "type": "string"
              },
              "duration_minutes": {
                "description": "The duration minutes value.",
                "type": "integer"
              },
              "duration_seconds": {
                "description": "The duration seconds value.",
                "type": "integer"
              },
              "stopped": {
                "description": "The stopped value.",
                "type": "boolean"
              },
              "timer_id": {
                "description": "The timer id value.",
                "type": "integer"
              },
              "worklog_created": {
                "description": "The worklog created value.",
                "type": "boolean"
              }
            },
            "required": [
              "description",
              "duration_minutes",
              "duration_seconds",
              "stopped",
              "timer_id",
              "worklog_created"
            ],
            "type": "object"
          }
        },
        "required": [
          "data"
        ],
        "type": "object"
      },
      "PostTimeTimersPayload": {
        "additionalProperties": false,
        "properties": {
          "description": {
            "description": "The description value.",
            "type": "string"
          },
          "item_id": {
            "description": "The item id value.",
            "nullable": true,
            "type": "integer"
          },
          "project_id": {
            "description": "The project id value.",
            "type": "integer"
          },
          "workspace_id": {
            "description": "The workspace id value.",
            "type": "integer"
          }
        },
        "required": [
          "description",
          "project_id",
          "workspace_id"
        ],
        "type": "object"
      },
      "PostTimeTimersResult": {
        "additionalProperties": false,
        "properties": {
          "data": {
            "additionalProperties": false,
            "nullable": true,
            "properties": {
              "created_at": {
                "description": "The created at value.",
                "type": "integer"
              },
              "customer_name": {
                "description": "The customer name value.",
                "nullable": true,
                "type": "string"
              },
              "description": {
                "description": "The description value.",
                "type": "string"
              },
              "id": {
                "description": "The id value.",
                "type": "integer"
              },
              "item_id": {
                "description": "The item id value.",
                "nullable": true,
                "type": "integer"
              },
              "item_title": {
                "description": "The item title value.",
                "nullable": true,
                "type": "string"
              },
              "project_id": {
                "description": "The project id value.",
                "type": "integer"
              },
              "project_name": {
                "description": "The project name value.",
                "nullable": true,
                "type": "string"
              },
              "start_time_utc": {
                "description": "The start time utc value.",
                "type": "integer"
              },
              "user_id": {
                "description": "The user id value.",
                "type": "integer"
              },
              "workspace_id": {
                "description": "The workspace id value.",
                "type": "integer"
              },
              "workspace_item_number": {
                "description": "The workspace item number value.",
                "nullable": true,
                "type": "integer"
              },
              "workspace_key": {
                "description": "The workspace key value.",
                "nullable": true,
                "type": "string"
              },
              "workspace_name": {
                "description": "The workspace name value.",
                "nullable": true,
                "type": "string"
              }
            },
            "required": [
              "created_at",
              "description",
              "id",
              "project_id",
              "start_time_utc",
              "user_id",
              "workspace_id"
            ],
            "type": "object"
          }
        },
        "required": [
          "data"
        ],
        "type": "object"
      },
      "PostTimeWorklogsPayload": {
        "additionalProperties": false,
        "properties": {
          "date": {
            "description": "The date value.",
            "type": "string"
          },
          "description": {
            "description": "The description value.",
            "type": "string"
          },
          "duration": {
            "description": "The duration value.",
            "type": "string"
          },
          "duration_minutes": {
            "description": "The duration minutes value.",
            "type": "integer"
          },
          "end_time": {
            "description": "The end time value.",
            "type": "string"
          },
          "item_id": {
            "description": "The item id value.",
            "nullable": true,
            "type": "integer"
          },
          "project_id": {
            "description": "The project id value.",
            "type": "integer"
          },
          "start_time": {
            "description": "The start time value.",
            "type": "string"
          },
          "timezone": {
            "description": "The timezone value.",
            "type": "string"
          }
        },
        "required": [
          "date",
          "description",
          "duration",
          "duration_minutes",
          "end_time",
          "project_id",
          "start_time",
          "timezone"
        ],
        "type": "object"
      },
      "PostTimeWorklogsResult": {
        "additionalProperties": false,
        "properties": {
          "data": {
            "additionalProperties": false,
            "properties": {
              "created_at": {
                "description": "The created at value.",
                "type": "integer"
              },
              "customer_id": {
                "description": "The customer id value.",
                "type": "integer"
              },
              "customer_name": {
                "description": "The customer name value.",
                "type": "string"
              },
              "date": {
                "description": "The date value.",
                "type": "integer"
              },
              "description": {
                "description": "The description value.",
                "type": "string"
              },
              "duration_minutes": {
                "description": "The duration minutes value.",
                "type": "integer"
              },
              "end_time": {
                "description": "The end time value.",
                "type": "integer"
              },
              "id": {
                "description": "The id value.",
                "type": "integer"
              },
              "item_id": {
                "description": "The item id value.",
                "nullable": true,
                "type": "integer"
              },
              "item_title": {
                "description": "The item title value.",
                "type": "string"
              },
              "project_id": {
                "description": "The project id value.",
                "type": "integer"
              },
              "project_max_hours": {
                "description": "The project max hours value.",
                "nullable": true,
                "type": "number"
              },
              "project_name": {
                "description": "The project name value.",
                "type": "string"
              },
              "project_total_hours": {
                "description": "The project total hours value.",
                "nullable": true,
                "type": "number"
              },
              "start_time": {
                "description": "The start time value.",
                "type": "integer"
              },
              "updated_at": {
                "description": "The updated at value.",
                "type": "integer"
              },
              "user_id": {
                "description": "The user id value.",
                "nullable": true,
                "type": "integer"
              },
              "user_name": {
                "description": "The user name value.",
                "type": "string"
              },
              "warnings": {
                "description": "The warnings value.",
                "items": {
                  "type": "string"
                },
                "type": "array"
              },
              "workspace_id": {
                "description": "The workspace id value.",
                "nullable": true,
                "type": "integer"
              },
              "workspace_item_number": {
                "description": "The workspace item number value.",
                "type": "integer"
              },
              "workspace_key": {
                "description": "The workspace key value.",
                "type": "string"
              }
            },
            "required": [
              "created_at",
              "customer_id",
              "customer_name",
              "date",
              "description",
              "duration_minutes",
              "end_time",
              "id",
              "item_title",
              "project_id",
              "project_name",
              "start_time",
              "updated_at",
              "user_name",
              "workspace_item_number",
              "workspace_key"
            ],
            "type": "object"
          }
        },
        "required": [
          "data"
        ],
        "type": "object"
      },
      "PostWorkflowsPayload": {
        "additionalProperties": false,
        "properties": {
          "builtin_key": {
            "description": "The builtin key value.",
            "type": "string"
          },
          "created_at": {
            "description": "The created at value.",
            "format": "date-time",
            "type": "string"
          },
          "description": {
            "description": "The description value.",
            "type": "string"
          },
          "display_description": {
            "description": "The display description value.",
            "type": "string"
          },
          "display_name": {
            "description": "The display name value.",
            "type": "string"
          },
          "id": {
            "description": "The id value.",
            "type": "integer"
          },
          "is_default": {
            "description": "The is default value.",
            "type": "boolean"
          },
          "name": {
            "description": "The name value.",
            "type": "string"
          },
          "transitions": {
            "description": "The transitions value.",
            "items": {
              "additionalProperties": false,
              "properties": {
                "created_at": {
                  "description": "The created at value.",
                  "format": "date-time",
                  "type": "string"
                },
                "display_order": {
                  "description": "The display order value.",
                  "type": "integer"
                },
                "from_all_statuses": {
                  "description": "The from all statuses value.",
                  "type": "boolean"
                },
                "from_status_id": {
                  "description": "The from status id value.",
                  "nullable": true,
                  "type": "integer"
                },
                "from_status_name": {
                  "description": "The from status name value.",
                  "type": "string"
                },
                "id": {
                  "description": "The id value.",
                  "type": "integer"
                },
                "source_handle": {
                  "description": "The source handle value.",
                  "type": "string"
                },
                "target_handle": {
                  "description": "The target handle value.",
                  "type": "string"
                },
                "to_status_id": {
                  "description": "The to status id value.",
                  "type": "integer"
                },
                "to_status_name": {
                  "description": "The to status name value.",
                  "type": "string"
                },
                "workflow_id": {
                  "description": "The workflow id value.",
                  "type": "integer"
                },
                "workflow_name": {
                  "description": "The workflow name value.",
                  "type": "string"
                }
              },
              "required": [
                "created_at",
                "display_order",
                "from_all_statuses",
                "id",
                "to_status_id",
                "workflow_id"
              ],
              "type": "object"
            },
            "type": "array"
          },
          "updated_at": {
            "description": "The updated at value.",
            "format": "date-time",
            "type": "string"
          }
        },
        "required": [
          "created_at",
          "description",
          "display_name",
          "id",
          "is_default",
          "name",
          "updated_at"
        ],
        "type": "object"
      },
      "PostWorkflowsResult": {
        "additionalProperties": false,
        "properties": {
          "data": {
            "additionalProperties": false,
            "properties": {
              "builtin_key": {
                "description": "The builtin key value.",
                "nullable": true,
                "type": "string"
              },
              "description": {
                "description": "The description value.",
                "type": "string"
              },
              "display_description": {
                "description": "The display description value.",
                "type": "string"
              },
              "display_name": {
                "description": "The display name value.",
                "type": "string"
              },
              "id": {
                "description": "The id value.",
                "type": "integer"
              },
              "is_default": {
                "description": "The is default value.",
                "type": "boolean"
              },
              "name": {
                "description": "The name value.",
                "type": "string"
              }
            },
            "required": [
              "description",
              "display_description",
              "display_name",
              "id",
              "is_default",
              "name"
            ],
            "type": "object"
          }
        },
        "required": [
          "data"
        ],
        "type": "object"
      },
      "PostWorkspacesPayload": {
        "additionalProperties": false,
        "properties": {
          "active": {
            "description": "The active value.",
            "nullable": true,
            "type": "boolean"
          },
          "avatar_url": {
            "description": "The avatar url value.",
            "nullable": true,
            "type": "string"
          },
          "color": {
            "description": "The color value.",
            "type": "string"
          },
          "default_view": {
            "description": "The default view value.",
            "type": "string"
          },
          "description": {
            "description": "The description value.",
            "type": "string"
          },
          "icon": {
            "description": "The icon value.",
            "type": "string"
          },
          "is_personal": {
            "description": "The is personal value.",
            "type": "boolean"
          },
          "key": {
            "description": "The key value.",
            "type": "string"
          },
          "name": {
            "description": "The name value.",
            "type": "string"
          },
          "owner_id": {
            "description": "The owner id value.",
            "nullable": true,
            "type": "integer"
          },
          "template_workspace_id": {
            "description": "The template workspace id value.",
            "nullable": true,
            "type": "integer"
          },
          "time_project_id": {
            "description": "The time project id value.",
            "nullable": true,
            "type": "integer"
          }
        },
        "required": [
          "color",
          "default_view",
          "description",
          "icon",
          "is_personal",
          "key",
          "name"
        ],
        "type": "object"
      },
      "PostWorkspacesResult": {
        "additionalProperties": false,
        "properties": {
          "data": {
            "additionalProperties": false,
            "properties": {
              "active": {
                "description": "The active value.",
                "type": "boolean"
              },
              "avatar_url": {
                "description": "The avatar url value.",
                "nullable": true,
                "type": "string"
              },
              "color": {
                "description": "The color value.",
                "type": "string"
              },
              "configuration_set_id": {
                "description": "The configuration set id value.",
                "nullable": true,
                "type": "integer"
              },
              "created_at": {
                "description": "The created at value.",
                "type": "string"
              },
              "default_view": {
                "description": "The default view value.",
                "type": "string"
              },
              "description": {
                "description": "The description value.",
                "type": "string"
              },
              "icon": {
                "description": "The icon value.",
                "type": "string"
              },
              "id": {
                "description": "The id value.",
                "type": "integer"
              },
              "internal_comments_enabled": {
                "description": "The internal comments enabled value.",
                "type": "boolean"
              },
              "is_personal": {
                "description": "The is personal value.",
                "type": "boolean"
              },
              "is_template": {
                "description": "The is template value.",
                "type": "boolean"
              },
              "key": {
                "description": "The key value.",
                "type": "string"
              },
              "name": {
                "description": "The name value.",
                "type": "string"
              },
              "owner_id": {
                "description": "The owner id value.",
                "nullable": true,
                "type": "integer"
              },
              "time_project_categories": {
                "description": "The time project categories value.",
                "items": {
                  "type": "integer"
                },
                "type": "array"
              },
              "time_project_id": {
                "description": "The time project id value.",
                "nullable": true,
                "type": "integer"
              },
              "time_project_name": {
                "description": "The time project name value.",
                "type": "string"
              },
              "updated_at": {
                "description": "The updated at value.",
                "type": "string"
              }
            },
            "required": [
              "active",
              "color",
              "created_at",
              "default_view",
              "description",
              "icon",
              "id",
              "internal_comments_enabled",
              "is_personal",
              "is_template",
              "key",
              "name",
              "time_project_categories",
              "time_project_name",
              "updated_at"
            ],
            "type": "object"
          }
        },
        "required": [
          "data"
        ],
        "type": "object"
      },
      "PostWorkspacesWorkspaceIdActionTemplatesTemplateKeyApplyResult": {
        "additionalProperties": false,
        "properties": {
          "data": {
            "additionalProperties": false,
            "nullable": true,
            "properties": {
              "action_id": {
                "description": "The action id value.",
                "type": "integer"
              },
              "name": {
                "description": "The name value.",
                "type": "string"
              },
              "template_key": {
                "description": "The template key value.",
                "type": "string"
              },
              "workspace_id": {
                "description": "The workspace id value.",
                "type": "integer"
              }
            },
            "required": [
              "action_id",
              "name",
              "template_key",
              "workspace_id"
            ],
            "type": "object"
          }
        },
        "required": [
          "data"
        ],
        "type": "object"
      },
      "PostWorkspacesWorkspaceIdActionsActionIdExecutePayload": {
        "additionalProperties": false,
        "properties": {
          "item_id": {
            "description": "The item id value.",
            "type": "integer"
          }
        },
        "required": [
          "item_id"
        ],
        "type": "object"
      },
      "PostWorkspacesWorkspaceIdActionsActionIdExecuteResult": {
        "additionalProperties": false,
        "properties": {
          "data": {
            "additionalProperties": false,
            "properties": {
              "status": {
                "description": "The status value.",
                "type": "string"
              }
            },
            "required": [
              "status"
            ],
            "type": "object"
          }
        },
        "required": [
          "data"
        ],
        "type": "object"
      },
      "PostWorkspacesWorkspaceIdActionsPayload": {
        "additionalProperties": false,
        "properties": {
          "actor_user_id": {
            "description": "The actor user id value.",
            "nullable": true,
            "type": "integer"
          },
          "allowed_role_ids": {
            "description": "The allowed role ids value.",
            "items": {
              "type": "integer"
            },
            "type": "array"
          },
          "description": {
            "description": "The description value.",
            "type": "string"
          },
          "edges": {
            "description": "The edges value.",
            "items": {
              "additionalProperties": false,
              "properties": {
                "action_id": {
                  "description": "The action id value.",
                  "type": "integer"
                },
                "created_at": {
                  "description": "The created at value.",
                  "format": "date-time",
                  "type": "string"
                },
                "edge_type": {
                  "description": "The edge type value.",
                  "type": "string"
                },
                "id": {
                  "description": "The id value.",
                  "type": "integer"
                },
                "source_handle": {
                  "description": "The source handle value.",
                  "type": "string"
                },
                "source_node_id": {
                  "description": "The source node id value.",
                  "type": "integer"
                },
                "target_handle": {
                  "description": "The target handle value.",
                  "type": "string"
                },
                "target_node_id": {
                  "description": "The target node id value.",
                  "type": "integer"
                }
              },
              "required": [
                "action_id",
                "created_at",
                "edge_type",
                "id",
                "source_node_id",
                "target_node_id"
              ],
              "type": "object"
            },
            "type": "array"
          },
          "name": {
            "description": "The name value.",
            "type": "string"
          },
          "nodes": {
            "description": "The nodes value.",
            "items": {
              "additionalProperties": false,
              "properties": {
                "action_id": {
                  "description": "The action id value.",
                  "type": "integer"
                },
                "created_at": {
                  "description": "The created at value.",
                  "format": "date-time",
                  "type": "string"
                },
                "id": {
                  "description": "The id value.",
                  "type": "integer"
                },
                "node_config": {
                  "description": "The node config value.",
                  "type": "string"
                },
                "node_type": {
                  "description": "The node type value.",
                  "type": "string"
                },
                "position_x": {
                  "description": "The position x value.",
                  "type": "number"
                },
                "position_y": {
                  "description": "The position y value.",
                  "type": "number"
                },
                "updated_at": {
                  "description": "The updated at value.",
                  "format": "date-time",
                  "type": "string"
                }
              },
              "required": [
                "action_id",
                "created_at",
                "id",
                "node_config",
                "node_type",
                "position_x",
                "position_y",
                "updated_at"
              ],
              "type": "object"
            },
            "type": "array"
          },
          "trigger_config": {
            "description": "The trigger config value.",
            "type": "string"
          },
          "trigger_type": {
            "description": "The trigger type value.",
            "type": "string"
          }
        },
        "required": [
          "name",
          "trigger_type"
        ],
        "type": "object"
      },
      "PostWorkspacesWorkspaceIdActionsResult": {
        "additionalProperties": false,
        "properties": {
          "data": {
            "additionalProperties": false,
            "nullable": true,
            "properties": {
              "actor_name": {
                "description": "The actor name value.",
                "type": "string"
              },
              "actor_user_id": {
                "description": "The actor user id value.",
                "nullable": true,
                "type": "integer"
              },
              "allowed_role_ids": {
                "description": "The allowed role ids value.",
                "items": {
                  "type": "integer"
                },
                "type": "array"
              },
              "created_at": {
                "description": "The created at value.",
                "format": "date-time",
                "type": "string"
              },
              "created_by": {
                "description": "The created by value.",
                "nullable": true,
                "type": "integer"
              },
              "creator_name": {
                "description": "The creator name value.",
                "type": "string"
              },
              "description": {
                "description": "The description value.",
                "type": "string"
              },
              "edges": {
                "description": "The edges value.",
                "items": {
                  "additionalProperties": false,
                  "properties": {
                    "action_id": {
                      "description": "The action id value.",
                      "type": "integer"
                    },
                    "created_at": {
                      "description": "The created at value.",
                      "format": "date-time",
                      "type": "string"
                    },
                    "edge_type": {
                      "description": "The edge type value.",
                      "type": "string"
                    },
                    "id": {
                      "description": "The id value.",
                      "type": "integer"
                    },
                    "source_handle": {
                      "description": "The source handle value.",
                      "type": "string"
                    },
                    "source_node_id": {
                      "description": "The source node id value.",
                      "type": "integer"
                    },
                    "target_handle": {
                      "description": "The target handle value.",
                      "type": "string"
                    },
                    "target_node_id": {
                      "description": "The target node id value.",
                      "type": "integer"
                    }
                  },
                  "required": [
                    "action_id",
                    "created_at",
                    "edge_type",
                    "id",
                    "source_node_id",
                    "target_node_id"
                  ],
                  "type": "object"
                },
                "type": "array"
              },
              "id": {
                "description": "The id value.",
                "type": "integer"
              },
              "is_enabled": {
                "description": "The is enabled value.",
                "type": "boolean"
              },
              "name": {
                "description": "The name value.",
                "type": "string"
              },
              "nodes": {
                "description": "The nodes value.",
                "items": {
                  "additionalProperties": false,
                  "properties": {
                    "action_id": {
                      "description": "The action id value.",
                      "type": "integer"
                    },
                    "created_at": {
                      "description": "The created at value.",
                      "format": "date-time",
                      "type": "string"
                    },
                    "id": {
                      "description": "The id value.",
                      "type": "integer"
                    },
                    "node_config": {
                      "description": "The node config value.",
                      "type": "string"
                    },
                    "node_type": {
                      "description": "The node type value.",
                      "type": "string"
                    },
                    "position_x": {
                      "description": "The position x value.",
                      "type": "number"
                    },
                    "position_y": {
                      "description": "The position y value.",
                      "type": "number"
                    },
                    "updated_at": {
                      "description": "The updated at value.",
                      "format": "date-time",
                      "type": "string"
                    }
                  },
                  "required": [
                    "action_id",
                    "created_at",
                    "id",
                    "node_config",
                    "node_type",
                    "position_x",
                    "position_y",
                    "updated_at"
                  ],
                  "type": "object"
                },
                "type": "array"
              },
              "trigger_config": {
                "description": "The trigger config value.",
                "type": "string"
              },
              "trigger_type": {
                "description": "The trigger type value.",
                "type": "string"
              },
              "updated_at": {
                "description": "The updated at value.",
                "format": "date-time",
                "type": "string"
              },
              "workspace_id": {
                "description": "The workspace id value.",
                "type": "integer"
              }
            },
            "required": [
              "allowed_role_ids",
              "created_at",
              "id",
              "is_enabled",
              "name",
              "trigger_type",
              "updated_at",
              "workspace_id"
            ],
            "type": "object"
          }
        },
        "required": [
          "data"
        ],
        "type": "object"
      },
      "PostWorkspacesWorkspaceIdAgentSkillsPayload": {
        "additionalProperties": false,
        "properties": {
          "body": {
            "description": "The body value.",
            "type": "string"
          },
          "description": {
            "description": "The description value.",
            "type": "string"
          },
          "enabled": {
            "description": "The enabled value.",
            "nullable": true,
            "type": "boolean"
          },
          "name": {
            "description": "The name value.",
            "type": "string"
          },
          "page_ids": {
            "description": "The page ids value.",
            "items": {
              "type": "integer"
            },
            "type": "array"
          }
        },
        "required": [
          "body",
          "description",
          "name",
          "page_ids"
        ],
        "type": "object"
      },
      "PostWorkspacesWorkspaceIdAgentSkillsResult": {
        "additionalProperties": false,
        "properties": {
          "data": {
            "additionalProperties": false,
            "properties": {
              "body": {
                "description": "The body value.",
                "type": "string"
              },
              "created_at": {
                "description": "The created at value.",
                "format": "date-time",
                "type": "string"
              },
              "created_by_user_id": {
                "description": "The created by user id value.",
                "nullable": true,
                "type": "integer"
              },
              "description": {
                "description": "The description value.",
                "type": "string"
              },
              "enabled": {
                "description": "The enabled value.",
                "type": "boolean"
              },
              "id": {
                "description": "The id value.",
                "type": "integer"
              },
              "name": {
                "description": "The name value.",
                "type": "string"
              },
              "pages": {
                "description": "The pages value.",
                "items": {
                  "additionalProperties": false,
                  "properties": {
                    "activation_bytes": {
                      "description": "The activation bytes value.",
                      "type": "integer"
                    },
                    "activation_runes": {
                      "description": "The activation runes value.",
                      "type": "integer"
                    },
                    "id": {
                      "description": "The id value.",
                      "type": "integer"
                    },
                    "page_updated_at": {
                      "description": "The page updated at value.",
                      "format": "date-time",
                      "type": "string"
                    },
                    "snapshot_at": {
                      "description": "The snapshot at value.",
                      "format": "date-time",
                      "type": "string"
                    },
                    "snapshot_title": {
                      "description": "The snapshot title value.",
                      "type": "string"
                    },
                    "stale": {
                      "description": "The stale value.",
                      "type": "boolean"
                    },
                    "title": {
                      "description": "The title value.",
                      "type": "string"
                    }
                  },
                  "required": [
                    "activation_bytes",
                    "activation_runes",
                    "id",
                    "snapshot_at",
                    "stale",
                    "title"
                  ],
                  "type": "object"
                },
                "type": "array"
              },
              "updated_at": {
                "description": "The updated at value.",
                "format": "date-time",
                "type": "string"
              },
              "usage": {
                "additionalProperties": false,
                "description": "The usage value.",
                "nullable": true,
                "properties": {
                  "bytes": {
                    "description": "The bytes value.",
                    "type": "integer"
                  },
                  "estimated_tokens": {
                    "description": "The estimated tokens value.",
                    "type": "integer"
                  },
                  "max_bytes": {
                    "description": "The max bytes value.",
                    "type": "integer"
                  },
                  "max_tokens": {
                    "description": "The max tokens value.",
                    "type": "integer"
                  },
                  "page_prefix_bytes": {
                    "description": "The page prefix bytes value.",
                    "type": "integer"
                  },
                  "page_prefix_runes": {
                    "description": "The page prefix runes value.",
                    "type": "integer"
                  }
                },
                "required": [
                  "bytes",
                  "estimated_tokens",
                  "max_bytes",
                  "max_tokens",
                  "page_prefix_bytes",
                  "page_prefix_runes"
                ],
                "type": "object"
              },
              "workspace_id": {
                "description": "The workspace id value.",
                "type": "integer"
              }
            },
            "required": [
              "created_at",
              "description",
              "enabled",
              "id",
              "name",
              "updated_at",
              "workspace_id"
            ],
            "type": "object"
          }
        },
        "required": [
          "data"
        ],
        "type": "object"
      },
      "PostWorkspacesWorkspaceIdItemTemplatesPayload": {
        "additionalProperties": false,
        "properties": {
          "description_body": {
            "description": "The description body value.",
            "type": "string"
          },
          "is_active": {
            "description": "The is active value.",
            "nullable": true,
            "type": "boolean"
          },
          "item_type_ids": {
            "description": "The item type ids value.",
            "items": {
              "type": "integer"
            },
            "type": "array"
          },
          "mode": {
            "description": "The mode value.",
            "type": "string"
          },
          "name": {
            "description": "The name value.",
            "type": "string"
          }
        },
        "required": [
          "description_body",
          "item_type_ids",
          "mode",
          "name"
        ],
        "type": "object"
      },
      "PostWorkspacesWorkspaceIdItemTemplatesResult": {
        "additionalProperties": false,
        "properties": {
          "data": {
            "additionalProperties": false,
            "properties": {
              "created_at": {
                "description": "The created at value.",
                "type": "string"
              },
              "created_by": {
                "description": "The created by value.",
                "nullable": true,
                "type": "integer"
              },
              "description_body": {
                "description": "The description body value.",
                "type": "string"
              },
              "id": {
                "description": "The id value.",
                "type": "integer"
              },
              "is_active": {
                "description": "The is active value.",
                "type": "boolean"
              },
              "item_type_ids": {
                "description": "The item type ids value.",
                "items": {
                  "type": "integer"
                },
                "type": "array"
              },
              "mode": {
                "description": "The mode value.",
                "type": "string"
              },
              "name": {
                "description": "The name value.",
                "type": "string"
              },
              "updated_at": {
                "description": "The updated at value.",
                "type": "string"
              },
              "updated_by": {
                "description": "The updated by value.",
                "nullable": true,
                "type": "integer"
              },
              "workspace_id": {
                "description": "The workspace id value.",
                "type": "integer"
              }
            },
            "required": [
              "created_at",
              "description_body",
              "id",
              "is_active",
              "item_type_ids",
              "mode",
              "name",
              "updated_at",
              "workspace_id"
            ],
            "type": "object"
          }
        },
        "required": [
          "data"
        ],
        "type": "object"
      },
      "PostWorkspacesWorkspaceIdIterationsPayload": {
        "additionalProperties": false,
        "properties": {
          "description": {
            "description": "The description value.",
            "type": "string"
          },
          "end_date": {
            "description": "The end date value.",
            "type": "string"
          },
          "name": {
            "description": "The name value.",
            "type": "string"
          },
          "start_date": {
            "description": "The start date value.",
            "type": "string"
          },
          "status": {
            "description": "The status value.",
            "type": "string"
          },
          "type_id": {
            "description": "The type id value.",
            "nullable": true,
            "type": "integer"
          }
        },
        "required": [
          "description",
          "end_date",
          "name",
          "start_date",
          "status"
        ],
        "type": "object"
      },
      "PostWorkspacesWorkspaceIdIterationsResult": {
        "additionalProperties": false,
        "properties": {
          "data": {
            "additionalProperties": false,
            "properties": {
              "created_at": {
                "description": "The created at value.",
                "format": "date-time",
                "type": "string"
              },
              "description": {
                "description": "The description value.",
                "type": "string"
              },
              "end_date": {
                "description": "The end date value.",
                "type": "string"
              },
              "id": {
                "description": "The id value.",
                "type": "integer"
              },
              "is_global": {
                "description": "The is global value.",
                "type": "boolean"
              },
              "name": {
                "description": "The name value.",
                "type": "string"
              },
              "start_date": {
                "description": "The start date value.",
                "type": "string"
              },
              "status": {
                "description": "The status value.",
                "type": "string"
              },
              "type_color": {
                "description": "The type color value.",
                "type": "string"
              },
              "type_id": {
                "description": "The type id value.",
                "nullable": true,
                "type": "integer"
              },
              "type_name": {
                "description": "The type name value.",
                "type": "string"
              },
              "updated_at": {
                "description": "The updated at value.",
                "format": "date-time",
                "type": "string"
              },
              "workspace_id": {
                "description": "The workspace id value.",
                "nullable": true,
                "type": "integer"
              },
              "workspace_name": {
                "description": "The workspace name value.",
                "type": "string"
              }
            },
            "required": [
              "created_at",
              "description",
              "end_date",
              "id",
              "is_global",
              "name",
              "start_date",
              "status",
              "updated_at"
            ],
            "type": "object"
          }
        },
        "required": [
          "data"
        ],
        "type": "object"
      },
      "PostWorkspacesWorkspaceIdLabelsPayload": {
        "additionalProperties": false,
        "properties": {
          "color": {
            "description": "The color value.",
            "type": "string"
          },
          "name": {
            "description": "The name value.",
            "type": "string"
          }
        },
        "required": [
          "color",
          "name"
        ],
        "type": "object"
      },
      "PostWorkspacesWorkspaceIdLabelsResult": {
        "additionalProperties": false,
        "properties": {
          "data": {
            "additionalProperties": false,
            "properties": {
              "color": {
                "description": "The color value.",
                "type": "string"
              },
              "created_at": {
                "description": "The created at value.",
                "type": "string"
              },
              "id": {
                "description": "The id value.",
                "type": "integer"
              },
              "name": {
                "description": "The name value.",
                "type": "string"
              },
              "updated_at": {
                "description": "The updated at value.",
                "type": "string"
              }
            },
            "required": [
              "color",
              "created_at",
              "id",
              "name",
              "updated_at"
            ],
            "type": "object"
          }
        },
        "required": [
          "data"
        ],
        "type": "object"
      },
      "PostWorkspacesWorkspaceIdMilestonesPayload": {
        "additionalProperties": false,
        "properties": {
          "category_id": {
            "description": "The category id value.",
            "nullable": true,
            "type": "integer"
          },
          "description": {
            "description": "The description value.",
            "type": "string"
          },
          "name": {
            "description": "The name value.",
            "type": "string"
          },
          "status": {
            "description": "The status value.",
            "type": "string"
          },
          "target_date": {
            "description": "The target date value.",
            "nullable": true,
            "type": "string"
          }
        },
        "required": [
          "description",
          "name",
          "status"
        ],
        "type": "object"
      },
      "PostWorkspacesWorkspaceIdMilestonesReorderPayload": {
        "additionalProperties": false,
        "properties": {
          "category_id": {
            "description": "The category id value.",
            "nullable": true,
            "type": "integer"
          },
          "ordered_ids": {
            "description": "The ordered ids value.",
            "items": {
              "type": "integer"
            },
            "type": "array"
          }
        },
        "required": [
          "ordered_ids"
        ],
        "type": "object"
      },
      "PostWorkspacesWorkspaceIdMilestonesReorderResult": {
        "additionalProperties": false,
        "properties": {
          "data": {
            "additionalProperties": false,
            "properties": {
              "reordered": {
                "description": "The reordered value.",
                "type": "boolean"
              }
            },
            "required": [
              "reordered"
            ],
            "type": "object"
          }
        },
        "required": [
          "data"
        ],
        "type": "object"
      },
      "PostWorkspacesWorkspaceIdMilestonesResult": {
        "additionalProperties": false,
        "properties": {
          "data": {
            "additionalProperties": false,
            "properties": {
              "category_color": {
                "description": "The category color value.",
                "type": "string"
              },
              "category_id": {
                "description": "The category id value.",
                "nullable": true,
                "type": "integer"
              },
              "category_name": {
                "description": "The category name value.",
                "type": "string"
              },
              "created_at": {
                "description": "The created at value.",
                "format": "date-time",
                "type": "string"
              },
              "description": {
                "description": "The description value.",
                "type": "string"
              },
              "external_key": {
                "description": "The external key value.",
                "nullable": true,
                "type": "string"
              },
              "id": {
                "description": "The id value.",
                "type": "integer"
              },
              "is_global": {
                "description": "The is global value.",
                "type": "boolean"
              },
              "latest_release": {
                "additionalProperties": false,
                "description": "The latest release value.",
                "nullable": true,
                "properties": {
                  "body": {
                    "description": "The body value.",
                    "type": "string"
                  },
                  "created_at": {
                    "description": "The created at value.",
                    "type": "string"
                  },
                  "created_by": {
                    "description": "The created by value.",
                    "nullable": true,
                    "type": "integer"
                  },
                  "id": {
                    "description": "The id value.",
                    "type": "integer"
                  },
                  "is_draft": {
                    "description": "The is draft value.",
                    "type": "boolean"
                  },
                  "is_prerelease": {
                    "description": "The is prerelease value.",
                    "type": "boolean"
                  },
                  "milestone_id": {
                    "description": "The milestone id value.",
                    "type": "integer"
                  },
                  "name": {
                    "description": "The name value.",
                    "type": "string"
                  },
                  "scm_connection_id": {
                    "description": "The scm connection id value.",
                    "nullable": true,
                    "type": "integer"
                  },
                  "scm_release_id": {
                    "description": "The scm release id value.",
                    "nullable": true,
                    "type": "string"
                  },
                  "scm_release_url": {
                    "description": "The scm release url value.",
                    "nullable": true,
                    "type": "string"
                  },
                  "scm_repository": {
                    "description": "The scm repository value.",
                    "nullable": true,
                    "type": "string"
                  },
                  "tag_name": {
                    "description": "The tag name value.",
                    "type": "string"
                  },
                  "target_commitish": {
                    "description": "The target commitish value.",
                    "type": "string"
                  }
                },
                "required": [
                  "created_at",
                  "id",
                  "is_draft",
                  "is_prerelease",
                  "milestone_id",
                  "tag_name"
                ],
                "type": "object"
              },
              "name": {
                "description": "The name value.",
                "type": "string"
              },
              "position": {
                "description": "The position value.",
                "type": "integer"
              },
              "releases": {
                "description": "The releases value.",
                "items": {
                  "additionalProperties": false,
                  "properties": {
                    "body": {
                      "description": "The body value.",
                      "type": "string"
                    },
                    "created_at": {
                      "description": "The created at value.",
                      "type": "string"
                    },
                    "created_by": {
                      "description": "The created by value.",
                      "nullable": true,
                      "type": "integer"
                    },
                    "id": {
                      "description": "The id value.",
                      "type": "integer"
                    },
                    "is_draft": {
                      "description": "The is draft value.",
                      "type": "boolean"
                    },
                    "is_prerelease": {
                      "description": "The is prerelease value.",
                      "type": "boolean"
                    },
                    "milestone_id": {
                      "description": "The milestone id value.",
                      "type": "integer"
                    },
                    "name": {
                      "description": "The name value.",
                      "type": "string"
                    },
                    "scm_connection_id": {
                      "description": "The scm connection id value.",
                      "nullable": true,
                      "type": "integer"
                    },
                    "scm_release_id": {
                      "description": "The scm release id value.",
                      "nullable": true,
                      "type": "string"
                    },
                    "scm_release_url": {
                      "description": "The scm release url value.",
                      "nullable": true,
                      "type": "string"
                    },
                    "scm_repository": {
                      "description": "The scm repository value.",
                      "nullable": true,
                      "type": "string"
                    },
                    "tag_name": {
                      "description": "The tag name value.",
                      "type": "string"
                    },
                    "target_commitish": {
                      "description": "The target commitish value.",
                      "type": "string"
                    }
                  },
                  "required": [
                    "created_at",
                    "id",
                    "is_draft",
                    "is_prerelease",
                    "milestone_id",
                    "tag_name"
                  ],
                  "type": "object"
                },
                "type": "array"
              },
              "status": {
                "description": "The status value.",
                "type": "string"
              },
              "target_date": {
                "description": "The target date value.",
                "nullable": true,
                "type": "string"
              },
              "updated_at": {
                "description": "The updated at value.",
                "format": "date-time",
                "type": "string"
              },
              "workspace_id": {
                "description": "The workspace id value.",
                "nullable": true,
                "type": "integer"
              },
              "workspace_name": {
                "description": "The workspace name value.",
                "type": "string"
              }
            },
            "required": [
              "created_at",
              "description",
              "id",
              "is_global",
              "name",
              "position",
              "status",
              "updated_at"
            ],
            "type": "object"
          }
        },
        "required": [
          "data"
        ],
        "type": "object"
      },
      "PostWorkspacesWorkspaceIdPageLabelsPayload": {
        "additionalProperties": false,
        "properties": {
          "color": {
            "description": "The color value.",
            "type": "string"
          },
          "name": {
            "description": "The name value.",
            "type": "string"
          }
        },
        "required": [
          "color",
          "name"
        ],
        "type": "object"
      },
      "PostWorkspacesWorkspaceIdPageLabelsResult": {
        "additionalProperties": false,
        "properties": {
          "data": {
            "additionalProperties": false,
            "properties": {
              "color": {
                "description": "The color value.",
                "type": "string"
              },
              "created_at": {
                "description": "The created at value.",
                "format": "date-time",
                "type": "string"
              },
              "id": {
                "description": "The id value.",
                "type": "integer"
              },
              "name": {
                "description": "The name value.",
                "type": "string"
              },
              "updated_at": {
                "description": "The updated at value.",
                "format": "date-time",
                "type": "string"
              },
              "workspace_id": {
                "description": "The workspace id value.",
                "type": "integer"
              }
            },
            "required": [
              "color",
              "created_at",
              "id",
              "name",
              "updated_at",
              "workspace_id"
            ],
            "type": "object"
          }
        },
        "required": [
          "data"
        ],
        "type": "object"
      },
      "PostWorkspacesWorkspaceIdPagesPageIdAttachmentsPayload": {
        "additionalProperties": false,
        "properties": {
          "file": {
            "description": "The file value.",
            "format": "byte",
            "type": "string"
          }
        },
        "required": [
          "file"
        ],
        "type": "object"
      },
      "PostWorkspacesWorkspaceIdPagesPageIdAttachmentsResult": {
        "additionalProperties": false,
        "properties": {
          "data": {
            "additionalProperties": false,
            "properties": {
              "created_at": {
                "description": "The created at value.",
                "format": "date-time",
                "type": "string"
              },
              "file_size": {
                "description": "The file size value.",
                "type": "integer"
              },
              "filename": {
                "description": "The filename value.",
                "type": "string"
              },
              "has_thumbnail": {
                "description": "The has thumbnail value.",
                "type": "boolean"
              },
              "id": {
                "description": "The id value.",
                "type": "integer"
              },
              "item_id": {
                "description": "The item id value.",
                "nullable": true,
                "type": "integer"
              },
              "mime_type": {
                "description": "The mime type value.",
                "type": "string"
              },
              "original_filename": {
                "description": "The original filename value.",
                "type": "string"
              },
              "uploaded_by": {
                "description": "The uploaded by value.",
                "nullable": true,
                "type": "integer"
              },
              "uploader_email": {
                "description": "The uploader email value.",
                "type": "string"
              },
              "uploader_name": {
                "description": "The uploader name value.",
                "type": "string"
              }
            },
            "required": [
              "created_at",
              "file_size",
              "filename",
              "has_thumbnail",
              "id",
              "mime_type",
              "original_filename"
            ],
            "type": "object"
          }
        },
        "required": [
          "data"
        ],
        "type": "object"
      },
      "PostWorkspacesWorkspaceIdPagesPageIdDiagramsPayload": {
        "additionalProperties": false,
        "properties": {
          "excalidraw": {
            "description": "The excalidraw value.",
            "format": "byte",
            "type": "string"
          },
          "expected_content_hash": {
            "description": "The expected content hash value.",
            "nullable": true,
            "type": "string"
          },
          "mermaid": {
            "description": "The mermaid value.",
            "type": "string"
          },
          "name": {
            "description": "The name value.",
            "type": "string"
          },
          "placement": {
            "description": "The placement value.",
            "type": "string"
          }
        },
        "required": [
          "name",
          "placement"
        ],
        "type": "object"
      },
      "PostWorkspacesWorkspaceIdPagesPageIdDiagramsResult": {
        "additionalProperties": false,
        "properties": {
          "data": {
            "additionalProperties": false,
            "properties": {
              "attachment_id": {
                "description": "The attachment id value.",
                "type": "integer"
              },
              "content_hash": {
                "description": "The content hash value.",
                "type": "string"
              },
              "created_at": {
                "description": "The created at value.",
                "format": "date-time",
                "type": "string"
              },
              "kind": {
                "description": "The kind value.",
                "type": "string"
              },
              "name": {
                "description": "The name value.",
                "type": "string"
              },
              "page_id": {
                "description": "The page id value.",
                "type": "integer"
              },
              "payload": {
                "description": "The payload value.",
                "format": "byte",
                "type": "string"
              },
              "revision_number": {
                "description": "The revision number value.",
                "type": "integer"
              }
            },
            "required": [
              "attachment_id",
              "kind",
              "name",
              "page_id"
            ],
            "type": "object"
          }
        },
        "required": [
          "data"
        ],
        "type": "object"
      },
      "PostWorkspacesWorkspaceIdPagesPageIdHistoryRevisionIdRestoreResult": {
        "additionalProperties": false,
        "properties": {
          "data": {
            "additionalProperties": false,
            "properties": {
              "archived_at": {
                "description": "The archived at value.",
                "format": "date-time",
                "nullable": true,
                "type": "string"
              },
              "archived_by": {
                "description": "The archived by value.",
                "nullable": true,
                "type": "integer"
              },
              "content": {
                "description": "The content value.",
                "type": "string"
              },
              "content_hash": {
                "description": "The content hash value.",
                "type": "string"
              },
              "created_at": {
                "description": "The created at value.",
                "format": "date-time",
                "type": "string"
              },
              "created_by": {
                "description": "The created by value.",
                "type": "integer"
              },
              "depth": {
                "description": "The depth value.",
                "type": "integer"
              },
              "excerpt": {
                "description": "The excerpt value.",
                "type": "string"
              },
              "frac_index": {
                "description": "The frac index value.",
                "nullable": true,
                "type": "string"
              },
              "id": {
                "description": "The id value.",
                "type": "integer"
              },
              "inherit_permissions": {
                "description": "The inherit permissions value.",
                "type": "boolean"
              },
              "is_home": {
                "description": "The is home value.",
                "type": "boolean"
              },
              "labels": {
                "description": "The labels value.",
                "items": {
                  "additionalProperties": false,
                  "properties": {
                    "color": {
                      "description": "The color value.",
                      "type": "string"
                    },
                    "created_at": {
                      "description": "The created at value.",
                      "format": "date-time",
                      "type": "string"
                    },
                    "id": {
                      "description": "The id value.",
                      "type": "integer"
                    },
                    "name": {
                      "description": "The name value.",
                      "type": "string"
                    },
                    "updated_at": {
                      "description": "The updated at value.",
                      "format": "date-time",
                      "type": "string"
                    },
                    "workspace_id": {
                      "description": "The workspace id value.",
                      "type": "integer"
                    }
                  },
                  "required": [
                    "color",
                    "created_at",
                    "id",
                    "name",
                    "updated_at",
                    "workspace_id"
                  ],
                  "type": "object"
                },
                "type": "array"
              },
              "metadata": {
                "description": "The metadata value.",
                "format": "byte",
                "type": "string"
              },
              "parent_id": {
                "description": "The parent id value.",
                "nullable": true,
                "type": "integer"
              },
              "path": {
                "description": "The path value.",
                "type": "string"
              },
              "rank": {
                "description": "The rank value.",
                "nullable": true,
                "type": "string"
              },
              "slug": {
                "description": "The slug value.",
                "type": "string"
              },
              "title": {
                "description": "The title value.",
                "type": "string"
              },
              "updated_at": {
                "description": "The updated at value.",
                "format": "date-time",
                "type": "string"
              },
              "updated_by": {
                "description": "The updated by value.",
                "nullable": true,
                "type": "integer"
              },
              "workspace_id": {
                "description": "The workspace id value.",
                "type": "integer"
              }
            },
            "required": [
              "content",
              "content_hash",
              "created_at",
              "created_by",
              "depth",
              "excerpt",
              "id",
              "inherit_permissions",
              "is_home",
              "labels",
              "metadata",
              "path",
              "slug",
              "title",
              "updated_at",
              "workspace_id"
            ],
            "type": "object"
          }
        },
        "required": [
          "data"
        ],
        "type": "object"
      },
      "PostWorkspacesWorkspaceIdPagesPageIdLabelsPayload": {
        "additionalProperties": false,
        "properties": {
          "label_id": {
            "description": "The label id value.",
            "type": "integer"
          }
        },
        "required": [
          "label_id"
        ],
        "type": "object"
      },
      "PostWorkspacesWorkspaceIdPagesPageIdLabelsResult": {
        "additionalProperties": false,
        "properties": {
          "data": {
            "items": {
              "additionalProperties": false,
              "properties": {
                "color": {
                  "description": "The color value.",
                  "type": "string"
                },
                "created_at": {
                  "description": "The created at value.",
                  "format": "date-time",
                  "type": "string"
                },
                "id": {
                  "description": "The id value.",
                  "type": "integer"
                },
                "name": {
                  "description": "The name value.",
                  "type": "string"
                },
                "updated_at": {
                  "description": "The updated at value.",
                  "format": "date-time",
                  "type": "string"
                },
                "workspace_id": {
                  "description": "The workspace id value.",
                  "type": "integer"
                }
              },
              "required": [
                "color",
                "created_at",
                "id",
                "name",
                "updated_at",
                "workspace_id"
              ],
              "type": "object"
            },
            "type": "array"
          }
        },
        "required": [
          "data"
        ],
        "type": "object"
      },
      "PostWorkspacesWorkspaceIdPagesPageIdMovePayload": {
        "additionalProperties": false,
        "properties": {
          "destination_workspace_id": {
            "description": "The destination workspace id value.",
            "nullable": true,
            "type": "integer"
          },
          "next_sibling_id": {
            "description": "The next sibling id value.",
            "nullable": true,
            "type": "integer"
          },
          "parent_id": {
            "description": "The parent id value.",
            "nullable": true,
            "type": "integer"
          },
          "prev_sibling_id": {
            "description": "The prev sibling id value.",
            "nullable": true,
            "type": "integer"
          }
        },
        "type": "object"
      },
      "PostWorkspacesWorkspaceIdPagesPageIdMoveResult": {
        "additionalProperties": false,
        "properties": {
          "data": {
            "additionalProperties": false,
            "properties": {
              "archived_at": {
                "description": "The archived at value.",
                "format": "date-time",
                "nullable": true,
                "type": "string"
              },
              "archived_by": {
                "description": "The archived by value.",
                "nullable": true,
                "type": "integer"
              },
              "content": {
                "description": "The content value.",
                "type": "string"
              },
              "content_hash": {
                "description": "The content hash value.",
                "type": "string"
              },
              "created_at": {
                "description": "The created at value.",
                "format": "date-time",
                "type": "string"
              },
              "created_by": {
                "description": "The created by value.",
                "type": "integer"
              },
              "depth": {
                "description": "The depth value.",
                "type": "integer"
              },
              "excerpt": {
                "description": "The excerpt value.",
                "type": "string"
              },
              "frac_index": {
                "description": "The frac index value.",
                "nullable": true,
                "type": "string"
              },
              "id": {
                "description": "The id value.",
                "type": "integer"
              },
              "inherit_permissions": {
                "description": "The inherit permissions value.",
                "type": "boolean"
              },
              "is_home": {
                "description": "The is home value.",
                "type": "boolean"
              },
              "labels": {
                "description": "The labels value.",
                "items": {
                  "additionalProperties": false,
                  "properties": {
                    "color": {
                      "description": "The color value.",
                      "type": "string"
                    },
                    "created_at": {
                      "description": "The created at value.",
                      "format": "date-time",
                      "type": "string"
                    },
                    "id": {
                      "description": "The id value.",
                      "type": "integer"
                    },
                    "name": {
                      "description": "The name value.",
                      "type": "string"
                    },
                    "updated_at": {
                      "description": "The updated at value.",
                      "format": "date-time",
                      "type": "string"
                    },
                    "workspace_id": {
                      "description": "The workspace id value.",
                      "type": "integer"
                    }
                  },
                  "required": [
                    "color",
                    "created_at",
                    "id",
                    "name",
                    "updated_at",
                    "workspace_id"
                  ],
                  "type": "object"
                },
                "type": "array"
              },
              "metadata": {
                "description": "The metadata value.",
                "format": "byte",
                "type": "string"
              },
              "parent_id": {
                "description": "The parent id value.",
                "nullable": true,
                "type": "integer"
              },
              "path": {
                "description": "The path value.",
                "type": "string"
              },
              "rank": {
                "description": "The rank value.",
                "nullable": true,
                "type": "string"
              },
              "slug": {
                "description": "The slug value.",
                "type": "string"
              },
              "title": {
                "description": "The title value.",
                "type": "string"
              },
              "updated_at": {
                "description": "The updated at value.",
                "format": "date-time",
                "type": "string"
              },
              "updated_by": {
                "description": "The updated by value.",
                "nullable": true,
                "type": "integer"
              },
              "workspace_id": {
                "description": "The workspace id value.",
                "type": "integer"
              }
            },
            "required": [
              "content",
              "content_hash",
              "created_at",
              "created_by",
              "depth",
              "excerpt",
              "id",
              "inherit_permissions",
              "is_home",
              "labels",
              "metadata",
              "path",
              "slug",
              "title",
              "updated_at",
              "workspace_id"
            ],
            "type": "object"
          }
        },
        "required": [
          "data"
        ],
        "type": "object"
      },
      "PostWorkspacesWorkspaceIdPagesPageIdPermissionsPayload": {
        "additionalProperties": false,
        "properties": {
          "permission_level": {
            "description": "The permission level value.",
            "type": "string"
          },
          "principal_id": {
            "description": "The principal id value.",
            "type": "integer"
          },
          "principal_type": {
            "description": "The principal type value.",
            "type": "string"
          }
        },
        "required": [
          "permission_level",
          "principal_id",
          "principal_type"
        ],
        "type": "object"
      },
      "PostWorkspacesWorkspaceIdPagesPageIdPermissionsResult": {
        "additionalProperties": false,
        "properties": {
          "data": {
            "additionalProperties": false,
            "properties": {
              "granted_at": {
                "description": "The granted at value.",
                "format": "date-time",
                "type": "string"
              },
              "granted_by": {
                "description": "The granted by value.",
                "nullable": true,
                "type": "integer"
              },
              "id": {
                "description": "The id value.",
                "type": "integer"
              },
              "page_id": {
                "description": "The page id value.",
                "type": "integer"
              },
              "permission_level": {
                "description": "The permission level value.",
                "type": "string"
              },
              "principal_id": {
                "description": "The principal id value.",
                "type": "integer"
              },
              "principal_type": {
                "description": "The principal type value.",
                "type": "string"
              }
            },
            "required": [
              "granted_at",
              "id",
              "page_id",
              "permission_level",
              "principal_id",
              "principal_type"
            ],
            "type": "object"
          }
        },
        "required": [
          "data"
        ],
        "type": "object"
      },
      "PostWorkspacesWorkspaceIdPagesPageIdUnarchiveResult": {
        "additionalProperties": false,
        "properties": {
          "data": {
            "additionalProperties": false,
            "properties": {
              "archived_at": {
                "description": "The archived at value.",
                "format": "date-time",
                "nullable": true,
                "type": "string"
              },
              "archived_by": {
                "description": "The archived by value.",
                "nullable": true,
                "type": "integer"
              },
              "content": {
                "description": "The content value.",
                "type": "string"
              },
              "content_hash": {
                "description": "The content hash value.",
                "type": "string"
              },
              "created_at": {
                "description": "The created at value.",
                "format": "date-time",
                "type": "string"
              },
              "created_by": {
                "description": "The created by value.",
                "type": "integer"
              },
              "depth": {
                "description": "The depth value.",
                "type": "integer"
              },
              "excerpt": {
                "description": "The excerpt value.",
                "type": "string"
              },
              "frac_index": {
                "description": "The frac index value.",
                "nullable": true,
                "type": "string"
              },
              "id": {
                "description": "The id value.",
                "type": "integer"
              },
              "inherit_permissions": {
                "description": "The inherit permissions value.",
                "type": "boolean"
              },
              "is_home": {
                "description": "The is home value.",
                "type": "boolean"
              },
              "labels": {
                "description": "The labels value.",
                "items": {
                  "additionalProperties": false,
                  "properties": {
                    "color": {
                      "description": "The color value.",
                      "type": "string"
                    },
                    "created_at": {
                      "description": "The created at value.",
                      "format": "date-time",
                      "type": "string"
                    },
                    "id": {
                      "description": "The id value.",
                      "type": "integer"
                    },
                    "name": {
                      "description": "The name value.",
                      "type": "string"
                    },
                    "updated_at": {
                      "description": "The updated at value.",
                      "format": "date-time",
                      "type": "string"
                    },
                    "workspace_id": {
                      "description": "The workspace id value.",
                      "type": "integer"
                    }
                  },
                  "required": [
                    "color",
                    "created_at",
                    "id",
                    "name",
                    "updated_at",
                    "workspace_id"
                  ],
                  "type": "object"
                },
                "type": "array"
              },
              "metadata": {
                "description": "The metadata value.",
                "format": "byte",
                "type": "string"
              },
              "parent_id": {
                "description": "The parent id value.",
                "nullable": true,
                "type": "integer"
              },
              "path": {
                "description": "The path value.",
                "type": "string"
              },
              "rank": {
                "description": "The rank value.",
                "nullable": true,
                "type": "string"
              },
              "slug": {
                "description": "The slug value.",
                "type": "string"
              },
              "title": {
                "description": "The title value.",
                "type": "string"
              },
              "updated_at": {
                "description": "The updated at value.",
                "format": "date-time",
                "type": "string"
              },
              "updated_by": {
                "description": "The updated by value.",
                "nullable": true,
                "type": "integer"
              },
              "workspace_id": {
                "description": "The workspace id value.",
                "type": "integer"
              }
            },
            "required": [
              "content",
              "content_hash",
              "created_at",
              "created_by",
              "depth",
              "excerpt",
              "id",
              "inherit_permissions",
              "is_home",
              "labels",
              "metadata",
              "path",
              "slug",
              "title",
              "updated_at",
              "workspace_id"
            ],
            "type": "object"
          }
        },
        "required": [
          "data"
        ],
        "type": "object"
      },
      "PostWorkspacesWorkspaceIdPagesPayload": {
        "additionalProperties": false,
        "properties": {
          "content": {
            "description": "The content value.",
            "type": "string"
          },
          "is_home": {
            "description": "The is home value.",
            "type": "boolean"
          },
          "metadata": {
            "description": "The metadata value.",
            "format": "byte",
            "type": "string"
          },
          "parent_id": {
            "description": "The parent id value.",
            "nullable": true,
            "type": "integer"
          },
          "title": {
            "description": "The title value.",
            "type": "string"
          }
        },
        "required": [
          "content",
          "is_home",
          "metadata",
          "title"
        ],
        "type": "object"
      },
      "PostWorkspacesWorkspaceIdPagesResult": {
        "additionalProperties": false,
        "properties": {
          "data": {
            "additionalProperties": false,
            "properties": {
              "archived_at": {
                "description": "The archived at value.",
                "format": "date-time",
                "nullable": true,
                "type": "string"
              },
              "archived_by": {
                "description": "The archived by value.",
                "nullable": true,
                "type": "integer"
              },
              "content": {
                "description": "The content value.",
                "type": "string"
              },
              "content_hash": {
                "description": "The content hash value.",
                "type": "string"
              },
              "created_at": {
                "description": "The created at value.",
                "format": "date-time",
                "type": "string"
              },
              "created_by": {
                "description": "The created by value.",
                "type": "integer"
              },
              "depth": {
                "description": "The depth value.",
                "type": "integer"
              },
              "excerpt": {
                "description": "The excerpt value.",
                "type": "string"
              },
              "frac_index": {
                "description": "The frac index value.",
                "nullable": true,
                "type": "string"
              },
              "id": {
                "description": "The id value.",
                "type": "integer"
              },
              "inherit_permissions": {
                "description": "The inherit permissions value.",
                "type": "boolean"
              },
              "is_home": {
                "description": "The is home value.",
                "type": "boolean"
              },
              "labels": {
                "description": "The labels value.",
                "items": {
                  "additionalProperties": false,
                  "properties": {
                    "color": {
                      "description": "The color value.",
                      "type": "string"
                    },
                    "created_at": {
                      "description": "The created at value.",
                      "format": "date-time",
                      "type": "string"
                    },
                    "id": {
                      "description": "The id value.",
                      "type": "integer"
                    },
                    "name": {
                      "description": "The name value.",
                      "type": "string"
                    },
                    "updated_at": {
                      "description": "The updated at value.",
                      "format": "date-time",
                      "type": "string"
                    },
                    "workspace_id": {
                      "description": "The workspace id value.",
                      "type": "integer"
                    }
                  },
                  "required": [
                    "color",
                    "created_at",
                    "id",
                    "name",
                    "updated_at",
                    "workspace_id"
                  ],
                  "type": "object"
                },
                "type": "array"
              },
              "metadata": {
                "description": "The metadata value.",
                "format": "byte",
                "type": "string"
              },
              "parent_id": {
                "description": "The parent id value.",
                "nullable": true,
                "type": "integer"
              },
              "path": {
                "description": "The path value.",
                "type": "string"
              },
              "rank": {
                "description": "The rank value.",
                "nullable": true,
                "type": "string"
              },
              "slug": {
                "description": "The slug value.",
                "type": "string"
              },
              "title": {
                "description": "The title value.",
                "type": "string"
              },
              "updated_at": {
                "description": "The updated at value.",
                "format": "date-time",
                "type": "string"
              },
              "updated_by": {
                "description": "The updated by value.",
                "nullable": true,
                "type": "integer"
              },
              "workspace_id": {
                "description": "The workspace id value.",
                "type": "integer"
              }
            },
            "required": [
              "content",
              "content_hash",
              "created_at",
              "created_by",
              "depth",
              "excerpt",
              "id",
              "inherit_permissions",
              "is_home",
              "labels",
              "metadata",
              "path",
              "slug",
              "title",
              "updated_at",
              "workspace_id"
            ],
            "type": "object"
          }
        },
        "required": [
          "data"
        ],
        "type": "object"
      },
      "PostWorkspacesWorkspaceIdTestCasesPayload": {
        "additionalProperties": false,
        "properties": {
          "estimated_duration": {
            "description": "The estimated duration value.",
            "type": "integer"
          },
          "folder_id": {
            "description": "The folder id value.",
            "nullable": true,
            "type": "integer"
          },
          "preconditions": {
            "description": "The preconditions value.",
            "type": "string"
          },
          "priority": {
            "description": "The priority value.",
            "type": "string"
          },
          "status": {
            "description": "The status value.",
            "type": "string"
          },
          "title": {
            "description": "The title value.",
            "type": "string"
          }
        },
        "required": [
          "estimated_duration",
          "preconditions",
          "priority",
          "status",
          "title"
        ],
        "type": "object"
      },
      "PostWorkspacesWorkspaceIdTestCasesReorderPayload": {
        "additionalProperties": false,
        "properties": {
          "ids": {
            "description": "Resource IDs in preferred response order. At most 500 IDs are accepted; duplicates use their first occurrence and missing or invisible resources are omitted.",
            "items": {
              "type": "integer"
            },
            "type": "array"
          }
        },
        "required": [
          "ids"
        ],
        "type": "object"
      },
      "PostWorkspacesWorkspaceIdTestCasesReorderResult": {
        "additionalProperties": false,
        "properties": {
          "data": {
            "additionalProperties": false,
            "properties": {
              "reordered": {
                "description": "The reordered value.",
                "type": "boolean"
              }
            },
            "required": [
              "reordered"
            ],
            "type": "object"
          }
        },
        "required": [
          "data"
        ],
        "type": "object"
      },
      "PostWorkspacesWorkspaceIdTestCasesResult": {
        "additionalProperties": false,
        "properties": {
          "data": {
            "additionalProperties": false,
            "nullable": true,
            "properties": {
              "created_at": {
                "description": "The created at value.",
                "format": "date-time",
                "type": "string"
              },
              "estimated_duration": {
                "description": "The estimated duration value.",
                "type": "integer"
              },
              "folder_id": {
                "description": "The folder id value.",
                "nullable": true,
                "type": "integer"
              },
              "folder_name": {
                "description": "The folder name value.",
                "type": "string"
              },
              "id": {
                "description": "The id value.",
                "type": "integer"
              },
              "labels": {
                "description": "The labels value.",
                "items": {
                  "additionalProperties": false,
                  "properties": {
                    "color": {
                      "description": "The color value.",
                      "type": "string"
                    },
                    "created_at": {
                      "description": "The created at value.",
                      "format": "date-time",
                      "type": "string"
                    },
                    "description": {
                      "description": "The description value.",
                      "type": "string"
                    },
                    "id": {
                      "description": "The id value.",
                      "type": "integer"
                    },
                    "name": {
                      "description": "The name value.",
                      "type": "string"
                    },
                    "updated_at": {
                      "description": "The updated at value.",
                      "format": "date-time",
                      "type": "string"
                    },
                    "workspace_id": {
                      "description": "The workspace id value.",
                      "type": "integer"
                    }
                  },
                  "required": [
                    "color",
                    "created_at",
                    "description",
                    "id",
                    "name",
                    "updated_at",
                    "workspace_id"
                  ],
                  "type": "object"
                },
                "type": "array"
              },
              "name": {
                "description": "The name value.",
                "type": "string"
              },
              "preconditions": {
                "description": "The preconditions value.",
                "type": "string"
              },
              "priority": {
                "description": "The priority value.",
                "type": "string"
              },
              "sort_order": {
                "description": "The sort order value.",
                "type": "integer"
              },
              "status": {
                "description": "The status value.",
                "type": "string"
              },
              "test_steps": {
                "description": "The test steps value.",
                "items": {
                  "additionalProperties": false,
                  "properties": {
                    "action": {
                      "description": "The action value.",
                      "type": "string"
                    },
                    "created_at": {
                      "description": "The created at value.",
                      "format": "date-time",
                      "type": "string"
                    },
                    "data": {
                      "description": "The data value.",
                      "type": "string"
                    },
                    "expected": {
                      "description": "The expected value.",
                      "type": "string"
                    },
                    "id": {
                      "description": "The id value.",
                      "type": "integer"
                    },
                    "step_number": {
                      "description": "The step number value.",
                      "type": "integer"
                    },
                    "test_case_id": {
                      "description": "The test case id value.",
                      "type": "integer"
                    },
                    "updated_at": {
                      "description": "The updated at value.",
                      "format": "date-time",
                      "type": "string"
                    }
                  },
                  "required": [
                    "action",
                    "created_at",
                    "data",
                    "expected",
                    "id",
                    "step_number",
                    "test_case_id",
                    "updated_at"
                  ],
                  "type": "object"
                },
                "type": "array"
              },
              "title": {
                "description": "The title value.",
                "type": "string"
              },
              "updated_at": {
                "description": "The updated at value.",
                "format": "date-time",
                "type": "string"
              },
              "workspace_id": {
                "description": "The workspace id value.",
                "type": "integer"
              }
            },
            "required": [
              "created_at",
              "estimated_duration",
              "id",
              "name",
              "preconditions",
              "priority",
              "sort_order",
              "status",
              "title",
              "updated_at",
              "workspace_id"
            ],
            "type": "object"
          }
        },
        "required": [
          "data"
        ],
        "type": "object"
      },
      "PostWorkspacesWorkspaceIdTestCasesTestCaseIdLabelsPayload": {
        "additionalProperties": false,
        "properties": {
          "label_id": {
            "description": "The label id value.",
            "type": "integer"
          }
        },
        "required": [
          "label_id"
        ],
        "type": "object"
      },
      "PostWorkspacesWorkspaceIdTestCasesTestCaseIdLabelsResult": {
        "additionalProperties": false,
        "properties": {
          "data": {
            "additionalProperties": false,
            "properties": {
              "linked": {
                "description": "The linked value.",
                "type": "boolean"
              }
            },
            "required": [
              "linked"
            ],
            "type": "object"
          }
        },
        "required": [
          "data"
        ],
        "type": "object"
      },
      "PostWorkspacesWorkspaceIdTestCasesTestCaseIdMovePayload": {
        "additionalProperties": false,
        "properties": {
          "folder_id": {
            "description": "The folder id value.",
            "nullable": true,
            "type": "integer"
          },
          "sort_order": {
            "description": "The sort order value.",
            "type": "integer"
          }
        },
        "required": [
          "sort_order"
        ],
        "type": "object"
      },
      "PostWorkspacesWorkspaceIdTestCasesTestCaseIdMoveResult": {
        "additionalProperties": false,
        "properties": {
          "data": {
            "additionalProperties": false,
            "properties": {
              "moved": {
                "description": "The moved value.",
                "type": "boolean"
              }
            },
            "required": [
              "moved"
            ],
            "type": "object"
          }
        },
        "required": [
          "data"
        ],
        "type": "object"
      },
      "PostWorkspacesWorkspaceIdTestCasesTestCaseIdStepsPayload": {
        "additionalProperties": false,
        "properties": {
          "action": {
            "description": "The action value.",
            "type": "string"
          },
          "data": {
            "description": "The data value.",
            "type": "string"
          },
          "expected": {
            "description": "The expected value.",
            "type": "string"
          }
        },
        "required": [
          "action",
          "data",
          "expected"
        ],
        "type": "object"
      },
      "PostWorkspacesWorkspaceIdTestCasesTestCaseIdStepsReorderPayload": {
        "additionalProperties": false,
        "properties": {
          "ids": {
            "description": "Resource IDs in preferred response order. At most 500 IDs are accepted; duplicates use their first occurrence and missing or invisible resources are omitted.",
            "items": {
              "type": "integer"
            },
            "type": "array"
          }
        },
        "required": [
          "ids"
        ],
        "type": "object"
      },
      "PostWorkspacesWorkspaceIdTestCasesTestCaseIdStepsReorderResult": {
        "additionalProperties": false,
        "properties": {
          "data": {
            "additionalProperties": false,
            "properties": {
              "reordered": {
                "description": "The reordered value.",
                "type": "boolean"
              }
            },
            "required": [
              "reordered"
            ],
            "type": "object"
          }
        },
        "required": [
          "data"
        ],
        "type": "object"
      },
      "PostWorkspacesWorkspaceIdTestCasesTestCaseIdStepsResult": {
        "additionalProperties": false,
        "properties": {
          "data": {
            "additionalProperties": false,
            "nullable": true,
            "properties": {
              "action": {
                "description": "The action value.",
                "type": "string"
              },
              "created_at": {
                "description": "The created at value.",
                "format": "date-time",
                "type": "string"
              },
              "data": {
                "description": "The data value.",
                "type": "string"
              },
              "expected": {
                "description": "The expected value.",
                "type": "string"
              },
              "id": {
                "description": "The id value.",
                "type": "integer"
              },
              "step_number": {
                "description": "The step number value.",
                "type": "integer"
              },
              "test_case_id": {
                "description": "The test case id value.",
                "type": "integer"
              },
              "updated_at": {
                "description": "The updated at value.",
                "format": "date-time",
                "type": "string"
              }
            },
            "required": [
              "action",
              "created_at",
              "data",
              "expected",
              "id",
              "step_number",
              "test_case_id",
              "updated_at"
            ],
            "type": "object"
          }
        },
        "required": [
          "data"
        ],
        "type": "object"
      },
      "PostWorkspacesWorkspaceIdTestCoverageConfigPayload": {
        "additionalProperties": false,
        "properties": {
          "requirement_item_type_ids": {
            "description": "The requirement item type ids value.",
            "items": {
              "type": "integer"
            },
            "type": "array"
          }
        },
        "required": [
          "requirement_item_type_ids"
        ],
        "type": "object"
      },
      "PostWorkspacesWorkspaceIdTestCoverageConfigResult": {
        "additionalProperties": false,
        "properties": {
          "data": {
            "additionalProperties": false,
            "nullable": true,
            "properties": {
              "collection_id": {
                "description": "The collection id value.",
                "nullable": true,
                "type": "integer"
              },
              "created_at": {
                "description": "The created at value.",
                "format": "date-time",
                "type": "string"
              },
              "id": {
                "description": "The id value.",
                "type": "integer"
              },
              "requirement_item_type_ids": {
                "description": "The requirement item type ids value.",
                "items": {
                  "type": "integer"
                },
                "type": "array"
              },
              "updated_at": {
                "description": "The updated at value.",
                "format": "date-time",
                "type": "string"
              },
              "workspace_id": {
                "description": "The workspace id value.",
                "nullable": true,
                "type": "integer"
              }
            },
            "required": [
              "created_at",
              "id",
              "requirement_item_type_ids",
              "updated_at"
            ],
            "type": "object"
          }
        },
        "required": [
          "data"
        ],
        "type": "object"
      },
      "PostWorkspacesWorkspaceIdTestFoldersPayload": {
        "additionalProperties": false,
        "properties": {
          "description": {
            "description": "The description value.",
            "type": "string"
          },
          "name": {
            "description": "The name value.",
            "type": "string"
          },
          "parent_id": {
            "description": "The parent id value.",
            "nullable": true,
            "type": "integer"
          }
        },
        "required": [
          "description",
          "name"
        ],
        "type": "object"
      },
      "PostWorkspacesWorkspaceIdTestFoldersReorderPayload": {
        "additionalProperties": false,
        "properties": {
          "ids": {
            "description": "Resource IDs in preferred response order. At most 500 IDs are accepted; duplicates use their first occurrence and missing or invisible resources are omitted.",
            "items": {
              "type": "integer"
            },
            "type": "array"
          }
        },
        "required": [
          "ids"
        ],
        "type": "object"
      },
      "PostWorkspacesWorkspaceIdTestFoldersReorderResult": {
        "additionalProperties": false,
        "properties": {
          "data": {
            "additionalProperties": false,
            "properties": {
              "reordered": {
                "description": "The reordered value.",
                "type": "boolean"
              }
            },
            "required": [
              "reordered"
            ],
            "type": "object"
          }
        },
        "required": [
          "data"
        ],
        "type": "object"
      },
      "PostWorkspacesWorkspaceIdTestFoldersResult": {
        "additionalProperties": false,
        "properties": {
          "data": {
            "additionalProperties": false,
            "nullable": true,
            "properties": {
              "created_at": {
                "description": "The created at value.",
                "format": "date-time",
                "type": "string"
              },
              "description": {
                "description": "The description value.",
                "type": "string"
              },
              "id": {
                "description": "The id value.",
                "type": "integer"
              },
              "name": {
                "description": "The name value.",
                "type": "string"
              },
              "parent_id": {
                "description": "The parent id value.",
                "nullable": true,
                "type": "integer"
              },
              "sort_order": {
                "description": "The sort order value.",
                "type": "integer"
              },
              "test_case_count": {
                "description": "The test case count value.",
                "type": "integer"
              },
              "updated_at": {
                "description": "The updated at value.",
                "format": "date-time",
                "type": "string"
              },
              "workspace_id": {
                "description": "The workspace id value.",
                "type": "integer"
              }
            },
            "required": [
              "created_at",
              "description",
              "id",
              "name",
              "sort_order",
              "updated_at",
              "workspace_id"
            ],
            "type": "object"
          }
        },
        "required": [
          "data"
        ],
        "type": "object"
      },
      "PostWorkspacesWorkspaceIdTestLabelsPayload": {
        "additionalProperties": false,
        "properties": {
          "color": {
            "description": "The color value.",
            "type": "string"
          },
          "description": {
            "description": "The description value.",
            "type": "string"
          },
          "name": {
            "description": "The name value.",
            "type": "string"
          }
        },
        "required": [
          "color",
          "description",
          "name"
        ],
        "type": "object"
      },
      "PostWorkspacesWorkspaceIdTestLabelsResult": {
        "additionalProperties": false,
        "properties": {
          "data": {
            "additionalProperties": false,
            "nullable": true,
            "properties": {
              "color": {
                "description": "The color value.",
                "type": "string"
              },
              "created_at": {
                "description": "The created at value.",
                "format": "date-time",
                "type": "string"
              },
              "description": {
                "description": "The description value.",
                "type": "string"
              },
              "id": {
                "description": "The id value.",
                "type": "integer"
              },
              "name": {
                "description": "The name value.",
                "type": "string"
              },
              "updated_at": {
                "description": "The updated at value.",
                "format": "date-time",
                "type": "string"
              },
              "workspace_id": {
                "description": "The workspace id value.",
                "type": "integer"
              }
            },
            "required": [
              "color",
              "created_at",
              "description",
              "id",
              "name",
              "updated_at",
              "workspace_id"
            ],
            "type": "object"
          }
        },
        "required": [
          "data"
        ],
        "type": "object"
      },
      "PostWorkspacesWorkspaceIdTestPlansPayload": {
        "additionalProperties": false,
        "properties": {
          "description": {
            "description": "The description value.",
            "type": "string"
          },
          "milestone_id": {
            "description": "The milestone id value.",
            "nullable": true,
            "type": "integer"
          },
          "name": {
            "description": "The name value.",
            "type": "string"
          }
        },
        "required": [
          "description",
          "name"
        ],
        "type": "object"
      },
      "PostWorkspacesWorkspaceIdTestPlansPlanIdTestCasesPayload": {
        "additionalProperties": false,
        "properties": {
          "test_case_id": {
            "description": "The test case id value.",
            "type": "integer"
          }
        },
        "required": [
          "test_case_id"
        ],
        "type": "object"
      },
      "PostWorkspacesWorkspaceIdTestPlansPlanIdTestCasesResult": {
        "additionalProperties": false,
        "properties": {
          "data": {
            "additionalProperties": false,
            "properties": {
              "linked": {
                "description": "The linked value.",
                "type": "boolean"
              }
            },
            "required": [
              "linked"
            ],
            "type": "object"
          }
        },
        "required": [
          "data"
        ],
        "type": "object"
      },
      "PostWorkspacesWorkspaceIdTestPlansResult": {
        "additionalProperties": false,
        "properties": {
          "data": {
            "additionalProperties": false,
            "nullable": true,
            "properties": {
              "created_at": {
                "description": "The created at value.",
                "format": "date-time",
                "type": "string"
              },
              "description": {
                "description": "The description value.",
                "type": "string"
              },
              "failed_runs": {
                "description": "The failed runs value.",
                "type": "integer"
              },
              "id": {
                "description": "The id value.",
                "type": "integer"
              },
              "last_run_date": {
                "description": "The last run date value.",
                "format": "date-time",
                "nullable": true,
                "type": "string"
              },
              "last_run_status": {
                "description": "The last run status value.",
                "type": "string"
              },
              "milestone_id": {
                "description": "The milestone id value.",
                "nullable": true,
                "type": "integer"
              },
              "milestone_name": {
                "description": "The milestone name value.",
                "type": "string"
              },
              "name": {
                "description": "The name value.",
                "type": "string"
              },
              "successful_runs": {
                "description": "The successful runs value.",
                "type": "integer"
              },
              "test_case_count": {
                "description": "The test case count value.",
                "type": "integer"
              },
              "total_runs": {
                "description": "The total runs value.",
                "type": "integer"
              },
              "updated_at": {
                "description": "The updated at value.",
                "format": "date-time",
                "type": "string"
              },
              "workspace_id": {
                "description": "The workspace id value.",
                "type": "integer"
              }
            },
            "required": [
              "created_at",
              "description",
              "id",
              "name",
              "updated_at",
              "workspace_id"
            ],
            "type": "object"
          }
        },
        "required": [
          "data"
        ],
        "type": "object"
      },
      "PostWorkspacesWorkspaceIdTestResultsResultIdItemsPayload": {
        "additionalProperties": false,
        "properties": {
          "item_id": {
            "description": "The item id value.",
            "type": "integer"
          }
        },
        "required": [
          "item_id"
        ],
        "type": "object"
      },
      "PostWorkspacesWorkspaceIdTestResultsResultIdItemsResult": {
        "additionalProperties": false,
        "properties": {
          "data": {
            "additionalProperties": false,
            "properties": {
              "linked": {
                "description": "The linked value.",
                "type": "boolean"
              }
            },
            "required": [
              "linked"
            ],
            "type": "object"
          }
        },
        "required": [
          "data"
        ],
        "type": "object"
      },
      "PostWorkspacesWorkspaceIdTestRunTemplatesPayload": {
        "additionalProperties": false,
        "properties": {
          "description": {
            "description": "The description value.",
            "type": "string"
          },
          "name": {
            "description": "The name value.",
            "type": "string"
          },
          "plan_id": {
            "description": "The plan id value.",
            "type": "integer"
          }
        },
        "required": [
          "description",
          "name",
          "plan_id"
        ],
        "type": "object"
      },
      "PostWorkspacesWorkspaceIdTestRunTemplatesResult": {
        "additionalProperties": false,
        "properties": {
          "data": {
            "additionalProperties": false,
            "nullable": true,
            "properties": {
              "created_at": {
                "description": "The created at value.",
                "format": "date-time",
                "type": "string"
              },
              "description": {
                "description": "The description value.",
                "type": "string"
              },
              "id": {
                "description": "The id value.",
                "type": "integer"
              },
              "name": {
                "description": "The name value.",
                "type": "string"
              },
              "plan_id": {
                "description": "The plan id value.",
                "type": "integer"
              },
              "plan_name": {
                "description": "The plan name value.",
                "type": "string"
              },
              "updated_at": {
                "description": "The updated at value.",
                "format": "date-time",
                "type": "string"
              },
              "workspace_id": {
                "description": "The workspace id value.",
                "type": "integer"
              }
            },
            "required": [
              "created_at",
              "description",
              "id",
              "name",
              "plan_id",
              "updated_at",
              "workspace_id"
            ],
            "type": "object"
          }
        },
        "required": [
          "data"
        ],
        "type": "object"
      },
      "PostWorkspacesWorkspaceIdTestRunTemplatesTemplateIdExecuteResult": {
        "additionalProperties": false,
        "properties": {
          "data": {
            "additionalProperties": false,
            "nullable": true,
            "properties": {
              "assignee_avatar": {
                "description": "The assignee avatar value.",
                "type": "string"
              },
              "assignee_email": {
                "description": "The assignee email value.",
                "type": "string"
              },
              "assignee_id": {
                "description": "The assignee id value.",
                "nullable": true,
                "type": "integer"
              },
              "assignee_name": {
                "description": "The assignee name value.",
                "type": "string"
              },
              "created_at": {
                "description": "The created at value.",
                "format": "date-time",
                "type": "string"
              },
              "ended_at": {
                "description": "The ended at value.",
                "format": "date-time",
                "nullable": true,
                "type": "string"
              },
              "id": {
                "description": "The id value.",
                "type": "integer"
              },
              "name": {
                "description": "The name value.",
                "type": "string"
              },
              "plan_id": {
                "description": "The plan id value.",
                "type": "integer"
              },
              "started_at": {
                "description": "The started at value.",
                "format": "date-time",
                "type": "string"
              },
              "template_id": {
                "description": "The template id value.",
                "type": "integer"
              },
              "workspace_id": {
                "description": "The workspace id value.",
                "type": "integer"
              }
            },
            "required": [
              "created_at",
              "id",
              "name",
              "plan_id",
              "started_at",
              "workspace_id"
            ],
            "type": "object"
          }
        },
        "required": [
          "data"
        ],
        "type": "object"
      },
      "PostWorkspacesWorkspaceIdTestRunsPayload": {
        "additionalProperties": false,
        "properties": {
          "assignee_id": {
            "description": "The assignee id value.",
            "nullable": true,
            "type": "integer"
          },
          "name": {
            "description": "The name value.",
            "type": "string"
          },
          "plan_id": {
            "description": "The plan id value.",
            "type": "integer"
          },
          "template_id": {
            "description": "The template id value.",
            "type": "integer"
          }
        },
        "required": [
          "name",
          "plan_id",
          "template_id"
        ],
        "type": "object"
      },
      "PostWorkspacesWorkspaceIdTestRunsResult": {
        "additionalProperties": false,
        "properties": {
          "data": {
            "additionalProperties": false,
            "nullable": true,
            "properties": {
              "assignee_avatar": {
                "description": "The assignee avatar value.",
                "type": "string"
              },
              "assignee_email": {
                "description": "The assignee email value.",
                "type": "string"
              },
              "assignee_id": {
                "description": "The assignee id value.",
                "nullable": true,
                "type": "integer"
              },
              "assignee_name": {
                "description": "The assignee name value.",
                "type": "string"
              },
              "created_at": {
                "description": "The created at value.",
                "format": "date-time",
                "type": "string"
              },
              "ended_at": {
                "description": "The ended at value.",
                "format": "date-time",
                "nullable": true,
                "type": "string"
              },
              "id": {
                "description": "The id value.",
                "type": "integer"
              },
              "name": {
                "description": "The name value.",
                "type": "string"
              },
              "plan_id": {
                "description": "The plan id value.",
                "type": "integer"
              },
              "started_at": {
                "description": "The started at value.",
                "format": "date-time",
                "type": "string"
              },
              "template_id": {
                "description": "The template id value.",
                "type": "integer"
              },
              "workspace_id": {
                "description": "The workspace id value.",
                "type": "integer"
              }
            },
            "required": [
              "created_at",
              "id",
              "name",
              "plan_id",
              "started_at",
              "workspace_id"
            ],
            "type": "object"
          }
        },
        "required": [
          "data"
        ],
        "type": "object"
      },
      "PostWorkspacesWorkspaceIdTestRunsRunIdEndResult": {
        "additionalProperties": false,
        "properties": {
          "data": {
            "additionalProperties": false,
            "properties": {
              "ended": {
                "description": "The ended value.",
                "type": "boolean"
              }
            },
            "required": [
              "ended"
            ],
            "type": "object"
          }
        },
        "required": [
          "data"
        ],
        "type": "object"
      },
      "PutCollectionsCollectionIdBoardConfigurationPayload": {
        "additionalProperties": false,
        "properties": {
          "backlog_status_ids": {
            "description": "The backlog status ids value.",
            "items": {
              "type": "integer"
            },
            "type": "array"
          },
          "card_fields": {
            "description": "The card fields value.",
            "items": {
              "additionalProperties": false,
              "properties": {
                "display_order": {
                  "description": "The display order value.",
                  "type": "integer"
                },
                "field_identifier": {
                  "description": "The field identifier value.",
                  "type": "string"
                },
                "field_type": {
                  "description": "The field type value.",
                  "type": "string"
                },
                "width": {
                  "description": "The width value.",
                  "type": "integer"
                }
              },
              "required": [
                "display_order",
                "field_identifier",
                "field_type",
                "width"
              ],
              "type": "object"
            },
            "type": "array"
          },
          "columns": {
            "description": "The columns value.",
            "items": {
              "additionalProperties": false,
              "properties": {
                "color": {
                  "description": "The color value.",
                  "type": "string"
                },
                "display_order": {
                  "description": "The display order value.",
                  "type": "integer"
                },
                "id": {
                  "description": "The id value.",
                  "nullable": true,
                  "type": "integer"
                },
                "name": {
                  "description": "The name value.",
                  "type": "string"
                },
                "status_ids": {
                  "description": "The status ids value.",
                  "items": {
                    "type": "integer"
                  },
                  "type": "array"
                },
                "wip_limit": {
                  "description": "The wip limit value.",
                  "nullable": true,
                  "type": "integer"
                }
              },
              "required": [
                "color",
                "display_order",
                "name",
                "status_ids"
              ],
              "type": "object"
            },
            "type": "array"
          },
          "completed_item_retention_days": {
            "description": "The completed item retention days value.",
            "nullable": true,
            "type": "integer"
          },
          "list_columns": {
            "description": "The list columns value.",
            "items": {
              "additionalProperties": false,
              "properties": {
                "display_order": {
                  "description": "The display order value.",
                  "type": "integer"
                },
                "field_identifier": {
                  "description": "The field identifier value.",
                  "type": "string"
                },
                "field_type": {
                  "description": "The field type value.",
                  "type": "string"
                },
                "width": {
                  "description": "The width value.",
                  "type": "integer"
                }
              },
              "required": [
                "display_order",
                "field_identifier",
                "field_type",
                "width"
              ],
              "type": "object"
            },
            "type": "array"
          },
          "roadmap_config": {
            "additionalProperties": false,
            "description": "The roadmap config value.",
            "nullable": true,
            "properties": {
              "dependency_link_type_id": {
                "description": "The dependency link type id value.",
                "nullable": true,
                "type": "integer"
              },
              "end_field_id": {
                "description": "The end field id value.",
                "type": "string"
              },
              "start_field_id": {
                "description": "The start field id value.",
                "type": "string"
              }
            },
            "required": [
              "end_field_id",
              "start_field_id"
            ],
            "type": "object"
          },
          "show_rightmost_column_last_50": {
            "description": "The show rightmost column last 50 value.",
            "type": "boolean"
          }
        },
        "required": [
          "columns",
          "show_rightmost_column_last_50"
        ],
        "type": "object"
      },
      "PutCollectionsCollectionIdBoardConfigurationResult": {
        "additionalProperties": false,
        "properties": {
          "data": {
            "additionalProperties": false,
            "properties": {
              "backlog_status_ids": {
                "description": "The backlog status ids value.",
                "items": {
                  "type": "integer"
                },
                "type": "array"
              },
              "card_fields": {
                "description": "The card fields value.",
                "items": {
                  "additionalProperties": false,
                  "properties": {
                    "display_order": {
                      "description": "The display order value.",
                      "type": "integer"
                    },
                    "field_identifier": {
                      "description": "The field identifier value.",
                      "type": "string"
                    },
                    "field_type": {
                      "description": "The field type value.",
                      "type": "string"
                    },
                    "width": {
                      "description": "The width value.",
                      "type": "integer"
                    }
                  },
                  "required": [
                    "display_order",
                    "field_identifier",
                    "field_type",
                    "width"
                  ],
                  "type": "object"
                },
                "type": "array"
              },
              "collection_id": {
                "description": "The collection id value.",
                "nullable": true,
                "type": "integer"
              },
              "columns": {
                "description": "The columns value.",
                "items": {
                  "additionalProperties": false,
                  "properties": {
                    "board_configuration_id": {
                      "description": "The board configuration id value.",
                      "type": "integer"
                    },
                    "color": {
                      "description": "The color value.",
                      "type": "string"
                    },
                    "created_at": {
                      "description": "The created at value.",
                      "format": "date-time",
                      "type": "string"
                    },
                    "display_order": {
                      "description": "The display order value.",
                      "type": "integer"
                    },
                    "id": {
                      "description": "The id value.",
                      "type": "integer"
                    },
                    "name": {
                      "description": "The name value.",
                      "type": "string"
                    },
                    "status_ids": {
                      "description": "The status ids value.",
                      "items": {
                        "type": "integer"
                      },
                      "type": "array"
                    },
                    "updated_at": {
                      "description": "The updated at value.",
                      "format": "date-time",
                      "type": "string"
                    },
                    "wip_limit": {
                      "description": "The wip limit value.",
                      "nullable": true,
                      "type": "integer"
                    }
                  },
                  "required": [
                    "board_configuration_id",
                    "color",
                    "created_at",
                    "display_order",
                    "id",
                    "name",
                    "updated_at"
                  ],
                  "type": "object"
                },
                "type": "array"
              },
              "completed_item_retention_days": {
                "description": "The completed item retention days value.",
                "nullable": true,
                "type": "integer"
              },
              "created_at": {
                "description": "The created at value.",
                "format": "date-time",
                "type": "string"
              },
              "id": {
                "description": "The id value.",
                "type": "integer"
              },
              "list_columns": {
                "description": "The list columns value.",
                "items": {
                  "additionalProperties": false,
                  "properties": {
                    "display_order": {
                      "description": "The display order value.",
                      "type": "integer"
                    },
                    "field_identifier": {
                      "description": "The field identifier value.",
                      "type": "string"
                    },
                    "field_type": {
                      "description": "The field type value.",
                      "type": "string"
                    },
                    "width": {
                      "description": "The width value.",
                      "type": "integer"
                    }
                  },
                  "required": [
                    "display_order",
                    "field_identifier",
                    "field_type",
                    "width"
                  ],
                  "type": "object"
                },
                "type": "array"
              },
              "roadmap_config": {
                "additionalProperties": false,
                "description": "The roadmap config value.",
                "nullable": true,
                "properties": {
                  "dependency_link_type_id": {
                    "description": "The dependency link type id value.",
                    "nullable": true,
                    "type": "integer"
                  },
                  "end_field_id": {
                    "description": "The end field id value.",
                    "type": "string"
                  },
                  "start_field_id": {
                    "description": "The start field id value.",
                    "type": "string"
                  }
                },
                "required": [
                  "end_field_id",
                  "start_field_id"
                ],
                "type": "object"
              },
              "show_rightmost_column_last_50": {
                "description": "The show rightmost column last 50 value.",
                "type": "boolean"
              },
              "updated_at": {
                "description": "The updated at value.",
                "format": "date-time",
                "type": "string"
              },
              "workspace_id": {
                "description": "The workspace id value.",
                "nullable": true,
                "type": "integer"
              }
            },
            "required": [
              "created_at",
              "id",
              "show_rightmost_column_last_50",
              "updated_at"
            ],
            "type": "object"
          }
        },
        "required": [
          "data"
        ],
        "type": "object"
      },
      "PutItemsItemIdLabelsPayload": {
        "additionalProperties": false,
        "properties": {
          "label_ids": {
            "description": "The label ids value.",
            "items": {
              "type": "integer"
            },
            "type": "array"
          }
        },
        "required": [
          "label_ids"
        ],
        "type": "object"
      },
      "PutItemsItemIdLabelsResult": {
        "additionalProperties": false,
        "properties": {
          "data": {
            "items": {
              "additionalProperties": false,
              "properties": {
                "color": {
                  "description": "The color value.",
                  "type": "string"
                },
                "created_at": {
                  "description": "The created at value.",
                  "type": "string"
                },
                "id": {
                  "description": "The id value.",
                  "type": "integer"
                },
                "name": {
                  "description": "The name value.",
                  "type": "string"
                },
                "updated_at": {
                  "description": "The updated at value.",
                  "type": "string"
                }
              },
              "required": [
                "color",
                "created_at",
                "id",
                "name",
                "updated_at"
              ],
              "type": "object"
            },
            "type": "array"
          }
        },
        "required": [
          "data"
        ],
        "type": "object"
      },
      "PutItemsItemIdWatchPayload": {
        "additionalProperties": false,
        "properties": {
          "reason": {
            "description": "The reason value.",
            "type": "string"
          }
        },
        "required": [
          "reason"
        ],
        "type": "object"
      },
      "PutItemsItemIdWatchResult": {
        "additionalProperties": false,
        "properties": {
          "data": {
            "additionalProperties": false,
            "properties": {
              "item_id": {
                "description": "The item id value.",
                "type": "integer"
              },
              "watching": {
                "description": "The watching value.",
                "type": "boolean"
              }
            },
            "required": [
              "item_id",
              "watching"
            ],
            "type": "object"
          }
        },
        "required": [
          "data"
        ],
        "type": "object"
      },
      "PutTimeProjectCategoriesOrderPayload": {
        "additionalProperties": false,
        "properties": {
          "items": {
            "description": "The items value.",
            "items": {
              "additionalProperties": false,
              "properties": {
                "display_order": {
                  "description": "The display order value.",
                  "type": "integer"
                },
                "id": {
                  "description": "The id value.",
                  "type": "integer"
                }
              },
              "required": [
                "display_order",
                "id"
              ],
              "type": "object"
            },
            "type": "array"
          }
        },
        "required": [
          "items"
        ],
        "type": "object"
      },
      "PutTimeProjectCategoriesOrderResult": {
        "additionalProperties": false,
        "properties": {
          "data": {
            "items": {
              "additionalProperties": false,
              "properties": {
                "color": {
                  "description": "The color value.",
                  "type": "string"
                },
                "created_at": {
                  "description": "The created at value.",
                  "type": "string"
                },
                "description": {
                  "description": "The description value.",
                  "type": "string"
                },
                "display_order": {
                  "description": "The display order value.",
                  "type": "integer"
                },
                "id": {
                  "description": "The id value.",
                  "type": "integer"
                },
                "name": {
                  "description": "The name value.",
                  "type": "string"
                },
                "updated_at": {
                  "description": "The updated at value.",
                  "type": "string"
                }
              },
              "required": [
                "color",
                "created_at",
                "description",
                "display_order",
                "id",
                "name",
                "updated_at"
              ],
              "type": "object"
            },
            "type": "array"
          }
        },
        "required": [
          "data"
        ],
        "type": "object"
      },
      "PutWorkflowsWorkflowIdTransitionsPayload": {
        "additionalProperties": false,
        "properties": {
          "transitions": {
            "description": "The transitions value.",
            "items": {
              "additionalProperties": false,
              "properties": {
                "created_at": {
                  "description": "The created at value.",
                  "format": "date-time",
                  "type": "string"
                },
                "display_order": {
                  "description": "The display order value.",
                  "type": "integer"
                },
                "from_all_statuses": {
                  "description": "The from all statuses value.",
                  "type": "boolean"
                },
                "from_status_id": {
                  "description": "The from status id value.",
                  "nullable": true,
                  "type": "integer"
                },
                "from_status_name": {
                  "description": "The from status name value.",
                  "type": "string"
                },
                "id": {
                  "description": "The id value.",
                  "type": "integer"
                },
                "source_handle": {
                  "description": "The source handle value.",
                  "type": "string"
                },
                "target_handle": {
                  "description": "The target handle value.",
                  "type": "string"
                },
                "to_status_id": {
                  "description": "The to status id value.",
                  "type": "integer"
                },
                "to_status_name": {
                  "description": "The to status name value.",
                  "type": "string"
                },
                "workflow_id": {
                  "description": "The workflow id value.",
                  "type": "integer"
                },
                "workflow_name": {
                  "description": "The workflow name value.",
                  "type": "string"
                }
              },
              "required": [
                "created_at",
                "display_order",
                "from_all_statuses",
                "id",
                "to_status_id",
                "workflow_id"
              ],
              "type": "object"
            },
            "type": "array"
          }
        },
        "required": [
          "transitions"
        ],
        "type": "object"
      },
      "PutWorkflowsWorkflowIdTransitionsResult": {
        "additionalProperties": false,
        "properties": {
          "data": {
            "items": {
              "additionalProperties": false,
              "properties": {
                "from": {
                  "additionalProperties": false,
                  "description": "The from value.",
                  "nullable": true,
                  "properties": {
                    "builtin_key": {
                      "description": "The builtin key value.",
                      "nullable": true,
                      "type": "string"
                    },
                    "category_builtin_key": {
                      "description": "The category builtin key value.",
                      "nullable": true,
                      "type": "string"
                    },
                    "category_color": {
                      "description": "The category color value.",
                      "type": "string"
                    },
                    "category_name": {
                      "description": "The category name value.",
                      "type": "string"
                    },
                    "id": {
                      "description": "The id value.",
                      "type": "integer"
                    },
                    "name": {
                      "description": "The name value.",
                      "type": "string"
                    }
                  },
                  "required": [
                    "category_color",
                    "category_name",
                    "id",
                    "name"
                  ],
                  "type": "object"
                },
                "from_all_statuses": {
                  "description": "The from all statuses value.",
                  "type": "boolean"
                },
                "id": {
                  "description": "The id value.",
                  "type": "integer"
                },
                "to": {
                  "additionalProperties": false,
                  "description": "The to value.",
                  "properties": {
                    "builtin_key": {
                      "description": "The builtin key value.",
                      "nullable": true,
                      "type": "string"
                    },
                    "category_builtin_key": {
                      "description": "The category builtin key value.",
                      "nullable": true,
                      "type": "string"
                    },
                    "category_color": {
                      "description": "The category color value.",
                      "type": "string"
                    },
                    "category_name": {
                      "description": "The category name value.",
                      "type": "string"
                    },
                    "id": {
                      "description": "The id value.",
                      "type": "integer"
                    },
                    "name": {
                      "description": "The name value.",
                      "type": "string"
                    }
                  },
                  "required": [
                    "category_color",
                    "category_name",
                    "id",
                    "name"
                  ],
                  "type": "object"
                }
              },
              "required": [
                "from_all_statuses",
                "id",
                "to"
              ],
              "type": "object"
            },
            "type": "array"
          }
        },
        "required": [
          "data"
        ],
        "type": "object"
      },
      "PutWorkspacesWorkspaceIdBoardConfigurationPayload": {
        "additionalProperties": false,
        "properties": {
          "backlog_status_ids": {
            "description": "The backlog status ids value.",
            "items": {
              "type": "integer"
            },
            "type": "array"
          },
          "card_fields": {
            "description": "The card fields value.",
            "items": {
              "additionalProperties": false,
              "properties": {
                "display_order": {
                  "description": "The display order value.",
                  "type": "integer"
                },
                "field_identifier": {
                  "description": "The field identifier value.",
                  "type": "string"
                },
                "field_type": {
                  "description": "The field type value.",
                  "type": "string"
                },
                "width": {
                  "description": "The width value.",
                  "type": "integer"
                }
              },
              "required": [
                "display_order",
                "field_identifier",
                "field_type",
                "width"
              ],
              "type": "object"
            },
            "type": "array"
          },
          "columns": {
            "description": "The columns value.",
            "items": {
              "additionalProperties": false,
              "properties": {
                "color": {
                  "description": "The color value.",
                  "type": "string"
                },
                "display_order": {
                  "description": "The display order value.",
                  "type": "integer"
                },
                "id": {
                  "description": "The id value.",
                  "nullable": true,
                  "type": "integer"
                },
                "name": {
                  "description": "The name value.",
                  "type": "string"
                },
                "status_ids": {
                  "description": "The status ids value.",
                  "items": {
                    "type": "integer"
                  },
                  "type": "array"
                },
                "wip_limit": {
                  "description": "The wip limit value.",
                  "nullable": true,
                  "type": "integer"
                }
              },
              "required": [
                "color",
                "display_order",
                "name",
                "status_ids"
              ],
              "type": "object"
            },
            "type": "array"
          },
          "completed_item_retention_days": {
            "description": "The completed item retention days value.",
            "nullable": true,
            "type": "integer"
          },
          "list_columns": {
            "description": "The list columns value.",
            "items": {
              "additionalProperties": false,
              "properties": {
                "display_order": {
                  "description": "The display order value.",
                  "type": "integer"
                },
                "field_identifier": {
                  "description": "The field identifier value.",
                  "type": "string"
                },
                "field_type": {
                  "description": "The field type value.",
                  "type": "string"
                },
                "width": {
                  "description": "The width value.",
                  "type": "integer"
                }
              },
              "required": [
                "display_order",
                "field_identifier",
                "field_type",
                "width"
              ],
              "type": "object"
            },
            "type": "array"
          },
          "roadmap_config": {
            "additionalProperties": false,
            "description": "The roadmap config value.",
            "nullable": true,
            "properties": {
              "dependency_link_type_id": {
                "description": "The dependency link type id value.",
                "nullable": true,
                "type": "integer"
              },
              "end_field_id": {
                "description": "The end field id value.",
                "type": "string"
              },
              "start_field_id": {
                "description": "The start field id value.",
                "type": "string"
              }
            },
            "required": [
              "end_field_id",
              "start_field_id"
            ],
            "type": "object"
          },
          "show_rightmost_column_last_50": {
            "description": "The show rightmost column last 50 value.",
            "type": "boolean"
          }
        },
        "required": [
          "columns",
          "show_rightmost_column_last_50"
        ],
        "type": "object"
      },
      "PutWorkspacesWorkspaceIdBoardConfigurationResult": {
        "additionalProperties": false,
        "properties": {
          "data": {
            "additionalProperties": false,
            "properties": {
              "backlog_status_ids": {
                "description": "The backlog status ids value.",
                "items": {
                  "type": "integer"
                },
                "type": "array"
              },
              "card_fields": {
                "description": "The card fields value.",
                "items": {
                  "additionalProperties": false,
                  "properties": {
                    "display_order": {
                      "description": "The display order value.",
                      "type": "integer"
                    },
                    "field_identifier": {
                      "description": "The field identifier value.",
                      "type": "string"
                    },
                    "field_type": {
                      "description": "The field type value.",
                      "type": "string"
                    },
                    "width": {
                      "description": "The width value.",
                      "type": "integer"
                    }
                  },
                  "required": [
                    "display_order",
                    "field_identifier",
                    "field_type",
                    "width"
                  ],
                  "type": "object"
                },
                "type": "array"
              },
              "collection_id": {
                "description": "The collection id value.",
                "nullable": true,
                "type": "integer"
              },
              "columns": {
                "description": "The columns value.",
                "items": {
                  "additionalProperties": false,
                  "properties": {
                    "board_configuration_id": {
                      "description": "The board configuration id value.",
                      "type": "integer"
                    },
                    "color": {
                      "description": "The color value.",
                      "type": "string"
                    },
                    "created_at": {
                      "description": "The created at value.",
                      "format": "date-time",
                      "type": "string"
                    },
                    "display_order": {
                      "description": "The display order value.",
                      "type": "integer"
                    },
                    "id": {
                      "description": "The id value.",
                      "type": "integer"
                    },
                    "name": {
                      "description": "The name value.",
                      "type": "string"
                    },
                    "status_ids": {
                      "description": "The status ids value.",
                      "items": {
                        "type": "integer"
                      },
                      "type": "array"
                    },
                    "updated_at": {
                      "description": "The updated at value.",
                      "format": "date-time",
                      "type": "string"
                    },
                    "wip_limit": {
                      "description": "The wip limit value.",
                      "nullable": true,
                      "type": "integer"
                    }
                  },
                  "required": [
                    "board_configuration_id",
                    "color",
                    "created_at",
                    "display_order",
                    "id",
                    "name",
                    "updated_at"
                  ],
                  "type": "object"
                },
                "type": "array"
              },
              "completed_item_retention_days": {
                "description": "The completed item retention days value.",
                "nullable": true,
                "type": "integer"
              },
              "created_at": {
                "description": "The created at value.",
                "format": "date-time",
                "type": "string"
              },
              "id": {
                "description": "The id value.",
                "type": "integer"
              },
              "list_columns": {
                "description": "The list columns value.",
                "items": {
                  "additionalProperties": false,
                  "properties": {
                    "display_order": {
                      "description": "The display order value.",
                      "type": "integer"
                    },
                    "field_identifier": {
                      "description": "The field identifier value.",
                      "type": "string"
                    },
                    "field_type": {
                      "description": "The field type value.",
                      "type": "string"
                    },
                    "width": {
                      "description": "The width value.",
                      "type": "integer"
                    }
                  },
                  "required": [
                    "display_order",
                    "field_identifier",
                    "field_type",
                    "width"
                  ],
                  "type": "object"
                },
                "type": "array"
              },
              "roadmap_config": {
                "additionalProperties": false,
                "description": "The roadmap config value.",
                "nullable": true,
                "properties": {
                  "dependency_link_type_id": {
                    "description": "The dependency link type id value.",
                    "nullable": true,
                    "type": "integer"
                  },
                  "end_field_id": {
                    "description": "The end field id value.",
                    "type": "string"
                  },
                  "start_field_id": {
                    "description": "The start field id value.",
                    "type": "string"
                  }
                },
                "required": [
                  "end_field_id",
                  "start_field_id"
                ],
                "type": "object"
              },
              "show_rightmost_column_last_50": {
                "description": "The show rightmost column last 50 value.",
                "type": "boolean"
              },
              "updated_at": {
                "description": "The updated at value.",
                "format": "date-time",
                "type": "string"
              },
              "workspace_id": {
                "description": "The workspace id value.",
                "nullable": true,
                "type": "integer"
              }
            },
            "required": [
              "created_at",
              "id",
              "show_rightmost_column_last_50",
              "updated_at"
            ],
            "type": "object"
          }
        },
        "required": [
          "data"
        ],
        "type": "object"
      },
      "PutWorkspacesWorkspaceIdPagesPageIdLabelsPayload": {
        "additionalProperties": false,
        "properties": {
          "label_ids": {
            "description": "The label ids value.",
            "items": {
              "type": "integer"
            },
            "type": "array"
          }
        },
        "required": [
          "label_ids"
        ],
        "type": "object"
      },
      "PutWorkspacesWorkspaceIdPagesPageIdLabelsResult": {
        "additionalProperties": false,
        "properties": {
          "data": {
            "items": {
              "additionalProperties": false,
              "properties": {
                "color": {
                  "description": "The color value.",
                  "type": "string"
                },
                "created_at": {
                  "description": "The created at value.",
                  "format": "date-time",
                  "type": "string"
                },
                "id": {
                  "description": "The id value.",
                  "type": "integer"
                },
                "name": {
                  "description": "The name value.",
                  "type": "string"
                },
                "updated_at": {
                  "description": "The updated at value.",
                  "format": "date-time",
                  "type": "string"
                },
                "workspace_id": {
                  "description": "The workspace id value.",
                  "type": "integer"
                }
              },
              "required": [
                "color",
                "created_at",
                "id",
                "name",
                "updated_at",
                "workspace_id"
              ],
              "type": "object"
            },
            "type": "array"
          }
        },
        "required": [
          "data"
        ],
        "type": "object"
      },
      "RoadmapHierarchyDate": {
        "additionalProperties": false,
        "properties": {
          "end_date": {
            "description": "Planned end date.",
            "format": "date",
            "type": "string"
          },
          "id": {
            "description": "Item identifier.",
            "minimum": 1,
            "type": "integer"
          },
          "parent_id": {
            "description": "Parent item, or null for a root.",
            "minimum": 1,
            "nullable": true,
            "type": "integer"
          },
          "start_date": {
            "description": "Planned start date.",
            "format": "date",
            "type": "string"
          },
          "workspace_id": {
            "description": "Owning workspace.",
            "minimum": 1,
            "type": "integer"
          }
        },
        "required": [
          "id",
          "workspace_id",
          "parent_id"
        ],
        "type": "object"
      },
      "RoadmapHierarchyDates": {
        "additionalProperties": false,
        "properties": {
          "items": {
            "description": "Distinct roots and descendants ordered by item ID.",
            "items": {
              "$ref": "#/components/schemas/RoadmapHierarchyDate"
            },
            "type": "array"
          },
          "truncated": {
            "description": "Whether the 5,000-item result cap was reached.",
            "type": "boolean"
          }
        },
        "required": [
          "items",
          "truncated"
        ],
        "type": "object"
      },
      "RoadmapHierarchyDatesDocument": {
        "additionalProperties": false,
        "properties": {
          "data": {
            "$ref": "#/components/schemas/RoadmapHierarchyDates"
          }
        },
        "required": [
          "data"
        ],
        "type": "object"
      },
      "RoadmapHierarchyDatesRequest": {
        "additionalProperties": false,
        "properties": {
          "root_ids": {
            "description": "Visible hierarchy roots to expand. Omission or an empty array returns an empty result.",
            "items": {
              "minimum": 1,
              "type": "integer"
            },
            "maxItems": 500,
            "type": "array",
            "uniqueItems": true
          }
        },
        "type": "object"
      },
      "StatusChangeInfo": {
        "additionalProperties": false,
        "properties": {
          "id": {
            "description": "Compatible status identifier.",
            "minimum": 1,
            "type": "integer"
          },
          "name": {
            "description": "Compatible status display name.",
            "type": "string"
          }
        },
        "required": [
          "id",
          "name"
        ],
        "type": "object"
      },
      "TestRun": {
        "additionalProperties": false,
        "properties": {
          "assignee_avatar": {
            "description": "Assignee avatar URL.",
            "readOnly": true,
            "type": "string"
          },
          "assignee_email": {
            "description": "Assignee email address.",
            "format": "email",
            "readOnly": true,
            "type": "string"
          },
          "assignee_id": {
            "description": "User assigned to execute the run.",
            "minimum": 1,
            "nullable": true,
            "type": "integer"
          },
          "assignee_name": {
            "description": "Assignee display name.",
            "readOnly": true,
            "type": "string"
          },
          "created_at": {
            "description": "Creation timestamp.",
            "format": "date-time",
            "readOnly": true,
            "type": "string"
          },
          "ended_at": {
            "description": "Execution end timestamp, or null while active.",
            "format": "date-time",
            "nullable": true,
            "readOnly": true,
            "type": "string"
          },
          "id": {
            "description": "Test-run identifier.",
            "minimum": 1,
            "readOnly": true,
            "type": "integer"
          },
          "name": {
            "description": "Test-run display name.",
            "minLength": 1,
            "type": "string"
          },
          "plan_id": {
            "description": "Test plan executed by this run.",
            "minimum": 1,
            "type": "integer"
          },
          "started_at": {
            "description": "Execution start timestamp.",
            "format": "date-time",
            "readOnly": true,
            "type": "string"
          },
          "template_id": {
            "description": "Template used to create the run.",
            "minimum": 1,
            "type": "integer"
          },
          "workspace_id": {
            "description": "Owning workspace identifier.",
            "minimum": 1,
            "readOnly": true,
            "type": "integer"
          }
        },
        "required": [
          "id",
          "workspace_id",
          "plan_id",
          "name",
          "started_at",
          "ended_at",
          "created_at"
        ],
        "type": "object"
      },
      "TestRunArrayDocument": {
        "additionalProperties": false,
        "properties": {
          "data": {
            "items": {
              "$ref": "#/components/schemas/TestRun"
            },
            "type": "array"
          }
        },
        "required": [
          "data"
        ],
        "type": "object"
      },
      "TestRunCreateRequest": {
        "additionalProperties": false,
        "properties": {
          "assignee_id": {
            "description": "User assigned to execute the run.",
            "minimum": 1,
            "nullable": true,
            "type": "integer"
          },
          "name": {
            "description": "Test-run display name.",
            "minLength": 1,
            "type": "string"
          },
          "plan_id": {
            "description": "Test plan to execute.",
            "minimum": 1,
            "type": "integer"
          },
          "template_id": {
            "description": "Template that supplied defaults.",
            "minimum": 1,
            "type": "integer"
          }
        },
        "required": [
          "plan_id",
          "name"
        ],
        "type": "object"
      },
      "TestRunDocument": {
        "additionalProperties": false,
        "properties": {
          "data": {
            "$ref": "#/components/schemas/TestRun"
          }
        },
        "required": [
          "data"
        ],
        "type": "object"
      },
      "TestRunPageDocument": {
        "additionalProperties": false,
        "properties": {
          "data": {
            "items": {
              "$ref": "#/components/schemas/TestRun"
            },
            "type": "array"
          },
          "pagination": {
            "$ref": "#/components/schemas/Pagination"
          }
        },
        "required": [
          "data",
          "pagination"
        ],
        "type": "object"
      },
      "TestRunPatchRequest": {
        "additionalProperties": false,
        "minProperties": 1,
        "properties": {
          "assignee_id": {
            "description": "Replacement assignee; null clears the assignment.",
            "minimum": 1,
            "nullable": true,
            "type": "integer"
          },
          "name": {
            "description": "Replacement test-run name.",
            "minLength": 1,
            "nullable": true,
            "type": "string"
          }
        },
        "type": "object"
      },
      "TestRunTemplate": {
        "additionalProperties": false,
        "properties": {
          "created_at": {
            "description": "Creation timestamp.",
            "format": "date-time",
            "readOnly": true,
            "type": "string"
          },
          "description": {
            "description": "Template description.",
            "type": "string"
          },
          "id": {
            "description": "Test-run template identifier.",
            "minimum": 1,
            "readOnly": true,
            "type": "integer"
          },
          "name": {
            "description": "Template display name.",
            "minLength": 1,
            "type": "string"
          },
          "plan_id": {
            "description": "Test plan executed by this template.",
            "minimum": 1,
            "type": "integer"
          },
          "plan_name": {
            "description": "Referenced test-plan name.",
            "readOnly": true,
            "type": "string"
          },
          "updated_at": {
            "description": "Last update timestamp.",
            "format": "date-time",
            "readOnly": true,
            "type": "string"
          },
          "workspace_id": {
            "description": "Owning workspace identifier.",
            "minimum": 1,
            "readOnly": true,
            "type": "integer"
          }
        },
        "required": [
          "id",
          "workspace_id",
          "plan_id",
          "name",
          "description",
          "created_at",
          "updated_at"
        ],
        "type": "object"
      },
      "TestRunTemplateCreateRequest": {
        "additionalProperties": false,
        "properties": {
          "description": {
            "description": "Template description.",
            "type": "string"
          },
          "name": {
            "description": "Template display name.",
            "minLength": 1,
            "type": "string"
          },
          "plan_id": {
            "description": "Test plan executed by this template.",
            "minimum": 1,
            "type": "integer"
          }
        },
        "required": [
          "plan_id",
          "name"
        ],
        "type": "object"
      },
      "TestRunTemplateDocument": {
        "additionalProperties": false,
        "properties": {
          "data": {
            "$ref": "#/components/schemas/TestRunTemplate"
          }
        },
        "required": [
          "data"
        ],
        "type": "object"
      },
      "TestRunTemplatePageDocument": {
        "additionalProperties": false,
        "properties": {
          "data": {
            "items": {
              "$ref": "#/components/schemas/TestRunTemplate"
            },
            "type": "array"
          },
          "pagination": {
            "$ref": "#/components/schemas/Pagination"
          }
        },
        "required": [
          "data",
          "pagination"
        ],
        "type": "object"
      },
      "TestRunTemplatePatchRequest": {
        "additionalProperties": false,
        "minProperties": 1,
        "properties": {
          "description": {
            "description": "Replacement description.",
            "nullable": true,
            "type": "string"
          },
          "name": {
            "description": "Replacement display name.",
            "minLength": 1,
            "nullable": true,
            "type": "string"
          },
          "plan_id": {
            "description": "Replacement test plan.",
            "minimum": 1,
            "nullable": true,
            "type": "integer"
          }
        },
        "type": "object"
      },
      "User": {
        "properties": {
          "agent_presence": {
            "type": "string"
          },
          "avatar_url": {
            "nullable": true,
            "type": "string"
          },
          "created_at": {
            "format": "date-time",
            "type": "string"
          },
          "email": {
            "type": "string"
          },
          "first_name": {
            "type": "string"
          },
          "full_name": {
            "type": "string"
          },
          "id": {
            "type": "integer"
          },
          "is_active": {
            "type": "boolean"
          },
          "is_agent": {
            "type": "boolean"
          },
          "language": {
            "type": "string"
          },
          "last_name": {
            "type": "string"
          },
          "timezone": {
            "type": "string"
          },
          "username": {
            "type": "string"
          }
        },
        "required": [
          "id",
          "email",
          "username",
          "first_name",
          "last_name",
          "full_name",
          "is_active",
          "is_agent",
          "agent_presence",
          "avatar_url",
          "timezone",
          "language",
          "created_at"
        ],
        "type": "object"
      },
      "UserDocument": {
        "properties": {
          "data": {
            "$ref": "#/components/schemas/User"
          }
        },
        "required": [
          "data"
        ],
        "type": "object"
      }
    },
    "securitySchemes": {
      "BearerAuth": {
        "bearerFormat": "crw_*",
        "description": "Use a Windshift API token. Each operation lists its enforced token scopes in x-required-scopes; session clients use the /api/v2 mount and do not send bearer credentials. The authenticated /api/api-tokens/scope-catalog endpoint returns every grantable scope with picker labels and descriptions.",
        "scheme": "bearer",
        "type": "http"
      }
    }
  },
  "info": {
    "description": "Canonical API v2. Browser clients use the session-authenticated /api/v2 mount; non-browser clients use this bearer-authenticated mount.",
    "title": "Windshift API v2",
    "version": "2.0.0"
  },
  "openapi": "3.0.3",
  "paths": {
    "/action-templates": {
      "get": {
        "description": "List action templates. Results include only resources visible to the authenticated caller; collections use their documented stable order and bounds.",
        "operationId": "getActionTemplates",
        "parameters": [],
        "responses": {
          "200": {
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/GetActionTemplatesResult"
                }
              }
            },
            "description": "List action templates response."
          },
          "401": {
            "$ref": "#/components/responses/AuthenticationError"
          },
          "403": {
            "$ref": "#/components/responses/PermissionError"
          },
          "429": {
            "$ref": "#/components/responses/RateLimitError"
          },
          "500": {
            "$ref": "#/components/responses/InternalError"
          }
        },
        "security": [
          {
            "BearerAuth": []
          }
        ],
        "summary": "List action templates",
        "tags": [
          "Automation"
        ],
        "x-required-scopes": [
          "actions:read"
        ]
      }
    },
    "/agent-runs/{run_id}": {
      "get": {
        "description": "Get agent run. Results include only resources visible to the authenticated caller; collections use their documented stable order and bounds.",
        "operationId": "getAgentRunsRunId",
        "parameters": [
          {
            "description": "The run identifier.",
            "in": "path",
            "name": "run_id",
            "required": true,
            "schema": {
              "minimum": 1,
              "type": "integer"
            }
          }
        ],
        "responses": {
          "200": {
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/GetAgentRunsRunIdResult"
                }
              }
            },
            "description": "Get agent run response."
          },
          "401": {
            "$ref": "#/components/responses/AuthenticationError"
          },
          "403": {
            "$ref": "#/components/responses/PermissionError"
          },
          "404": {
            "$ref": "#/components/responses/NotFoundError"
          },
          "429": {
            "$ref": "#/components/responses/RateLimitError"
          },
          "500": {
            "$ref": "#/components/responses/InternalError"
          }
        },
        "security": [
          {
            "BearerAuth": []
          }
        ],
        "summary": "Get agent run",
        "tags": [
          "Agents"
        ],
        "x-required-scopes": [
          "items:read"
        ]
      }
    },
    "/agent-runs/{run_id}/cancel": {
      "post": {
        "description": "Cancel agent run. The server validates resource ownership and command preconditions before persisting changes. Unknown JSON fields are rejected when the operation accepts a body.",
        "operationId": "postAgentRunsRunIdCancel",
        "parameters": [
          {
            "description": "The run identifier.",
            "in": "path",
            "name": "run_id",
            "required": true,
            "schema": {
              "minimum": 1,
              "type": "integer"
            }
          },
          {
            "description": "Whether to force the persisted run into the canceled state when cooperative cancellation cannot reach the worker.",
            "in": "query",
            "name": "force",
            "required": false,
            "schema": {
              "default": false,
              "type": "boolean"
            }
          }
        ],
        "responses": {
          "200": {
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/PostAgentRunsRunIdCancelResult"
                }
              }
            },
            "description": "Cancel agent run response."
          },
          "401": {
            "$ref": "#/components/responses/AuthenticationError"
          },
          "403": {
            "$ref": "#/components/responses/PermissionError"
          },
          "404": {
            "$ref": "#/components/responses/NotFoundError"
          },
          "429": {
            "$ref": "#/components/responses/RateLimitError"
          },
          "500": {
            "$ref": "#/components/responses/InternalError"
          }
        },
        "security": [
          {
            "BearerAuth": []
          }
        ],
        "summary": "Cancel agent run",
        "tags": [
          "Agents"
        ],
        "x-required-scopes": [
          "items:write"
        ]
      }
    },
    "/agent-runs/{run_id}/events": {
      "get": {
        "description": "Returns up to 200 visible run events after an operation-bound opaque cursor. Events use stable ascending ID order, next_cursor resumes exclusively after the final returned event, and partial pages are never returned on failure.",
        "operationId": "getAgentRunsRunIdEvents",
        "parameters": [
          {
            "description": "The run identifier.",
            "in": "path",
            "name": "run_id",
            "required": true,
            "schema": {
              "minimum": 1,
              "type": "integer"
            }
          },
          {
            "description": "Opaque continuation cursor returned by the preceding response. Cursors are operation-specific and cannot be combined with removed timestamp or ID boundaries.",
            "in": "query",
            "name": "cursor",
            "required": false,
            "schema": {
              "minLength": 1,
              "type": "string"
            }
          },
          {
            "description": "Maximum number of resources to return.",
            "in": "query",
            "name": "page_size",
            "required": false,
            "schema": {
              "default": 200,
              "maximum": 200,
              "minimum": 1,
              "type": "integer"
            }
          }
        ],
        "responses": {
          "200": {
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/GetAgentRunsRunIdEventsResult"
                }
              }
            },
            "description": "List agent run events response."
          },
          "401": {
            "$ref": "#/components/responses/AuthenticationError"
          },
          "403": {
            "$ref": "#/components/responses/PermissionError"
          },
          "404": {
            "$ref": "#/components/responses/NotFoundError"
          },
          "429": {
            "$ref": "#/components/responses/RateLimitError"
          },
          "500": {
            "$ref": "#/components/responses/InternalError"
          }
        },
        "security": [
          {
            "BearerAuth": []
          }
        ],
        "summary": "List agent run events",
        "tags": [
          "Agents"
        ],
        "x-required-scopes": [
          "items:read"
        ]
      }
    },
    "/agent-runs/{run_id}/usage": {
      "get": {
        "description": "Get agent run usage. Results include only resources visible to the authenticated caller; collections use their documented stable order and bounds.",
        "operationId": "getAgentRunsRunIdUsage",
        "parameters": [
          {
            "description": "The run identifier.",
            "in": "path",
            "name": "run_id",
            "required": true,
            "schema": {
              "minimum": 1,
              "type": "integer"
            }
          }
        ],
        "responses": {
          "200": {
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/GetAgentRunsRunIdUsageResult"
                }
              }
            },
            "description": "Get agent run usage response."
          },
          "401": {
            "$ref": "#/components/responses/AuthenticationError"
          },
          "403": {
            "$ref": "#/components/responses/PermissionError"
          },
          "404": {
            "$ref": "#/components/responses/NotFoundError"
          },
          "429": {
            "$ref": "#/components/responses/RateLimitError"
          },
          "500": {
            "$ref": "#/components/responses/InternalError"
          }
        },
        "security": [
          {
            "BearerAuth": []
          }
        ],
        "summary": "Get agent run usage",
        "tags": [
          "Agents"
        ],
        "x-required-scopes": [
          "items:read"
        ]
      }
    },
    "/approval-sets": {
      "get": {
        "description": "List approval sets. Results include only resources visible to the authenticated caller; collections use their documented stable order and bounds.",
        "operationId": "getApprovalSets",
        "parameters": [
          {
            "description": "One-based page number.",
            "in": "query",
            "name": "page",
            "required": false,
            "schema": {
              "default": 1,
              "minimum": 1,
              "type": "integer"
            }
          },
          {
            "description": "Maximum number of resources to return.",
            "in": "query",
            "name": "page_size",
            "required": false,
            "schema": {
              "default": 50,
              "maximum": 100,
              "minimum": 1,
              "type": "integer"
            }
          },
          {
            "description": "Restricts results to one workflow.",
            "in": "query",
            "name": "workflow_id",
            "required": false,
            "schema": {
              "minimum": 1,
              "type": "integer"
            }
          }
        ],
        "responses": {
          "200": {
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/GetApprovalSetsResult"
                }
              }
            },
            "description": "List approval sets response."
          },
          "401": {
            "$ref": "#/components/responses/AuthenticationError"
          },
          "403": {
            "$ref": "#/components/responses/PermissionError"
          },
          "429": {
            "$ref": "#/components/responses/RateLimitError"
          },
          "500": {
            "$ref": "#/components/responses/InternalError"
          }
        },
        "security": [
          {
            "BearerAuth": []
          }
        ],
        "summary": "List approval sets",
        "tags": [
          "Governance"
        ],
        "x-required-scopes": [
          "workflows:read"
        ]
      },
      "post": {
        "description": "Create approval set. The server validates resource ownership and command preconditions before persisting changes. Unknown JSON fields are rejected when the operation accepts a body.",
        "operationId": "postApprovalSets",
        "parameters": [],
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/PostApprovalSetsPayload"
              }
            }
          },
          "required": true
        },
        "responses": {
          "201": {
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/PostApprovalSetsResult"
                }
              }
            },
            "description": "Create approval set response."
          },
          "400": {
            "$ref": "#/components/responses/InvalidRequestError"
          },
          "401": {
            "$ref": "#/components/responses/AuthenticationError"
          },
          "403": {
            "$ref": "#/components/responses/PermissionError"
          },
          "413": {
            "$ref": "#/components/responses/PayloadTooLargeError"
          },
          "415": {
            "$ref": "#/components/responses/UnsupportedMediaTypeError"
          },
          "429": {
            "$ref": "#/components/responses/RateLimitError"
          },
          "500": {
            "$ref": "#/components/responses/InternalError"
          }
        },
        "security": [
          {
            "BearerAuth": []
          }
        ],
        "summary": "Create approval set",
        "tags": [
          "Governance"
        ],
        "x-required-scopes": [
          "workflows:write"
        ]
      }
    },
    "/approval-sets/{approval_set_id}": {
      "delete": {
        "description": "Delete approval set. The server verifies resource ownership and deletion preconditions before removing the resource.",
        "operationId": "deleteApprovalSetsApprovalSetId",
        "parameters": [
          {
            "description": "The approval set identifier.",
            "in": "path",
            "name": "approval_set_id",
            "required": true,
            "schema": {
              "minimum": 1,
              "type": "integer"
            }
          }
        ],
        "responses": {
          "204": {
            "description": "Request completed successfully with no response body."
          },
          "401": {
            "$ref": "#/components/responses/AuthenticationError"
          },
          "403": {
            "$ref": "#/components/responses/PermissionError"
          },
          "404": {
            "$ref": "#/components/responses/NotFoundError"
          },
          "429": {
            "$ref": "#/components/responses/RateLimitError"
          },
          "500": {
            "$ref": "#/components/responses/InternalError"
          }
        },
        "security": [
          {
            "BearerAuth": []
          }
        ],
        "summary": "Delete approval set",
        "tags": [
          "Governance"
        ],
        "x-required-scopes": [
          "workflows:write"
        ]
      },
      "get": {
        "description": "Get approval set. Results include only resources visible to the authenticated caller; collections use their documented stable order and bounds.",
        "operationId": "getApprovalSetsApprovalSetId",
        "parameters": [
          {
            "description": "The approval set identifier.",
            "in": "path",
            "name": "approval_set_id",
            "required": true,
            "schema": {
              "minimum": 1,
              "type": "integer"
            }
          }
        ],
        "responses": {
          "200": {
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/GetApprovalSetsApprovalSetIdResult"
                }
              }
            },
            "description": "Get approval set response."
          },
          "401": {
            "$ref": "#/components/responses/AuthenticationError"
          },
          "403": {
            "$ref": "#/components/responses/PermissionError"
          },
          "404": {
            "$ref": "#/components/responses/NotFoundError"
          },
          "429": {
            "$ref": "#/components/responses/RateLimitError"
          },
          "500": {
            "$ref": "#/components/responses/InternalError"
          }
        },
        "security": [
          {
            "BearerAuth": []
          }
        ],
        "summary": "Get approval set",
        "tags": [
          "Governance"
        ],
        "x-required-scopes": [
          "workflows:read"
        ]
      },
      "patch": {
        "description": "Patch approval set. The operation uses JSON Merge Patch: omitted fields remain unchanged and documented nullable fields accept null. Unknown fields are rejected.",
        "operationId": "patchApprovalSetsApprovalSetId",
        "parameters": [
          {
            "description": "The approval set identifier.",
            "in": "path",
            "name": "approval_set_id",
            "required": true,
            "schema": {
              "minimum": 1,
              "type": "integer"
            }
          }
        ],
        "requestBody": {
          "content": {
            "application/merge-patch+json": {
              "schema": {
                "$ref": "#/components/schemas/PatchApprovalSetsApprovalSetIdPayload"
              }
            }
          },
          "required": true
        },
        "responses": {
          "200": {
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/PatchApprovalSetsApprovalSetIdResult"
                }
              }
            },
            "description": "Patch approval set response."
          },
          "400": {
            "$ref": "#/components/responses/InvalidRequestError"
          },
          "401": {
            "$ref": "#/components/responses/AuthenticationError"
          },
          "403": {
            "$ref": "#/components/responses/PermissionError"
          },
          "404": {
            "$ref": "#/components/responses/NotFoundError"
          },
          "413": {
            "$ref": "#/components/responses/PayloadTooLargeError"
          },
          "415": {
            "$ref": "#/components/responses/UnsupportedMediaTypeError"
          },
          "429": {
            "$ref": "#/components/responses/RateLimitError"
          },
          "500": {
            "$ref": "#/components/responses/InternalError"
          }
        },
        "security": [
          {
            "BearerAuth": []
          }
        ],
        "summary": "Patch approval set",
        "tags": [
          "Governance"
        ],
        "x-required-scopes": [
          "workflows:write"
        ]
      }
    },
    "/approvals/mine": {
      "get": {
        "description": "List my approvals. Results include only resources visible to the authenticated caller; collections use their documented stable order and bounds.",
        "operationId": "getApprovalsMine",
        "parameters": [
          {
            "description": "One-based page number.",
            "in": "query",
            "name": "page",
            "required": false,
            "schema": {
              "default": 1,
              "minimum": 1,
              "type": "integer"
            }
          },
          {
            "description": "Maximum number of resources to return.",
            "in": "query",
            "name": "page_size",
            "required": false,
            "schema": {
              "default": 50,
              "maximum": 100,
              "minimum": 1,
              "type": "integer"
            }
          },
          {
            "description": "Restricts approvals to one decision status.",
            "in": "query",
            "name": "status",
            "required": false,
            "schema": {
              "type": "string"
            }
          }
        ],
        "responses": {
          "200": {
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/GetApprovalsMineResult"
                }
              }
            },
            "description": "List my approvals response."
          },
          "401": {
            "$ref": "#/components/responses/AuthenticationError"
          },
          "403": {
            "$ref": "#/components/responses/PermissionError"
          },
          "429": {
            "$ref": "#/components/responses/RateLimitError"
          },
          "500": {
            "$ref": "#/components/responses/InternalError"
          }
        },
        "security": [
          {
            "BearerAuth": []
          }
        ],
        "summary": "List my approvals",
        "tags": [
          "Governance"
        ],
        "x-required-scopes": [
          "approvals:read"
        ]
      }
    },
    "/approvals/{approval_id}": {
      "get": {
        "description": "Get approval. Results include only resources visible to the authenticated caller; collections use their documented stable order and bounds.",
        "operationId": "getApprovalsApprovalId",
        "parameters": [
          {
            "description": "The approval identifier.",
            "in": "path",
            "name": "approval_id",
            "required": true,
            "schema": {
              "minimum": 1,
              "type": "integer"
            }
          }
        ],
        "responses": {
          "200": {
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/GetApprovalsApprovalIdResult"
                }
              }
            },
            "description": "Get approval response."
          },
          "401": {
            "$ref": "#/components/responses/AuthenticationError"
          },
          "403": {
            "$ref": "#/components/responses/PermissionError"
          },
          "404": {
            "$ref": "#/components/responses/NotFoundError"
          },
          "429": {
            "$ref": "#/components/responses/RateLimitError"
          },
          "500": {
            "$ref": "#/components/responses/InternalError"
          }
        },
        "security": [
          {
            "BearerAuth": []
          }
        ],
        "summary": "Get approval",
        "tags": [
          "Governance"
        ],
        "x-required-scopes": [
          "approvals:read"
        ]
      }
    },
    "/approvals/{approval_id}/cancellation": {
      "post": {
        "description": "Cancel approval. The server validates resource ownership and command preconditions before persisting changes. Unknown JSON fields are rejected when the operation accepts a body.",
        "operationId": "postApprovalsApprovalIdCancellation",
        "parameters": [
          {
            "description": "The approval identifier.",
            "in": "path",
            "name": "approval_id",
            "required": true,
            "schema": {
              "minimum": 1,
              "type": "integer"
            }
          }
        ],
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/PostApprovalsApprovalIdCancellationPayload"
              }
            }
          },
          "required": true
        },
        "responses": {
          "200": {
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/PostApprovalsApprovalIdCancellationResult"
                }
              }
            },
            "description": "Cancel approval response."
          },
          "400": {
            "$ref": "#/components/responses/InvalidRequestError"
          },
          "401": {
            "$ref": "#/components/responses/AuthenticationError"
          },
          "403": {
            "$ref": "#/components/responses/PermissionError"
          },
          "404": {
            "$ref": "#/components/responses/NotFoundError"
          },
          "409": {
            "description": "Approval is no longer pending"
          },
          "413": {
            "$ref": "#/components/responses/PayloadTooLargeError"
          },
          "415": {
            "$ref": "#/components/responses/UnsupportedMediaTypeError"
          },
          "429": {
            "$ref": "#/components/responses/RateLimitError"
          },
          "500": {
            "$ref": "#/components/responses/InternalError"
          }
        },
        "security": [
          {
            "BearerAuth": []
          }
        ],
        "summary": "Cancel approval",
        "tags": [
          "Governance"
        ],
        "x-required-scopes": [
          "approvals:write"
        ]
      }
    },
    "/approvals/{approval_id}/decisions": {
      "post": {
        "description": "Decide approval. The server validates resource ownership and command preconditions before persisting changes. Unknown JSON fields are rejected when the operation accepts a body.",
        "operationId": "postApprovalsApprovalIdDecisions",
        "parameters": [
          {
            "description": "The approval identifier.",
            "in": "path",
            "name": "approval_id",
            "required": true,
            "schema": {
              "minimum": 1,
              "type": "integer"
            }
          }
        ],
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/PostApprovalsApprovalIdDecisionsPayload"
              }
            }
          },
          "required": true
        },
        "responses": {
          "200": {
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/PostApprovalsApprovalIdDecisionsResult"
                }
              }
            },
            "description": "Decide approval response."
          },
          "400": {
            "$ref": "#/components/responses/InvalidRequestError"
          },
          "401": {
            "$ref": "#/components/responses/AuthenticationError"
          },
          "403": {
            "$ref": "#/components/responses/PermissionError"
          },
          "404": {
            "$ref": "#/components/responses/NotFoundError"
          },
          "413": {
            "$ref": "#/components/responses/PayloadTooLargeError"
          },
          "415": {
            "$ref": "#/components/responses/UnsupportedMediaTypeError"
          },
          "429": {
            "$ref": "#/components/responses/RateLimitError"
          },
          "500": {
            "$ref": "#/components/responses/InternalError"
          }
        },
        "security": [
          {
            "BearerAuth": []
          }
        ],
        "summary": "Decide approval",
        "tags": [
          "Governance"
        ],
        "x-required-scopes": [
          "approvals:write"
        ]
      }
    },
    "/approvals/{approval_id}/delegations": {
      "post": {
        "description": "Delegate approval. The server validates resource ownership and command preconditions before persisting changes. Unknown JSON fields are rejected when the operation accepts a body.",
        "operationId": "postApprovalsApprovalIdDelegations",
        "parameters": [
          {
            "description": "The approval identifier.",
            "in": "path",
            "name": "approval_id",
            "required": true,
            "schema": {
              "minimum": 1,
              "type": "integer"
            }
          }
        ],
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/PostApprovalsApprovalIdDelegationsPayload"
              }
            }
          },
          "required": true
        },
        "responses": {
          "200": {
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/PostApprovalsApprovalIdDelegationsResult"
                }
              }
            },
            "description": "Delegate approval response."
          },
          "400": {
            "$ref": "#/components/responses/InvalidRequestError"
          },
          "401": {
            "$ref": "#/components/responses/AuthenticationError"
          },
          "403": {
            "$ref": "#/components/responses/PermissionError"
          },
          "404": {
            "$ref": "#/components/responses/NotFoundError"
          },
          "413": {
            "$ref": "#/components/responses/PayloadTooLargeError"
          },
          "415": {
            "$ref": "#/components/responses/UnsupportedMediaTypeError"
          },
          "429": {
            "$ref": "#/components/responses/RateLimitError"
          },
          "500": {
            "$ref": "#/components/responses/InternalError"
          }
        },
        "security": [
          {
            "BearerAuth": []
          }
        ],
        "summary": "Delegate approval",
        "tags": [
          "Governance"
        ],
        "x-required-scopes": [
          "approvals:write"
        ]
      }
    },
    "/approvals/{approval_id}/steps/{step_id}/approver-refreshes": {
      "post": {
        "description": "Refresh approval approvers. The server validates resource ownership and command preconditions before persisting changes. Unknown JSON fields are rejected when the operation accepts a body.",
        "operationId": "postApprovalsApprovalIdStepsStepIdApproverRefreshes",
        "parameters": [
          {
            "description": "The approval identifier.",
            "in": "path",
            "name": "approval_id",
            "required": true,
            "schema": {
              "minimum": 1,
              "type": "integer"
            }
          },
          {
            "description": "The step identifier.",
            "in": "path",
            "name": "step_id",
            "required": true,
            "schema": {
              "minimum": 1,
              "type": "integer"
            }
          }
        ],
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/PostApprovalsApprovalIdStepsStepIdApproverRefreshesPayload"
              }
            }
          },
          "required": true
        },
        "responses": {
          "200": {
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/PostApprovalsApprovalIdStepsStepIdApproverRefreshesResult"
                }
              }
            },
            "description": "Refresh approval approvers response."
          },
          "400": {
            "$ref": "#/components/responses/InvalidRequestError"
          },
          "401": {
            "$ref": "#/components/responses/AuthenticationError"
          },
          "403": {
            "$ref": "#/components/responses/PermissionError"
          },
          "404": {
            "$ref": "#/components/responses/NotFoundError"
          },
          "413": {
            "$ref": "#/components/responses/PayloadTooLargeError"
          },
          "415": {
            "$ref": "#/components/responses/UnsupportedMediaTypeError"
          },
          "429": {
            "$ref": "#/components/responses/RateLimitError"
          },
          "500": {
            "$ref": "#/components/responses/InternalError"
          }
        },
        "security": [
          {
            "BearerAuth": []
          }
        ],
        "summary": "Refresh approval approvers",
        "tags": [
          "Governance"
        ],
        "x-required-scopes": [
          "approvals:write"
        ]
      }
    },
    "/approvals/{approval_id}/steps/{step_id}/escalations": {
      "post": {
        "description": "Escalate approval. The server validates resource ownership and command preconditions before persisting changes. Unknown JSON fields are rejected when the operation accepts a body.",
        "operationId": "postApprovalsApprovalIdStepsStepIdEscalations",
        "parameters": [
          {
            "description": "The approval identifier.",
            "in": "path",
            "name": "approval_id",
            "required": true,
            "schema": {
              "minimum": 1,
              "type": "integer"
            }
          },
          {
            "description": "The step identifier.",
            "in": "path",
            "name": "step_id",
            "required": true,
            "schema": {
              "minimum": 1,
              "type": "integer"
            }
          }
        ],
        "responses": {
          "200": {
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/PostApprovalsApprovalIdStepsStepIdEscalationsResult"
                }
              }
            },
            "description": "Escalate approval response."
          },
          "400": {
            "$ref": "#/components/responses/InvalidRequestError"
          },
          "401": {
            "$ref": "#/components/responses/AuthenticationError"
          },
          "403": {
            "$ref": "#/components/responses/PermissionError"
          },
          "404": {
            "$ref": "#/components/responses/NotFoundError"
          },
          "429": {
            "$ref": "#/components/responses/RateLimitError"
          },
          "500": {
            "$ref": "#/components/responses/InternalError"
          }
        },
        "security": [
          {
            "BearerAuth": []
          }
        ],
        "summary": "Escalate approval",
        "tags": [
          "Governance"
        ],
        "x-required-scopes": [
          "approvals:write"
        ]
      }
    },
    "/asset-categories/{category_id}": {
      "get": {
        "description": "Get asset category. Results include only resources visible to the authenticated caller; collections use their documented stable order and bounds.",
        "operationId": "getAssetCategoriesCategoryId",
        "parameters": [
          {
            "description": "The category identifier.",
            "in": "path",
            "name": "category_id",
            "required": true,
            "schema": {
              "minimum": 1,
              "type": "integer"
            }
          }
        ],
        "responses": {
          "200": {
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/GetAssetCategoriesCategoryIdResult"
                }
              }
            },
            "description": "Get asset category response."
          },
          "401": {
            "$ref": "#/components/responses/AuthenticationError"
          },
          "403": {
            "$ref": "#/components/responses/PermissionError"
          },
          "404": {
            "$ref": "#/components/responses/NotFoundError"
          },
          "429": {
            "$ref": "#/components/responses/RateLimitError"
          },
          "500": {
            "$ref": "#/components/responses/InternalError"
          }
        },
        "security": [
          {
            "BearerAuth": []
          }
        ],
        "summary": "Get asset category",
        "tags": [
          "Asset management"
        ],
        "x-required-scopes": [
          "assets:read"
        ]
      }
    },
    "/asset-roles": {
      "get": {
        "description": "List asset roles. Results include only resources visible to the authenticated caller; collections use their documented stable order and bounds.",
        "operationId": "getAssetRoles",
        "parameters": [],
        "responses": {
          "200": {
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/GetAssetRolesResult"
                }
              }
            },
            "description": "List asset roles response."
          },
          "401": {
            "$ref": "#/components/responses/AuthenticationError"
          },
          "403": {
            "$ref": "#/components/responses/PermissionError"
          },
          "429": {
            "$ref": "#/components/responses/RateLimitError"
          },
          "500": {
            "$ref": "#/components/responses/InternalError"
          }
        },
        "security": [
          {
            "BearerAuth": []
          }
        ],
        "summary": "List asset roles",
        "tags": [
          "Asset management"
        ],
        "x-required-scopes": [
          "assets:read"
        ]
      }
    },
    "/asset-roles/{role_id}": {
      "get": {
        "description": "Get asset role. Results include only resources visible to the authenticated caller; collections use their documented stable order and bounds.",
        "operationId": "getAssetRolesRoleId",
        "parameters": [
          {
            "description": "The role identifier.",
            "in": "path",
            "name": "role_id",
            "required": true,
            "schema": {
              "minimum": 1,
              "type": "integer"
            }
          }
        ],
        "responses": {
          "200": {
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/GetAssetRolesRoleIdResult"
                }
              }
            },
            "description": "Get asset role response."
          },
          "401": {
            "$ref": "#/components/responses/AuthenticationError"
          },
          "403": {
            "$ref": "#/components/responses/PermissionError"
          },
          "404": {
            "$ref": "#/components/responses/NotFoundError"
          },
          "429": {
            "$ref": "#/components/responses/RateLimitError"
          },
          "500": {
            "$ref": "#/components/responses/InternalError"
          }
        },
        "security": [
          {
            "BearerAuth": []
          }
        ],
        "summary": "Get asset role",
        "tags": [
          "Asset management"
        ],
        "x-required-scopes": [
          "assets:read"
        ]
      }
    },
    "/asset-sets": {
      "get": {
        "description": "List asset sets. Results include only resources visible to the authenticated caller; collections use their documented stable order and bounds.",
        "operationId": "getAssetSets",
        "parameters": [
          {
            "description": "One-based page number.",
            "in": "query",
            "name": "page",
            "required": false,
            "schema": {
              "default": 1,
              "minimum": 1,
              "type": "integer"
            }
          },
          {
            "description": "Maximum number of resources to return.",
            "in": "query",
            "name": "page_size",
            "required": false,
            "schema": {
              "default": 50,
              "maximum": 100,
              "minimum": 1,
              "type": "integer"
            }
          }
        ],
        "responses": {
          "200": {
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/GetAssetSetsResult"
                }
              }
            },
            "description": "List asset sets response."
          },
          "401": {
            "$ref": "#/components/responses/AuthenticationError"
          },
          "403": {
            "$ref": "#/components/responses/PermissionError"
          },
          "429": {
            "$ref": "#/components/responses/RateLimitError"
          },
          "500": {
            "$ref": "#/components/responses/InternalError"
          }
        },
        "security": [
          {
            "BearerAuth": []
          }
        ],
        "summary": "List asset sets",
        "tags": [
          "Asset management"
        ],
        "x-required-scopes": [
          "assets:read"
        ]
      }
    },
    "/asset-sets/{asset_set_id}": {
      "get": {
        "description": "Get asset set. Results include only resources visible to the authenticated caller; collections use their documented stable order and bounds.",
        "operationId": "getAssetSetsAssetSetId",
        "parameters": [
          {
            "description": "The asset set identifier.",
            "in": "path",
            "name": "asset_set_id",
            "required": true,
            "schema": {
              "minimum": 1,
              "type": "integer"
            }
          }
        ],
        "responses": {
          "200": {
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/GetAssetSetsAssetSetIdResult"
                }
              }
            },
            "description": "Get asset set response."
          },
          "401": {
            "$ref": "#/components/responses/AuthenticationError"
          },
          "403": {
            "$ref": "#/components/responses/PermissionError"
          },
          "404": {
            "$ref": "#/components/responses/NotFoundError"
          },
          "429": {
            "$ref": "#/components/responses/RateLimitError"
          },
          "500": {
            "$ref": "#/components/responses/InternalError"
          }
        },
        "security": [
          {
            "BearerAuth": []
          }
        ],
        "summary": "Get asset set",
        "tags": [
          "Asset management"
        ],
        "x-required-scopes": [
          "assets:read"
        ]
      }
    },
    "/asset-sets/{asset_set_id}/assets": {
      "get": {
        "description": "List assets. Results include only resources visible to the authenticated caller; collections use their documented stable order and bounds.",
        "operationId": "getAssetSetsAssetSetIdAssets",
        "parameters": [
          {
            "description": "The asset set identifier.",
            "in": "path",
            "name": "asset_set_id",
            "required": true,
            "schema": {
              "minimum": 1,
              "type": "integer"
            }
          },
          {
            "description": "One-based page number.",
            "in": "query",
            "name": "page",
            "required": false,
            "schema": {
              "default": 1,
              "minimum": 1,
              "type": "integer"
            }
          },
          {
            "description": "Maximum number of resources to return.",
            "in": "query",
            "name": "page_size",
            "required": false,
            "schema": {
              "default": 50,
              "maximum": 100,
              "minimum": 1,
              "type": "integer"
            }
          },
          {
            "description": "Restricts assets by type id.",
            "in": "query",
            "name": "type_id",
            "required": false,
            "schema": {
              "type": "string"
            }
          },
          {
            "description": "Restricts assets by category id.",
            "in": "query",
            "name": "category_id",
            "required": false,
            "schema": {
              "type": "string"
            }
          },
          {
            "description": "Restricts assets by status id.",
            "in": "query",
            "name": "status_id",
            "required": false,
            "schema": {
              "type": "string"
            }
          },
          {
            "description": "Whether category filtering includes descendant categories.",
            "in": "query",
            "name": "include_subcategories",
            "required": false,
            "schema": {
              "default": true,
              "type": "boolean"
            }
          },
          {
            "description": "Case-insensitive asset text search.",
            "in": "query",
            "name": "search",
            "required": false,
            "schema": {
              "type": "string"
            }
          },
          {
            "description": "Asset query-language expression applied after structured filters.",
            "in": "query",
            "name": "ql",
            "required": false,
            "schema": {
              "type": "string"
            }
          }
        ],
        "responses": {
          "200": {
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/GetAssetSetsAssetSetIdAssetsResult"
                }
              }
            },
            "description": "List assets response."
          },
          "401": {
            "$ref": "#/components/responses/AuthenticationError"
          },
          "403": {
            "$ref": "#/components/responses/PermissionError"
          },
          "404": {
            "$ref": "#/components/responses/NotFoundError"
          },
          "429": {
            "$ref": "#/components/responses/RateLimitError"
          },
          "500": {
            "$ref": "#/components/responses/InternalError"
          }
        },
        "security": [
          {
            "BearerAuth": []
          }
        ],
        "summary": "List assets",
        "tags": [
          "Asset management"
        ],
        "x-required-scopes": [
          "assets:read"
        ]
      },
      "post": {
        "description": "Create asset. The server validates resource ownership and command preconditions before persisting changes. Unknown JSON fields are rejected when the operation accepts a body.",
        "operationId": "postAssetSetsAssetSetIdAssets",
        "parameters": [
          {
            "description": "The asset set identifier.",
            "in": "path",
            "name": "asset_set_id",
            "required": true,
            "schema": {
              "minimum": 1,
              "type": "integer"
            }
          }
        ],
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/PostAssetSetsAssetSetIdAssetsPayload"
              }
            }
          },
          "required": true
        },
        "responses": {
          "201": {
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/PostAssetSetsAssetSetIdAssetsResult"
                }
              }
            },
            "description": "Create asset response."
          },
          "400": {
            "$ref": "#/components/responses/InvalidRequestError"
          },
          "401": {
            "$ref": "#/components/responses/AuthenticationError"
          },
          "403": {
            "$ref": "#/components/responses/PermissionError"
          },
          "404": {
            "$ref": "#/components/responses/NotFoundError"
          },
          "413": {
            "$ref": "#/components/responses/PayloadTooLargeError"
          },
          "415": {
            "$ref": "#/components/responses/UnsupportedMediaTypeError"
          },
          "429": {
            "$ref": "#/components/responses/RateLimitError"
          },
          "500": {
            "$ref": "#/components/responses/InternalError"
          }
        },
        "security": [
          {
            "BearerAuth": []
          }
        ],
        "summary": "Create asset",
        "tags": [
          "Asset management"
        ],
        "x-required-scopes": [
          "assets:write"
        ]
      }
    },
    "/asset-sets/{asset_set_id}/categories": {
      "get": {
        "description": "List asset categories. Results include only resources visible to the authenticated caller; collections use their documented stable order and bounds.",
        "operationId": "getAssetSetsAssetSetIdCategories",
        "parameters": [
          {
            "description": "The asset set identifier.",
            "in": "path",
            "name": "asset_set_id",
            "required": true,
            "schema": {
              "minimum": 1,
              "type": "integer"
            }
          },
          {
            "description": "One-based page number.",
            "in": "query",
            "name": "page",
            "required": false,
            "schema": {
              "default": 1,
              "minimum": 1,
              "type": "integer"
            }
          },
          {
            "description": "Maximum number of resources to return.",
            "in": "query",
            "name": "page_size",
            "required": false,
            "schema": {
              "default": 50,
              "maximum": 100,
              "minimum": 1,
              "type": "integer"
            }
          },
          {
            "description": "Whether to return categories as a hierarchy.",
            "in": "query",
            "name": "tree",
            "required": false,
            "schema": {
              "default": false,
              "type": "boolean"
            }
          }
        ],
        "responses": {
          "200": {
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/GetAssetSetsAssetSetIdCategoriesResult"
                }
              }
            },
            "description": "List asset categories response."
          },
          "401": {
            "$ref": "#/components/responses/AuthenticationError"
          },
          "403": {
            "$ref": "#/components/responses/PermissionError"
          },
          "404": {
            "$ref": "#/components/responses/NotFoundError"
          },
          "429": {
            "$ref": "#/components/responses/RateLimitError"
          },
          "500": {
            "$ref": "#/components/responses/InternalError"
          }
        },
        "security": [
          {
            "BearerAuth": []
          }
        ],
        "summary": "List asset categories",
        "tags": [
          "Asset management"
        ],
        "x-required-scopes": [
          "assets:read"
        ]
      }
    },
    "/asset-sets/{asset_set_id}/everyone-role": {
      "get": {
        "description": "Get asset set everyone role. Results include only resources visible to the authenticated caller; collections use their documented stable order and bounds.",
        "operationId": "getAssetSetsAssetSetIdEveryoneRole",
        "parameters": [
          {
            "description": "The asset set identifier.",
            "in": "path",
            "name": "asset_set_id",
            "required": true,
            "schema": {
              "minimum": 1,
              "type": "integer"
            }
          }
        ],
        "responses": {
          "200": {
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/GetAssetSetsAssetSetIdEveryoneRoleResult"
                }
              }
            },
            "description": "Get asset set everyone role response."
          },
          "401": {
            "$ref": "#/components/responses/AuthenticationError"
          },
          "403": {
            "$ref": "#/components/responses/PermissionError"
          },
          "404": {
            "$ref": "#/components/responses/NotFoundError"
          },
          "429": {
            "$ref": "#/components/responses/RateLimitError"
          },
          "500": {
            "$ref": "#/components/responses/InternalError"
          }
        },
        "security": [
          {
            "BearerAuth": []
          }
        ],
        "summary": "Get asset set everyone role",
        "tags": [
          "Asset management"
        ],
        "x-required-scopes": [
          "assets:read"
        ]
      }
    },
    "/asset-sets/{asset_set_id}/import/create-type": {
      "post": {
        "description": "Create asset import type. The server validates resource ownership and command preconditions before persisting changes. Unknown JSON fields are rejected when the operation accepts a body.",
        "operationId": "postAssetSetsAssetSetIdImportCreateType",
        "parameters": [
          {
            "description": "The asset set identifier.",
            "in": "path",
            "name": "asset_set_id",
            "required": true,
            "schema": {
              "minimum": 1,
              "type": "integer"
            }
          }
        ],
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/PostAssetSetsAssetSetIdImportCreateTypePayload"
              }
            }
          },
          "required": true
        },
        "responses": {
          "201": {
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/PostAssetSetsAssetSetIdImportCreateTypeResult"
                }
              }
            },
            "description": "Create asset import type response."
          },
          "400": {
            "$ref": "#/components/responses/InvalidRequestError"
          },
          "401": {
            "$ref": "#/components/responses/AuthenticationError"
          },
          "403": {
            "$ref": "#/components/responses/PermissionError"
          },
          "404": {
            "$ref": "#/components/responses/NotFoundError"
          },
          "413": {
            "$ref": "#/components/responses/PayloadTooLargeError"
          },
          "415": {
            "$ref": "#/components/responses/UnsupportedMediaTypeError"
          },
          "429": {
            "$ref": "#/components/responses/RateLimitError"
          },
          "500": {
            "$ref": "#/components/responses/InternalError"
          }
        },
        "security": [
          {
            "BearerAuth": []
          }
        ],
        "summary": "Create asset import type",
        "tags": [
          "Asset management"
        ],
        "x-required-scopes": [
          "assets:write"
        ]
      }
    },
    "/asset-sets/{asset_set_id}/import/jobs": {
      "get": {
        "description": "List asset import jobs. Results include only resources visible to the authenticated caller; collections use their documented stable order and bounds.",
        "operationId": "getAssetSetsAssetSetIdImportJobs",
        "parameters": [
          {
            "description": "The asset set identifier.",
            "in": "path",
            "name": "asset_set_id",
            "required": true,
            "schema": {
              "minimum": 1,
              "type": "integer"
            }
          }
        ],
        "responses": {
          "200": {
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/GetAssetSetsAssetSetIdImportJobsResult"
                }
              }
            },
            "description": "List asset import jobs response."
          },
          "401": {
            "$ref": "#/components/responses/AuthenticationError"
          },
          "403": {
            "$ref": "#/components/responses/PermissionError"
          },
          "404": {
            "$ref": "#/components/responses/NotFoundError"
          },
          "429": {
            "$ref": "#/components/responses/RateLimitError"
          },
          "500": {
            "$ref": "#/components/responses/InternalError"
          }
        },
        "security": [
          {
            "BearerAuth": []
          }
        ],
        "summary": "List asset import jobs",
        "tags": [
          "Asset management"
        ],
        "x-required-scopes": [
          "assets:read"
        ]
      }
    },
    "/asset-sets/{asset_set_id}/import/jobs/{job_id}": {
      "get": {
        "description": "Get asset import job. Results include only resources visible to the authenticated caller; collections use their documented stable order and bounds.",
        "operationId": "getAssetSetsAssetSetIdImportJobsJobId",
        "parameters": [
          {
            "description": "The asset set identifier.",
            "in": "path",
            "name": "asset_set_id",
            "required": true,
            "schema": {
              "minimum": 1,
              "type": "integer"
            }
          },
          {
            "description": "The job identifier.",
            "in": "path",
            "name": "job_id",
            "required": true,
            "schema": {
              "minimum": 1,
              "type": "integer"
            }
          }
        ],
        "responses": {
          "200": {
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/GetAssetSetsAssetSetIdImportJobsJobIdResult"
                }
              }
            },
            "description": "Get asset import job response."
          },
          "401": {
            "$ref": "#/components/responses/AuthenticationError"
          },
          "403": {
            "$ref": "#/components/responses/PermissionError"
          },
          "404": {
            "$ref": "#/components/responses/NotFoundError"
          },
          "429": {
            "$ref": "#/components/responses/RateLimitError"
          },
          "500": {
            "$ref": "#/components/responses/InternalError"
          }
        },
        "security": [
          {
            "BearerAuth": []
          }
        ],
        "summary": "Get asset import job",
        "tags": [
          "Asset management"
        ],
        "x-required-scopes": [
          "assets:read"
        ]
      }
    },
    "/asset-sets/{asset_set_id}/import/start": {
      "post": {
        "description": "Start asset import. The server validates resource ownership and command preconditions before persisting changes. Unknown JSON fields are rejected when the operation accepts a body.",
        "operationId": "postAssetSetsAssetSetIdImportStart",
        "parameters": [
          {
            "description": "The asset set identifier.",
            "in": "path",
            "name": "asset_set_id",
            "required": true,
            "schema": {
              "minimum": 1,
              "type": "integer"
            }
          }
        ],
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/PostAssetSetsAssetSetIdImportStartPayload"
              }
            }
          },
          "required": true
        },
        "responses": {
          "202": {
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/PostAssetSetsAssetSetIdImportStartResult"
                }
              }
            },
            "description": "Start asset import response."
          },
          "400": {
            "$ref": "#/components/responses/InvalidRequestError"
          },
          "401": {
            "$ref": "#/components/responses/AuthenticationError"
          },
          "403": {
            "$ref": "#/components/responses/PermissionError"
          },
          "404": {
            "$ref": "#/components/responses/NotFoundError"
          },
          "413": {
            "$ref": "#/components/responses/PayloadTooLargeError"
          },
          "415": {
            "$ref": "#/components/responses/UnsupportedMediaTypeError"
          },
          "429": {
            "$ref": "#/components/responses/RateLimitError"
          },
          "500": {
            "$ref": "#/components/responses/InternalError"
          }
        },
        "security": [
          {
            "BearerAuth": []
          }
        ],
        "summary": "Start asset import",
        "tags": [
          "Asset management"
        ],
        "x-required-scopes": [
          "assets:write"
        ]
      }
    },
    "/asset-sets/{asset_set_id}/import/suggest-fields": {
      "post": {
        "description": "Suggest asset import fields. The server validates resource ownership and command preconditions before persisting changes. Unknown JSON fields are rejected when the operation accepts a body.",
        "operationId": "postAssetSetsAssetSetIdImportSuggestFields",
        "parameters": [
          {
            "description": "The asset set identifier.",
            "in": "path",
            "name": "asset_set_id",
            "required": true,
            "schema": {
              "minimum": 1,
              "type": "integer"
            }
          }
        ],
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/PostAssetSetsAssetSetIdImportSuggestFieldsPayload"
              }
            }
          },
          "required": true
        },
        "responses": {
          "200": {
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/PostAssetSetsAssetSetIdImportSuggestFieldsResult"
                }
              }
            },
            "description": "Suggest asset import fields response."
          },
          "400": {
            "$ref": "#/components/responses/InvalidRequestError"
          },
          "401": {
            "$ref": "#/components/responses/AuthenticationError"
          },
          "403": {
            "$ref": "#/components/responses/PermissionError"
          },
          "404": {
            "$ref": "#/components/responses/NotFoundError"
          },
          "413": {
            "$ref": "#/components/responses/PayloadTooLargeError"
          },
          "415": {
            "$ref": "#/components/responses/UnsupportedMediaTypeError"
          },
          "429": {
            "$ref": "#/components/responses/RateLimitError"
          },
          "500": {
            "$ref": "#/components/responses/InternalError"
          }
        },
        "security": [
          {
            "BearerAuth": []
          }
        ],
        "summary": "Suggest asset import fields",
        "tags": [
          "Asset management"
        ],
        "x-required-scopes": [
          "assets:write"
        ]
      }
    },
    "/asset-sets/{asset_set_id}/import/upload": {
      "post": {
        "description": "Upload asset import. The server validates resource ownership and command preconditions before persisting changes. Unknown JSON fields are rejected when the operation accepts a body.",
        "operationId": "postAssetSetsAssetSetIdImportUpload",
        "parameters": [
          {
            "description": "The asset set identifier.",
            "in": "path",
            "name": "asset_set_id",
            "required": true,
            "schema": {
              "minimum": 1,
              "type": "integer"
            }
          }
        ],
        "requestBody": {
          "content": {
            "multipart/form-data": {
              "schema": {
                "$ref": "#/components/schemas/PostAssetSetsAssetSetIdImportUploadPayload"
              }
            }
          },
          "required": true
        },
        "responses": {
          "201": {
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/PostAssetSetsAssetSetIdImportUploadResult"
                }
              }
            },
            "description": "Upload asset import response."
          },
          "400": {
            "$ref": "#/components/responses/InvalidRequestError"
          },
          "401": {
            "$ref": "#/components/responses/AuthenticationError"
          },
          "403": {
            "$ref": "#/components/responses/PermissionError"
          },
          "404": {
            "$ref": "#/components/responses/NotFoundError"
          },
          "413": {
            "$ref": "#/components/responses/PayloadTooLargeError"
          },
          "415": {
            "$ref": "#/components/responses/UnsupportedMediaTypeError"
          },
          "429": {
            "$ref": "#/components/responses/RateLimitError"
          },
          "500": {
            "$ref": "#/components/responses/InternalError"
          }
        },
        "security": [
          {
            "BearerAuth": []
          }
        ],
        "summary": "Upload asset import",
        "tags": [
          "Asset management"
        ],
        "x-required-scopes": [
          "assets:write"
        ]
      }
    },
    "/asset-sets/{asset_set_id}/roles": {
      "get": {
        "description": "List asset set roles. Results include only resources visible to the authenticated caller; collections use their documented stable order and bounds.",
        "operationId": "getAssetSetsAssetSetIdRoles",
        "parameters": [
          {
            "description": "The asset set identifier.",
            "in": "path",
            "name": "asset_set_id",
            "required": true,
            "schema": {
              "minimum": 1,
              "type": "integer"
            }
          }
        ],
        "responses": {
          "200": {
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/GetAssetSetsAssetSetIdRolesResult"
                }
              }
            },
            "description": "List asset set roles response."
          },
          "401": {
            "$ref": "#/components/responses/AuthenticationError"
          },
          "403": {
            "$ref": "#/components/responses/PermissionError"
          },
          "404": {
            "$ref": "#/components/responses/NotFoundError"
          },
          "429": {
            "$ref": "#/components/responses/RateLimitError"
          },
          "500": {
            "$ref": "#/components/responses/InternalError"
          }
        },
        "security": [
          {
            "BearerAuth": []
          }
        ],
        "summary": "List asset set roles",
        "tags": [
          "Asset management"
        ],
        "x-required-scopes": [
          "assets:read"
        ]
      }
    },
    "/asset-sets/{asset_set_id}/statuses": {
      "get": {
        "description": "List asset statuses. Results include only resources visible to the authenticated caller; collections use their documented stable order and bounds.",
        "operationId": "getAssetSetsAssetSetIdStatuses",
        "parameters": [
          {
            "description": "The asset set identifier.",
            "in": "path",
            "name": "asset_set_id",
            "required": true,
            "schema": {
              "minimum": 1,
              "type": "integer"
            }
          },
          {
            "description": "One-based page number.",
            "in": "query",
            "name": "page",
            "required": false,
            "schema": {
              "default": 1,
              "minimum": 1,
              "type": "integer"
            }
          },
          {
            "description": "Maximum number of resources to return.",
            "in": "query",
            "name": "page_size",
            "required": false,
            "schema": {
              "default": 50,
              "maximum": 100,
              "minimum": 1,
              "type": "integer"
            }
          }
        ],
        "responses": {
          "200": {
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/GetAssetSetsAssetSetIdStatusesResult"
                }
              }
            },
            "description": "List asset statuses response."
          },
          "401": {
            "$ref": "#/components/responses/AuthenticationError"
          },
          "403": {
            "$ref": "#/components/responses/PermissionError"
          },
          "404": {
            "$ref": "#/components/responses/NotFoundError"
          },
          "429": {
            "$ref": "#/components/responses/RateLimitError"
          },
          "500": {
            "$ref": "#/components/responses/InternalError"
          }
        },
        "security": [
          {
            "BearerAuth": []
          }
        ],
        "summary": "List asset statuses",
        "tags": [
          "Asset management"
        ],
        "x-required-scopes": [
          "assets:read"
        ]
      }
    },
    "/asset-sets/{asset_set_id}/types": {
      "get": {
        "description": "List asset types. Results include only resources visible to the authenticated caller; collections use their documented stable order and bounds.",
        "operationId": "getAssetSetsAssetSetIdTypes",
        "parameters": [
          {
            "description": "The asset set identifier.",
            "in": "path",
            "name": "asset_set_id",
            "required": true,
            "schema": {
              "minimum": 1,
              "type": "integer"
            }
          },
          {
            "description": "One-based page number.",
            "in": "query",
            "name": "page",
            "required": false,
            "schema": {
              "default": 1,
              "minimum": 1,
              "type": "integer"
            }
          },
          {
            "description": "Maximum number of resources to return.",
            "in": "query",
            "name": "page_size",
            "required": false,
            "schema": {
              "default": 50,
              "maximum": 100,
              "minimum": 1,
              "type": "integer"
            }
          }
        ],
        "responses": {
          "200": {
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/GetAssetSetsAssetSetIdTypesResult"
                }
              }
            },
            "description": "List asset types response."
          },
          "401": {
            "$ref": "#/components/responses/AuthenticationError"
          },
          "403": {
            "$ref": "#/components/responses/PermissionError"
          },
          "404": {
            "$ref": "#/components/responses/NotFoundError"
          },
          "429": {
            "$ref": "#/components/responses/RateLimitError"
          },
          "500": {
            "$ref": "#/components/responses/InternalError"
          }
        },
        "security": [
          {
            "BearerAuth": []
          }
        ],
        "summary": "List asset types",
        "tags": [
          "Asset management"
        ],
        "x-required-scopes": [
          "assets:read"
        ]
      }
    },
    "/asset-statuses/{status_id}": {
      "get": {
        "description": "Get asset status. Results include only resources visible to the authenticated caller; collections use their documented stable order and bounds.",
        "operationId": "getAssetStatusesStatusId",
        "parameters": [
          {
            "description": "The status identifier.",
            "in": "path",
            "name": "status_id",
            "required": true,
            "schema": {
              "minimum": 1,
              "type": "integer"
            }
          }
        ],
        "responses": {
          "200": {
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/GetAssetStatusesStatusIdResult"
                }
              }
            },
            "description": "Get asset status response."
          },
          "401": {
            "$ref": "#/components/responses/AuthenticationError"
          },
          "403": {
            "$ref": "#/components/responses/PermissionError"
          },
          "404": {
            "$ref": "#/components/responses/NotFoundError"
          },
          "429": {
            "$ref": "#/components/responses/RateLimitError"
          },
          "500": {
            "$ref": "#/components/responses/InternalError"
          }
        },
        "security": [
          {
            "BearerAuth": []
          }
        ],
        "summary": "Get asset status",
        "tags": [
          "Asset management"
        ],
        "x-required-scopes": [
          "assets:read"
        ]
      }
    },
    "/asset-types/{asset_type_id}": {
      "get": {
        "description": "Get asset type. Results include only resources visible to the authenticated caller; collections use their documented stable order and bounds.",
        "operationId": "getAssetTypesAssetTypeId",
        "parameters": [
          {
            "description": "The asset type identifier.",
            "in": "path",
            "name": "asset_type_id",
            "required": true,
            "schema": {
              "minimum": 1,
              "type": "integer"
            }
          }
        ],
        "responses": {
          "200": {
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/GetAssetTypesAssetTypeIdResult"
                }
              }
            },
            "description": "Get asset type response."
          },
          "401": {
            "$ref": "#/components/responses/AuthenticationError"
          },
          "403": {
            "$ref": "#/components/responses/PermissionError"
          },
          "404": {
            "$ref": "#/components/responses/NotFoundError"
          },
          "429": {
            "$ref": "#/components/responses/RateLimitError"
          },
          "500": {
            "$ref": "#/components/responses/InternalError"
          }
        },
        "security": [
          {
            "BearerAuth": []
          }
        ],
        "summary": "Get asset type",
        "tags": [
          "Asset management"
        ],
        "x-required-scopes": [
          "assets:read"
        ]
      }
    },
    "/asset-types/{asset_type_id}/fields": {
      "get": {
        "description": "List asset type fields. Results include only resources visible to the authenticated caller; collections use their documented stable order and bounds.",
        "operationId": "getAssetTypesAssetTypeIdFields",
        "parameters": [
          {
            "description": "The asset type identifier.",
            "in": "path",
            "name": "asset_type_id",
            "required": true,
            "schema": {
              "minimum": 1,
              "type": "integer"
            }
          }
        ],
        "responses": {
          "200": {
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/GetAssetTypesAssetTypeIdFieldsResult"
                }
              }
            },
            "description": "List asset type fields response."
          },
          "401": {
            "$ref": "#/components/responses/AuthenticationError"
          },
          "403": {
            "$ref": "#/components/responses/PermissionError"
          },
          "404": {
            "$ref": "#/components/responses/NotFoundError"
          },
          "429": {
            "$ref": "#/components/responses/RateLimitError"
          },
          "500": {
            "$ref": "#/components/responses/InternalError"
          }
        },
        "security": [
          {
            "BearerAuth": []
          }
        ],
        "summary": "List asset type fields",
        "tags": [
          "Asset management"
        ],
        "x-required-scopes": [
          "assets:read"
        ]
      }
    },
    "/assets/summaries": {
      "post": {
        "description": "Returns a bounded projection for up to 500 IDs. IDs are deduplicated by first occurrence; visible matches preserve request order, and missing or unauthorized resources are omitted without revealing which case applied. Results reflect committed state at request time and are all-or-nothing on computation failure.",
        "operationId": "postAssetsSummaries",
        "parameters": [],
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/PostAssetsSummariesPayload"
              }
            }
          },
          "required": true
        },
        "responses": {
          "200": {
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/PostAssetsSummariesResult"
                }
              }
            },
            "description": "List asset summaries response."
          },
          "400": {
            "$ref": "#/components/responses/InvalidRequestError"
          },
          "401": {
            "$ref": "#/components/responses/AuthenticationError"
          },
          "403": {
            "$ref": "#/components/responses/PermissionError"
          },
          "413": {
            "$ref": "#/components/responses/PayloadTooLargeError"
          },
          "415": {
            "$ref": "#/components/responses/UnsupportedMediaTypeError"
          },
          "429": {
            "$ref": "#/components/responses/RateLimitError"
          },
          "500": {
            "$ref": "#/components/responses/InternalError"
          }
        },
        "security": [
          {
            "BearerAuth": []
          }
        ],
        "summary": "List asset summaries",
        "tags": [
          "Asset management"
        ],
        "x-required-scopes": [
          "assets:read"
        ]
      }
    },
    "/assets/{asset_id}": {
      "delete": {
        "description": "Delete asset. The server verifies resource ownership and deletion preconditions before removing the resource.",
        "operationId": "deleteAssetsAssetId",
        "parameters": [
          {
            "description": "The asset identifier.",
            "in": "path",
            "name": "asset_id",
            "required": true,
            "schema": {
              "minimum": 1,
              "type": "integer"
            }
          }
        ],
        "responses": {
          "204": {
            "description": "Request completed successfully with no response body."
          },
          "401": {
            "$ref": "#/components/responses/AuthenticationError"
          },
          "403": {
            "$ref": "#/components/responses/PermissionError"
          },
          "404": {
            "$ref": "#/components/responses/NotFoundError"
          },
          "429": {
            "$ref": "#/components/responses/RateLimitError"
          },
          "500": {
            "$ref": "#/components/responses/InternalError"
          }
        },
        "security": [
          {
            "BearerAuth": []
          }
        ],
        "summary": "Delete asset",
        "tags": [
          "Asset management"
        ],
        "x-required-scopes": [
          "assets:delete"
        ]
      },
      "get": {
        "description": "Get asset. Results include only resources visible to the authenticated caller; collections use their documented stable order and bounds.",
        "operationId": "getAssetsAssetId",
        "parameters": [
          {
            "description": "The asset identifier.",
            "in": "path",
            "name": "asset_id",
            "required": true,
            "schema": {
              "minimum": 1,
              "type": "integer"
            }
          }
        ],
        "responses": {
          "200": {
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/GetAssetsAssetIdResult"
                }
              }
            },
            "description": "Get asset response."
          },
          "401": {
            "$ref": "#/components/responses/AuthenticationError"
          },
          "403": {
            "$ref": "#/components/responses/PermissionError"
          },
          "404": {
            "$ref": "#/components/responses/NotFoundError"
          },
          "429": {
            "$ref": "#/components/responses/RateLimitError"
          },
          "500": {
            "$ref": "#/components/responses/InternalError"
          }
        },
        "security": [
          {
            "BearerAuth": []
          }
        ],
        "summary": "Get asset",
        "tags": [
          "Asset management"
        ],
        "x-required-scopes": [
          "assets:read"
        ]
      },
      "patch": {
        "description": "Update asset. The operation uses JSON Merge Patch: omitted fields remain unchanged and documented nullable fields accept null. Unknown fields are rejected.",
        "operationId": "patchAssetsAssetId",
        "parameters": [
          {
            "description": "The asset identifier.",
            "in": "path",
            "name": "asset_id",
            "required": true,
            "schema": {
              "minimum": 1,
              "type": "integer"
            }
          }
        ],
        "requestBody": {
          "content": {
            "application/merge-patch+json": {
              "schema": {
                "$ref": "#/components/schemas/PatchAssetsAssetIdPayload"
              }
            }
          },
          "required": true
        },
        "responses": {
          "200": {
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/PatchAssetsAssetIdResult"
                }
              }
            },
            "description": "Update asset response."
          },
          "400": {
            "$ref": "#/components/responses/InvalidRequestError"
          },
          "401": {
            "$ref": "#/components/responses/AuthenticationError"
          },
          "403": {
            "$ref": "#/components/responses/PermissionError"
          },
          "404": {
            "$ref": "#/components/responses/NotFoundError"
          },
          "413": {
            "$ref": "#/components/responses/PayloadTooLargeError"
          },
          "415": {
            "$ref": "#/components/responses/UnsupportedMediaTypeError"
          },
          "429": {
            "$ref": "#/components/responses/RateLimitError"
          },
          "500": {
            "$ref": "#/components/responses/InternalError"
          }
        },
        "security": [
          {
            "BearerAuth": []
          }
        ],
        "summary": "Update asset",
        "tags": [
          "Asset management"
        ],
        "x-required-scopes": [
          "assets:write"
        ]
      }
    },
    "/assets/{asset_id}/links": {
      "get": {
        "description": "List asset links. Results include only resources visible to the authenticated caller; collections use their documented stable order and bounds.",
        "operationId": "getAssetsAssetIdLinks",
        "parameters": [
          {
            "description": "The asset identifier.",
            "in": "path",
            "name": "asset_id",
            "required": true,
            "schema": {
              "minimum": 1,
              "type": "integer"
            }
          }
        ],
        "responses": {
          "200": {
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/GetAssetsAssetIdLinksResult"
                }
              }
            },
            "description": "List asset links response."
          },
          "401": {
            "$ref": "#/components/responses/AuthenticationError"
          },
          "403": {
            "$ref": "#/components/responses/PermissionError"
          },
          "404": {
            "$ref": "#/components/responses/NotFoundError"
          },
          "429": {
            "$ref": "#/components/responses/RateLimitError"
          },
          "500": {
            "$ref": "#/components/responses/InternalError"
          }
        },
        "security": [
          {
            "BearerAuth": []
          }
        ],
        "summary": "List asset links",
        "tags": [
          "Asset management"
        ],
        "x-required-scopes": [
          "assets:read"
        ]
      },
      "post": {
        "description": "Create asset link. The server validates resource ownership and command preconditions before persisting changes. Unknown JSON fields are rejected when the operation accepts a body.",
        "operationId": "postAssetsAssetIdLinks",
        "parameters": [
          {
            "description": "The asset identifier.",
            "in": "path",
            "name": "asset_id",
            "required": true,
            "schema": {
              "minimum": 1,
              "type": "integer"
            }
          }
        ],
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/PostAssetsAssetIdLinksPayload"
              }
            }
          },
          "required": true
        },
        "responses": {
          "201": {
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/PostAssetsAssetIdLinksResult"
                }
              }
            },
            "description": "Create asset link response."
          },
          "400": {
            "$ref": "#/components/responses/InvalidRequestError"
          },
          "401": {
            "$ref": "#/components/responses/AuthenticationError"
          },
          "403": {
            "$ref": "#/components/responses/PermissionError"
          },
          "404": {
            "$ref": "#/components/responses/NotFoundError"
          },
          "413": {
            "$ref": "#/components/responses/PayloadTooLargeError"
          },
          "415": {
            "$ref": "#/components/responses/UnsupportedMediaTypeError"
          },
          "429": {
            "$ref": "#/components/responses/RateLimitError"
          },
          "500": {
            "$ref": "#/components/responses/InternalError"
          }
        },
        "security": [
          {
            "BearerAuth": []
          }
        ],
        "summary": "Create asset link",
        "tags": [
          "Asset management"
        ],
        "x-required-scopes": [
          "assets:write"
        ]
      }
    },
    "/assets/{asset_id}/relationship-graph": {
      "get": {
        "description": "Get asset relationship graph. Results include only resources visible to the authenticated caller; collections use their documented stable order and bounds.",
        "operationId": "getAssetsAssetIdRelationshipGraph",
        "parameters": [
          {
            "description": "The asset identifier.",
            "in": "path",
            "name": "asset_id",
            "required": true,
            "schema": {
              "minimum": 1,
              "type": "integer"
            }
          }
        ],
        "responses": {
          "200": {
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/GetAssetsAssetIdRelationshipGraphResult"
                }
              }
            },
            "description": "Get asset relationship graph response."
          },
          "401": {
            "$ref": "#/components/responses/AuthenticationError"
          },
          "403": {
            "$ref": "#/components/responses/PermissionError"
          },
          "404": {
            "$ref": "#/components/responses/NotFoundError"
          },
          "429": {
            "$ref": "#/components/responses/RateLimitError"
          },
          "500": {
            "$ref": "#/components/responses/InternalError"
          }
        },
        "security": [
          {
            "BearerAuth": []
          }
        ],
        "summary": "Get asset relationship graph",
        "tags": [
          "Asset management"
        ],
        "x-required-scopes": [
          "assets:read"
        ]
      }
    },
    "/attachments/{attachment_id}": {
      "delete": {
        "description": "Delete item attachment. The server verifies resource ownership and deletion preconditions before removing the resource.",
        "operationId": "deleteAttachmentsAttachmentId",
        "parameters": [
          {
            "description": "The attachment identifier.",
            "in": "path",
            "name": "attachment_id",
            "required": true,
            "schema": {
              "minimum": 1,
              "type": "integer"
            }
          }
        ],
        "responses": {
          "204": {
            "description": "Request completed successfully with no response body."
          },
          "401": {
            "$ref": "#/components/responses/AuthenticationError"
          },
          "403": {
            "$ref": "#/components/responses/PermissionError"
          },
          "404": {
            "$ref": "#/components/responses/NotFoundError"
          },
          "429": {
            "$ref": "#/components/responses/RateLimitError"
          },
          "500": {
            "$ref": "#/components/responses/InternalError"
          }
        },
        "security": [
          {
            "BearerAuth": []
          }
        ],
        "summary": "Delete item attachment",
        "tags": [
          "Work items"
        ],
        "x-required-scopes": [
          "items:write"
        ]
      },
      "get": {
        "description": "Get item attachment. Results include only resources visible to the authenticated caller; collections use their documented stable order and bounds.",
        "operationId": "getAttachmentsAttachmentId",
        "parameters": [
          {
            "description": "The attachment identifier.",
            "in": "path",
            "name": "attachment_id",
            "required": true,
            "schema": {
              "minimum": 1,
              "type": "integer"
            }
          }
        ],
        "responses": {
          "200": {
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/GetAttachmentsAttachmentIdResult"
                }
              }
            },
            "description": "Get item attachment response."
          },
          "401": {
            "$ref": "#/components/responses/AuthenticationError"
          },
          "403": {
            "$ref": "#/components/responses/PermissionError"
          },
          "404": {
            "$ref": "#/components/responses/NotFoundError"
          },
          "429": {
            "$ref": "#/components/responses/RateLimitError"
          },
          "500": {
            "$ref": "#/components/responses/InternalError"
          }
        },
        "security": [
          {
            "BearerAuth": []
          }
        ],
        "summary": "Get item attachment",
        "tags": [
          "Work items"
        ],
        "x-required-scopes": [
          "items:read"
        ]
      }
    },
    "/attachments/{attachment_id}/content": {
      "get": {
        "description": "Download item attachment. Results include only resources visible to the authenticated caller; collections use their documented stable order and bounds.",
        "operationId": "getAttachmentsAttachmentIdContent",
        "parameters": [
          {
            "description": "The attachment identifier.",
            "in": "path",
            "name": "attachment_id",
            "required": true,
            "schema": {
              "minimum": 1,
              "type": "integer"
            }
          }
        ],
        "responses": {
          "200": {
            "content": {
              "application/octet-stream": {
                "schema": {
                  "$ref": "#/components/schemas/GetAttachmentsAttachmentIdContentResult"
                }
              }
            },
            "description": "Download item attachment response."
          },
          "401": {
            "$ref": "#/components/responses/AuthenticationError"
          },
          "403": {
            "$ref": "#/components/responses/PermissionError"
          },
          "404": {
            "$ref": "#/components/responses/NotFoundError"
          },
          "429": {
            "$ref": "#/components/responses/RateLimitError"
          },
          "500": {
            "$ref": "#/components/responses/InternalError"
          }
        },
        "security": [
          {
            "BearerAuth": []
          }
        ],
        "summary": "Download item attachment",
        "tags": [
          "Work items"
        ],
        "x-required-scopes": [
          "items:read"
        ]
      }
    },
    "/attachments/{attachment_id}/thumbnail": {
      "get": {
        "description": "Get item attachment thumbnail. Results include only resources visible to the authenticated caller; collections use their documented stable order and bounds.",
        "operationId": "getAttachmentsAttachmentIdThumbnail",
        "parameters": [
          {
            "description": "The attachment identifier.",
            "in": "path",
            "name": "attachment_id",
            "required": true,
            "schema": {
              "minimum": 1,
              "type": "integer"
            }
          }
        ],
        "responses": {
          "200": {
            "content": {
              "application/octet-stream": {
                "schema": {
                  "$ref": "#/components/schemas/GetAttachmentsAttachmentIdThumbnailResult"
                }
              }
            },
            "description": "Get item attachment thumbnail response."
          },
          "401": {
            "$ref": "#/components/responses/AuthenticationError"
          },
          "403": {
            "$ref": "#/components/responses/PermissionError"
          },
          "404": {
            "$ref": "#/components/responses/NotFoundError"
          },
          "429": {
            "$ref": "#/components/responses/RateLimitError"
          },
          "500": {
            "$ref": "#/components/responses/InternalError"
          }
        },
        "security": [
          {
            "BearerAuth": []
          }
        ],
        "summary": "Get item attachment thumbnail",
        "tags": [
          "Work items"
        ],
        "x-required-scopes": [
          "items:read"
        ]
      }
    },
    "/collection-categories": {
      "get": {
        "description": "List collection categories. Results include only resources visible to the authenticated caller; collections use their documented stable order and bounds.",
        "operationId": "getCollectionCategories",
        "parameters": [
          {
            "description": "One-based page number.",
            "in": "query",
            "name": "page",
            "required": false,
            "schema": {
              "default": 1,
              "minimum": 1,
              "type": "integer"
            }
          },
          {
            "description": "Maximum number of resources to return.",
            "in": "query",
            "name": "page_size",
            "required": false,
            "schema": {
              "default": 50,
              "maximum": 100,
              "minimum": 1,
              "type": "integer"
            }
          }
        ],
        "responses": {
          "200": {
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/GetCollectionCategoriesResult"
                }
              }
            },
            "description": "List collection categories response."
          },
          "401": {
            "$ref": "#/components/responses/AuthenticationError"
          },
          "403": {
            "$ref": "#/components/responses/PermissionError"
          },
          "429": {
            "$ref": "#/components/responses/RateLimitError"
          },
          "500": {
            "$ref": "#/components/responses/InternalError"
          }
        },
        "security": [
          {
            "BearerAuth": []
          }
        ],
        "summary": "List collection categories",
        "tags": [
          "Planning"
        ],
        "x-required-scopes": [
          "collections:read"
        ]
      },
      "post": {
        "description": "Create collection category. The server validates resource ownership and command preconditions before persisting changes. Unknown JSON fields are rejected when the operation accepts a body.",
        "operationId": "postCollectionCategories",
        "parameters": [],
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/PostCollectionCategoriesPayload"
              }
            }
          },
          "required": true
        },
        "responses": {
          "201": {
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/PostCollectionCategoriesResult"
                }
              }
            },
            "description": "Create collection category response."
          },
          "400": {
            "$ref": "#/components/responses/InvalidRequestError"
          },
          "401": {
            "$ref": "#/components/responses/AuthenticationError"
          },
          "403": {
            "$ref": "#/components/responses/PermissionError"
          },
          "413": {
            "$ref": "#/components/responses/PayloadTooLargeError"
          },
          "415": {
            "$ref": "#/components/responses/UnsupportedMediaTypeError"
          },
          "429": {
            "$ref": "#/components/responses/RateLimitError"
          },
          "500": {
            "$ref": "#/components/responses/InternalError"
          }
        },
        "security": [
          {
            "BearerAuth": []
          }
        ],
        "summary": "Create collection category",
        "tags": [
          "Planning"
        ],
        "x-required-scopes": [
          "collections:write"
        ]
      }
    },
    "/collection-categories/{category_id}": {
      "delete": {
        "description": "Delete collection category. The server verifies resource ownership and deletion preconditions before removing the resource.",
        "operationId": "deleteCollectionCategoriesCategoryId",
        "parameters": [
          {
            "description": "The category identifier.",
            "in": "path",
            "name": "category_id",
            "required": true,
            "schema": {
              "minimum": 1,
              "type": "integer"
            }
          }
        ],
        "responses": {
          "204": {
            "description": "Request completed successfully with no response body."
          },
          "401": {
            "$ref": "#/components/responses/AuthenticationError"
          },
          "403": {
            "$ref": "#/components/responses/PermissionError"
          },
          "404": {
            "$ref": "#/components/responses/NotFoundError"
          },
          "429": {
            "$ref": "#/components/responses/RateLimitError"
          },
          "500": {
            "$ref": "#/components/responses/InternalError"
          }
        },
        "security": [
          {
            "BearerAuth": []
          }
        ],
        "summary": "Delete collection category",
        "tags": [
          "Planning"
        ],
        "x-required-scopes": [
          "collections:delete"
        ]
      },
      "get": {
        "description": "Get collection category. Results include only resources visible to the authenticated caller; collections use their documented stable order and bounds.",
        "operationId": "getCollectionCategoriesCategoryId",
        "parameters": [
          {
            "description": "The category identifier.",
            "in": "path",
            "name": "category_id",
            "required": true,
            "schema": {
              "minimum": 1,
              "type": "integer"
            }
          }
        ],
        "responses": {
          "200": {
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/GetCollectionCategoriesCategoryIdResult"
                }
              }
            },
            "description": "Get collection category response."
          },
          "401": {
            "$ref": "#/components/responses/AuthenticationError"
          },
          "403": {
            "$ref": "#/components/responses/PermissionError"
          },
          "404": {
            "$ref": "#/components/responses/NotFoundError"
          },
          "429": {
            "$ref": "#/components/responses/RateLimitError"
          },
          "500": {
            "$ref": "#/components/responses/InternalError"
          }
        },
        "security": [
          {
            "BearerAuth": []
          }
        ],
        "summary": "Get collection category",
        "tags": [
          "Planning"
        ],
        "x-required-scopes": [
          "collections:read"
        ]
      },
      "patch": {
        "description": "Patch collection category. The operation uses JSON Merge Patch: omitted fields remain unchanged and documented nullable fields accept null. Unknown fields are rejected.",
        "operationId": "patchCollectionCategoriesCategoryId",
        "parameters": [
          {
            "description": "The category identifier.",
            "in": "path",
            "name": "category_id",
            "required": true,
            "schema": {
              "minimum": 1,
              "type": "integer"
            }
          }
        ],
        "requestBody": {
          "content": {
            "application/merge-patch+json": {
              "schema": {
                "$ref": "#/components/schemas/PatchCollectionCategoriesCategoryIdPayload"
              }
            }
          },
          "required": true
        },
        "responses": {
          "200": {
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/PatchCollectionCategoriesCategoryIdResult"
                }
              }
            },
            "description": "Patch collection category response."
          },
          "400": {
            "$ref": "#/components/responses/InvalidRequestError"
          },
          "401": {
            "$ref": "#/components/responses/AuthenticationError"
          },
          "403": {
            "$ref": "#/components/responses/PermissionError"
          },
          "404": {
            "$ref": "#/components/responses/NotFoundError"
          },
          "413": {
            "$ref": "#/components/responses/PayloadTooLargeError"
          },
          "415": {
            "$ref": "#/components/responses/UnsupportedMediaTypeError"
          },
          "429": {
            "$ref": "#/components/responses/RateLimitError"
          },
          "500": {
            "$ref": "#/components/responses/InternalError"
          }
        },
        "security": [
          {
            "BearerAuth": []
          }
        ],
        "summary": "Patch collection category",
        "tags": [
          "Planning"
        ],
        "x-required-scopes": [
          "collections:write"
        ]
      }
    },
    "/collections": {
      "get": {
        "description": "List collections. Results include only resources visible to the authenticated caller; collections use their documented stable order and bounds.",
        "operationId": "getCollections",
        "parameters": [
          {
            "description": "One-based page number.",
            "in": "query",
            "name": "page",
            "required": false,
            "schema": {
              "default": 1,
              "minimum": 1,
              "type": "integer"
            }
          },
          {
            "description": "Maximum number of resources to return.",
            "in": "query",
            "name": "page_size",
            "required": false,
            "schema": {
              "default": 50,
              "maximum": 100,
              "minimum": 1,
              "type": "integer"
            }
          },
          {
            "description": "Restricts collections to one workspace.",
            "in": "query",
            "name": "workspace_id",
            "required": false,
            "schema": {
              "minimum": 1,
              "type": "integer"
            }
          },
          {
            "description": "Restricts collections to one category.",
            "in": "query",
            "name": "category_id",
            "required": false,
            "schema": {
              "minimum": 1,
              "type": "integer"
            }
          }
        ],
        "responses": {
          "200": {
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/GetCollectionsResult"
                }
              }
            },
            "description": "List collections response."
          },
          "401": {
            "$ref": "#/components/responses/AuthenticationError"
          },
          "403": {
            "$ref": "#/components/responses/PermissionError"
          },
          "429": {
            "$ref": "#/components/responses/RateLimitError"
          },
          "500": {
            "$ref": "#/components/responses/InternalError"
          }
        },
        "security": [
          {
            "BearerAuth": []
          }
        ],
        "summary": "List collections",
        "tags": [
          "Planning"
        ],
        "x-required-scopes": [
          "collections:read"
        ]
      },
      "post": {
        "description": "Create collection. The server validates resource ownership and command preconditions before persisting changes. Unknown JSON fields are rejected when the operation accepts a body.",
        "operationId": "postCollections",
        "parameters": [],
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/PostCollectionsPayload"
              }
            }
          },
          "required": true
        },
        "responses": {
          "201": {
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/PostCollectionsResult"
                }
              }
            },
            "description": "Create collection response."
          },
          "400": {
            "$ref": "#/components/responses/InvalidRequestError"
          },
          "401": {
            "$ref": "#/components/responses/AuthenticationError"
          },
          "403": {
            "$ref": "#/components/responses/PermissionError"
          },
          "413": {
            "$ref": "#/components/responses/PayloadTooLargeError"
          },
          "415": {
            "$ref": "#/components/responses/UnsupportedMediaTypeError"
          },
          "429": {
            "$ref": "#/components/responses/RateLimitError"
          },
          "500": {
            "$ref": "#/components/responses/InternalError"
          }
        },
        "security": [
          {
            "BearerAuth": []
          }
        ],
        "summary": "Create collection",
        "tags": [
          "Planning"
        ],
        "x-required-scopes": [
          "collections:write"
        ]
      }
    },
    "/collections/{collection_id}": {
      "delete": {
        "description": "Delete collection. The server verifies resource ownership and deletion preconditions before removing the resource.",
        "operationId": "deleteCollectionsCollectionId",
        "parameters": [
          {
            "description": "The collection identifier.",
            "in": "path",
            "name": "collection_id",
            "required": true,
            "schema": {
              "minimum": 1,
              "type": "integer"
            }
          }
        ],
        "responses": {
          "204": {
            "description": "Request completed successfully with no response body."
          },
          "401": {
            "$ref": "#/components/responses/AuthenticationError"
          },
          "403": {
            "$ref": "#/components/responses/PermissionError"
          },
          "404": {
            "$ref": "#/components/responses/NotFoundError"
          },
          "429": {
            "$ref": "#/components/responses/RateLimitError"
          },
          "500": {
            "$ref": "#/components/responses/InternalError"
          }
        },
        "security": [
          {
            "BearerAuth": []
          }
        ],
        "summary": "Delete collection",
        "tags": [
          "Planning"
        ],
        "x-required-scopes": [
          "collections:delete"
        ]
      },
      "get": {
        "description": "Get collection. Results include only resources visible to the authenticated caller; collections use their documented stable order and bounds.",
        "operationId": "getCollectionsCollectionId",
        "parameters": [
          {
            "description": "The collection identifier.",
            "in": "path",
            "name": "collection_id",
            "required": true,
            "schema": {
              "minimum": 1,
              "type": "integer"
            }
          }
        ],
        "responses": {
          "200": {
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/GetCollectionsCollectionIdResult"
                }
              }
            },
            "description": "Get collection response."
          },
          "401": {
            "$ref": "#/components/responses/AuthenticationError"
          },
          "403": {
            "$ref": "#/components/responses/PermissionError"
          },
          "404": {
            "$ref": "#/components/responses/NotFoundError"
          },
          "429": {
            "$ref": "#/components/responses/RateLimitError"
          },
          "500": {
            "$ref": "#/components/responses/InternalError"
          }
        },
        "security": [
          {
            "BearerAuth": []
          }
        ],
        "summary": "Get collection",
        "tags": [
          "Planning"
        ],
        "x-required-scopes": [
          "collections:read"
        ]
      },
      "patch": {
        "description": "Update collection. The operation uses JSON Merge Patch: omitted fields remain unchanged and documented nullable fields accept null. Unknown fields are rejected.",
        "operationId": "patchCollectionsCollectionId",
        "parameters": [
          {
            "description": "The collection identifier.",
            "in": "path",
            "name": "collection_id",
            "required": true,
            "schema": {
              "minimum": 1,
              "type": "integer"
            }
          }
        ],
        "requestBody": {
          "content": {
            "application/merge-patch+json": {
              "schema": {
                "$ref": "#/components/schemas/PatchCollectionsCollectionIdPayload"
              }
            }
          },
          "required": true
        },
        "responses": {
          "200": {
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/PatchCollectionsCollectionIdResult"
                }
              }
            },
            "description": "Update collection response."
          },
          "400": {
            "$ref": "#/components/responses/InvalidRequestError"
          },
          "401": {
            "$ref": "#/components/responses/AuthenticationError"
          },
          "403": {
            "$ref": "#/components/responses/PermissionError"
          },
          "404": {
            "$ref": "#/components/responses/NotFoundError"
          },
          "413": {
            "$ref": "#/components/responses/PayloadTooLargeError"
          },
          "415": {
            "$ref": "#/components/responses/UnsupportedMediaTypeError"
          },
          "429": {
            "$ref": "#/components/responses/RateLimitError"
          },
          "500": {
            "$ref": "#/components/responses/InternalError"
          }
        },
        "security": [
          {
            "BearerAuth": []
          }
        ],
        "summary": "Update collection",
        "tags": [
          "Planning"
        ],
        "x-required-scopes": [
          "collections:write"
        ]
      }
    },
    "/collections/{collection_id}/board-configuration": {
      "delete": {
        "description": "Delete collection board configuration. The server verifies resource ownership and deletion preconditions before removing the resource.",
        "operationId": "deleteCollectionsCollectionIdBoardConfiguration",
        "parameters": [
          {
            "description": "The collection identifier.",
            "in": "path",
            "name": "collection_id",
            "required": true,
            "schema": {
              "minimum": 1,
              "type": "integer"
            }
          }
        ],
        "responses": {
          "204": {
            "description": "Request completed successfully with no response body."
          },
          "401": {
            "$ref": "#/components/responses/AuthenticationError"
          },
          "403": {
            "$ref": "#/components/responses/PermissionError"
          },
          "404": {
            "$ref": "#/components/responses/NotFoundError"
          },
          "429": {
            "$ref": "#/components/responses/RateLimitError"
          },
          "500": {
            "$ref": "#/components/responses/InternalError"
          }
        },
        "security": [
          {
            "BearerAuth": []
          }
        ],
        "summary": "Delete collection board configuration",
        "tags": [
          "Planning"
        ],
        "x-required-scopes": [
          "collections:delete"
        ]
      },
      "get": {
        "description": "Get collection board configuration. Results include only resources visible to the authenticated caller; collections use their documented stable order and bounds.",
        "operationId": "getCollectionsCollectionIdBoardConfiguration",
        "parameters": [
          {
            "description": "The collection identifier.",
            "in": "path",
            "name": "collection_id",
            "required": true,
            "schema": {
              "minimum": 1,
              "type": "integer"
            }
          }
        ],
        "responses": {
          "200": {
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/GetCollectionsCollectionIdBoardConfigurationResult"
                }
              }
            },
            "description": "Get collection board configuration response."
          },
          "401": {
            "$ref": "#/components/responses/AuthenticationError"
          },
          "403": {
            "$ref": "#/components/responses/PermissionError"
          },
          "404": {
            "$ref": "#/components/responses/NotFoundError"
          },
          "429": {
            "$ref": "#/components/responses/RateLimitError"
          },
          "500": {
            "$ref": "#/components/responses/InternalError"
          }
        },
        "security": [
          {
            "BearerAuth": []
          }
        ],
        "summary": "Get collection board configuration",
        "tags": [
          "Planning"
        ],
        "x-required-scopes": [
          "collections:read"
        ]
      },
      "put": {
        "description": "Put collection board configuration. The server validates resource ownership and command preconditions before persisting changes. Unknown JSON fields are rejected when the operation accepts a body.",
        "operationId": "putCollectionsCollectionIdBoardConfiguration",
        "parameters": [
          {
            "description": "The collection identifier.",
            "in": "path",
            "name": "collection_id",
            "required": true,
            "schema": {
              "minimum": 1,
              "type": "integer"
            }
          }
        ],
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/PutCollectionsCollectionIdBoardConfigurationPayload"
              }
            }
          },
          "required": true
        },
        "responses": {
          "200": {
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/PutCollectionsCollectionIdBoardConfigurationResult"
                }
              }
            },
            "description": "Put collection board configuration response."
          },
          "400": {
            "$ref": "#/components/responses/InvalidRequestError"
          },
          "401": {
            "$ref": "#/components/responses/AuthenticationError"
          },
          "403": {
            "$ref": "#/components/responses/PermissionError"
          },
          "404": {
            "$ref": "#/components/responses/NotFoundError"
          },
          "413": {
            "$ref": "#/components/responses/PayloadTooLargeError"
          },
          "415": {
            "$ref": "#/components/responses/UnsupportedMediaTypeError"
          },
          "429": {
            "$ref": "#/components/responses/RateLimitError"
          },
          "500": {
            "$ref": "#/components/responses/InternalError"
          }
        },
        "security": [
          {
            "BearerAuth": []
          }
        ],
        "summary": "Put collection board configuration",
        "tags": [
          "Planning"
        ],
        "x-required-scopes": [
          "collections:write"
        ]
      }
    },
    "/collections/{collection_id}/board-configuration/bootstrap": {
      "get": {
        "description": "Get collection board configuration bootstrap. Results include only resources visible to the authenticated caller; collections use their documented stable order and bounds.",
        "operationId": "getCollectionsCollectionIdBoardConfigurationBootstrap",
        "parameters": [
          {
            "description": "The collection identifier.",
            "in": "path",
            "name": "collection_id",
            "required": true,
            "schema": {
              "minimum": 1,
              "type": "integer"
            }
          },
          {
            "description": "Workspace used for defaults when the collection has no saved board configuration.",
            "in": "query",
            "name": "workspace_id",
            "required": false,
            "schema": {
              "minimum": 1,
              "type": "integer"
            }
          }
        ],
        "responses": {
          "200": {
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/GetCollectionsCollectionIdBoardConfigurationBootstrapResult"
                }
              }
            },
            "description": "Get collection board configuration bootstrap response."
          },
          "401": {
            "$ref": "#/components/responses/AuthenticationError"
          },
          "403": {
            "$ref": "#/components/responses/PermissionError"
          },
          "404": {
            "$ref": "#/components/responses/NotFoundError"
          },
          "429": {
            "$ref": "#/components/responses/RateLimitError"
          },
          "500": {
            "$ref": "#/components/responses/InternalError"
          }
        },
        "security": [
          {
            "BearerAuth": []
          }
        ],
        "summary": "Get collection board configuration bootstrap",
        "tags": [
          "Planning"
        ],
        "x-required-scopes": [
          "collections:read"
        ]
      }
    },
    "/collections/{collection_id}/sharing": {
      "patch": {
        "description": "Update collection sharing. The operation uses JSON Merge Patch: omitted fields remain unchanged and documented nullable fields accept null. Unknown fields are rejected.",
        "operationId": "patchCollectionsCollectionIdSharing",
        "parameters": [
          {
            "description": "The collection identifier.",
            "in": "path",
            "name": "collection_id",
            "required": true,
            "schema": {
              "minimum": 1,
              "type": "integer"
            }
          }
        ],
        "requestBody": {
          "content": {
            "application/merge-patch+json": {
              "schema": {
                "$ref": "#/components/schemas/PatchCollectionsCollectionIdSharingPayload"
              }
            }
          },
          "required": true
        },
        "responses": {
          "200": {
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/PatchCollectionsCollectionIdSharingResult"
                }
              }
            },
            "description": "Update collection sharing response."
          },
          "400": {
            "$ref": "#/components/responses/InvalidRequestError"
          },
          "401": {
            "$ref": "#/components/responses/AuthenticationError"
          },
          "403": {
            "$ref": "#/components/responses/PermissionError"
          },
          "404": {
            "$ref": "#/components/responses/NotFoundError"
          },
          "409": {
            "description": "Slug conflict"
          },
          "413": {
            "$ref": "#/components/responses/PayloadTooLargeError"
          },
          "415": {
            "$ref": "#/components/responses/UnsupportedMediaTypeError"
          },
          "429": {
            "$ref": "#/components/responses/RateLimitError"
          },
          "500": {
            "$ref": "#/components/responses/InternalError"
          }
        },
        "security": [
          {
            "BearerAuth": []
          }
        ],
        "summary": "Update collection sharing",
        "tags": [
          "Planning"
        ],
        "x-required-scopes": [
          "collections:write"
        ]
      }
    },
    "/collections/{collection_id}/test-coverage/config": {
      "get": {
        "description": "Get collection test coverage config. Results include only resources visible to the authenticated caller; collections use their documented stable order and bounds.",
        "operationId": "getCollectionsCollectionIdTestCoverageConfig",
        "parameters": [
          {
            "description": "The collection identifier.",
            "in": "path",
            "name": "collection_id",
            "required": true,
            "schema": {
              "minimum": 1,
              "type": "integer"
            }
          }
        ],
        "responses": {
          "200": {
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/GetCollectionsCollectionIdTestCoverageConfigResult"
                }
              }
            },
            "description": "Get collection test coverage config response."
          },
          "401": {
            "$ref": "#/components/responses/AuthenticationError"
          },
          "403": {
            "$ref": "#/components/responses/PermissionError"
          },
          "404": {
            "$ref": "#/components/responses/NotFoundError"
          },
          "429": {
            "$ref": "#/components/responses/RateLimitError"
          },
          "500": {
            "$ref": "#/components/responses/InternalError"
          }
        },
        "security": [
          {
            "BearerAuth": []
          }
        ],
        "summary": "Get collection test coverage config",
        "tags": [
          "Test management"
        ],
        "x-required-scopes": [
          "tests:read"
        ]
      },
      "post": {
        "description": "Create collection test coverage config. The server validates resource ownership and command preconditions before persisting changes. Unknown JSON fields are rejected when the operation accepts a body.",
        "operationId": "postCollectionsCollectionIdTestCoverageConfig",
        "parameters": [
          {
            "description": "The collection identifier.",
            "in": "path",
            "name": "collection_id",
            "required": true,
            "schema": {
              "minimum": 1,
              "type": "integer"
            }
          }
        ],
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/PostCollectionsCollectionIdTestCoverageConfigPayload"
              }
            }
          },
          "required": true
        },
        "responses": {
          "201": {
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/PostCollectionsCollectionIdTestCoverageConfigResult"
                }
              }
            },
            "description": "Create collection test coverage config response."
          },
          "400": {
            "$ref": "#/components/responses/InvalidRequestError"
          },
          "401": {
            "$ref": "#/components/responses/AuthenticationError"
          },
          "403": {
            "$ref": "#/components/responses/PermissionError"
          },
          "404": {
            "$ref": "#/components/responses/NotFoundError"
          },
          "413": {
            "$ref": "#/components/responses/PayloadTooLargeError"
          },
          "415": {
            "$ref": "#/components/responses/UnsupportedMediaTypeError"
          },
          "429": {
            "$ref": "#/components/responses/RateLimitError"
          },
          "500": {
            "$ref": "#/components/responses/InternalError"
          }
        },
        "security": [
          {
            "BearerAuth": []
          }
        ],
        "summary": "Create collection test coverage config",
        "tags": [
          "Test management"
        ],
        "x-required-scopes": [
          "tests:write"
        ]
      }
    },
    "/collections/{collection_id}/test-coverage/config/{config_id}": {
      "delete": {
        "description": "Delete collection test coverage config. The server verifies resource ownership and deletion preconditions before removing the resource.",
        "operationId": "deleteCollectionsCollectionIdTestCoverageConfigConfigId",
        "parameters": [
          {
            "description": "The collection identifier.",
            "in": "path",
            "name": "collection_id",
            "required": true,
            "schema": {
              "minimum": 1,
              "type": "integer"
            }
          },
          {
            "description": "The config identifier.",
            "in": "path",
            "name": "config_id",
            "required": true,
            "schema": {
              "minimum": 1,
              "type": "integer"
            }
          }
        ],
        "responses": {
          "204": {
            "description": "Request completed successfully with no response body."
          },
          "401": {
            "$ref": "#/components/responses/AuthenticationError"
          },
          "403": {
            "$ref": "#/components/responses/PermissionError"
          },
          "404": {
            "$ref": "#/components/responses/NotFoundError"
          },
          "429": {
            "$ref": "#/components/responses/RateLimitError"
          },
          "500": {
            "$ref": "#/components/responses/InternalError"
          }
        },
        "security": [
          {
            "BearerAuth": []
          }
        ],
        "summary": "Delete collection test coverage config",
        "tags": [
          "Test management"
        ],
        "x-required-scopes": [
          "tests:write"
        ]
      },
      "patch": {
        "description": "Update collection test coverage config. The operation uses JSON Merge Patch: omitted fields remain unchanged and documented nullable fields accept null. Unknown fields are rejected.",
        "operationId": "patchCollectionsCollectionIdTestCoverageConfigConfigId",
        "parameters": [
          {
            "description": "The collection identifier.",
            "in": "path",
            "name": "collection_id",
            "required": true,
            "schema": {
              "minimum": 1,
              "type": "integer"
            }
          },
          {
            "description": "The config identifier.",
            "in": "path",
            "name": "config_id",
            "required": true,
            "schema": {
              "minimum": 1,
              "type": "integer"
            }
          }
        ],
        "requestBody": {
          "content": {
            "application/merge-patch+json": {
              "schema": {
                "$ref": "#/components/schemas/PatchCollectionsCollectionIdTestCoverageConfigConfigIdPayload"
              }
            }
          },
          "required": true
        },
        "responses": {
          "200": {
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/PatchCollectionsCollectionIdTestCoverageConfigConfigIdResult"
                }
              }
            },
            "description": "Update collection test coverage config response."
          },
          "400": {
            "$ref": "#/components/responses/InvalidRequestError"
          },
          "401": {
            "$ref": "#/components/responses/AuthenticationError"
          },
          "403": {
            "$ref": "#/components/responses/PermissionError"
          },
          "404": {
            "$ref": "#/components/responses/NotFoundError"
          },
          "413": {
            "$ref": "#/components/responses/PayloadTooLargeError"
          },
          "415": {
            "$ref": "#/components/responses/UnsupportedMediaTypeError"
          },
          "429": {
            "$ref": "#/components/responses/RateLimitError"
          },
          "500": {
            "$ref": "#/components/responses/InternalError"
          }
        },
        "security": [
          {
            "BearerAuth": []
          }
        ],
        "summary": "Update collection test coverage config",
        "tags": [
          "Test management"
        ],
        "x-required-scopes": [
          "tests:write"
        ]
      }
    },
    "/collections/{collection_id}/test-coverage/requirements": {
      "get": {
        "description": "List collection test coverage requirements. Results include only resources visible to the authenticated caller; collections use their documented stable order and bounds.",
        "operationId": "getCollectionsCollectionIdTestCoverageRequirements",
        "parameters": [
          {
            "description": "The collection identifier.",
            "in": "path",
            "name": "collection_id",
            "required": true,
            "schema": {
              "minimum": 1,
              "type": "integer"
            }
          },
          {
            "description": "One-based page number.",
            "in": "query",
            "name": "page",
            "required": false,
            "schema": {
              "default": 1,
              "minimum": 1,
              "type": "integer"
            }
          },
          {
            "description": "Maximum number of resources to return.",
            "in": "query",
            "name": "page_size",
            "required": false,
            "schema": {
              "default": 50,
              "maximum": 100,
              "minimum": 1,
              "type": "integer"
            }
          },
          {
            "description": "Restricts results by coverage state.",
            "in": "query",
            "name": "covered",
            "required": false,
            "schema": {
              "enum": [
                "true",
                "false"
              ],
              "type": "string"
            }
          },
          {
            "description": "Restricts requirements to one item type.",
            "in": "query",
            "name": "item_type_id",
            "required": false,
            "schema": {
              "minimum": 1,
              "type": "integer"
            }
          },
          {
            "description": "Case-insensitive requirement search.",
            "in": "query",
            "name": "search",
            "required": false,
            "schema": {
              "type": "string"
            }
          }
        ],
        "responses": {
          "200": {
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/GetCollectionsCollectionIdTestCoverageRequirementsResult"
                }
              }
            },
            "description": "List collection test coverage requirements response."
          },
          "401": {
            "$ref": "#/components/responses/AuthenticationError"
          },
          "403": {
            "$ref": "#/components/responses/PermissionError"
          },
          "404": {
            "$ref": "#/components/responses/NotFoundError"
          },
          "429": {
            "$ref": "#/components/responses/RateLimitError"
          },
          "500": {
            "$ref": "#/components/responses/InternalError"
          }
        },
        "security": [
          {
            "BearerAuth": []
          }
        ],
        "summary": "List collection test coverage requirements",
        "tags": [
          "Test management"
        ],
        "x-required-scopes": [
          "tests:read"
        ]
      }
    },
    "/collections/{collection_id}/test-coverage/summary": {
      "get": {
        "description": "Get collection test coverage summary. Results include only resources visible to the authenticated caller; collections use their documented stable order and bounds.",
        "operationId": "getCollectionsCollectionIdTestCoverageSummary",
        "parameters": [
          {
            "description": "The collection identifier.",
            "in": "path",
            "name": "collection_id",
            "required": true,
            "schema": {
              "minimum": 1,
              "type": "integer"
            }
          }
        ],
        "responses": {
          "200": {
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/GetCollectionsCollectionIdTestCoverageSummaryResult"
                }
              }
            },
            "description": "Get collection test coverage summary response."
          },
          "401": {
            "$ref": "#/components/responses/AuthenticationError"
          },
          "403": {
            "$ref": "#/components/responses/PermissionError"
          },
          "404": {
            "$ref": "#/components/responses/NotFoundError"
          },
          "429": {
            "$ref": "#/components/responses/RateLimitError"
          },
          "500": {
            "$ref": "#/components/responses/InternalError"
          }
        },
        "security": [
          {
            "BearerAuth": []
          }
        ],
        "summary": "Get collection test coverage summary",
        "tags": [
          "Test management"
        ],
        "x-required-scopes": [
          "tests:read"
        ]
      }
    },
    "/comments/{comment_id}": {
      "delete": {
        "description": "Delete comment. The server verifies resource ownership and deletion preconditions before removing the resource.",
        "operationId": "deleteCommentsCommentId",
        "parameters": [
          {
            "description": "The comment identifier.",
            "in": "path",
            "name": "comment_id",
            "required": true,
            "schema": {
              "minimum": 1,
              "type": "integer"
            }
          }
        ],
        "responses": {
          "204": {
            "description": "Request completed successfully with no response body."
          },
          "401": {
            "$ref": "#/components/responses/AuthenticationError"
          },
          "403": {
            "$ref": "#/components/responses/PermissionError"
          },
          "404": {
            "$ref": "#/components/responses/NotFoundError"
          },
          "429": {
            "$ref": "#/components/responses/RateLimitError"
          },
          "500": {
            "$ref": "#/components/responses/InternalError"
          }
        },
        "security": [
          {
            "BearerAuth": []
          }
        ],
        "summary": "Delete comment",
        "tags": [
          "Work items"
        ],
        "x-required-scopes": [
          "items:delete"
        ]
      },
      "get": {
        "description": "Get comment. Results include only resources visible to the authenticated caller; collections use their documented stable order and bounds.",
        "operationId": "getCommentsCommentId",
        "parameters": [
          {
            "description": "The comment identifier.",
            "in": "path",
            "name": "comment_id",
            "required": true,
            "schema": {
              "minimum": 1,
              "type": "integer"
            }
          }
        ],
        "responses": {
          "200": {
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/GetCommentsCommentIdResult"
                }
              }
            },
            "description": "Get comment response."
          },
          "401": {
            "$ref": "#/components/responses/AuthenticationError"
          },
          "403": {
            "$ref": "#/components/responses/PermissionError"
          },
          "404": {
            "$ref": "#/components/responses/NotFoundError"
          },
          "429": {
            "$ref": "#/components/responses/RateLimitError"
          },
          "500": {
            "$ref": "#/components/responses/InternalError"
          }
        },
        "security": [
          {
            "BearerAuth": []
          }
        ],
        "summary": "Get comment",
        "tags": [
          "Work items"
        ],
        "x-required-scopes": [
          "items:read"
        ]
      },
      "patch": {
        "description": "Update comment. The operation uses JSON Merge Patch: omitted fields remain unchanged and documented nullable fields accept null. Unknown fields are rejected.",
        "operationId": "patchCommentsCommentId",
        "parameters": [
          {
            "description": "The comment identifier.",
            "in": "path",
            "name": "comment_id",
            "required": true,
            "schema": {
              "minimum": 1,
              "type": "integer"
            }
          }
        ],
        "requestBody": {
          "content": {
            "application/merge-patch+json": {
              "schema": {
                "$ref": "#/components/schemas/PatchCommentsCommentIdPayload"
              }
            }
          },
          "required": true
        },
        "responses": {
          "200": {
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/PatchCommentsCommentIdResult"
                }
              }
            },
            "description": "Update comment response."
          },
          "400": {
            "$ref": "#/components/responses/InvalidRequestError"
          },
          "401": {
            "$ref": "#/components/responses/AuthenticationError"
          },
          "403": {
            "$ref": "#/components/responses/PermissionError"
          },
          "404": {
            "$ref": "#/components/responses/NotFoundError"
          },
          "413": {
            "$ref": "#/components/responses/PayloadTooLargeError"
          },
          "415": {
            "$ref": "#/components/responses/UnsupportedMediaTypeError"
          },
          "429": {
            "$ref": "#/components/responses/RateLimitError"
          },
          "500": {
            "$ref": "#/components/responses/InternalError"
          }
        },
        "security": [
          {
            "BearerAuth": []
          }
        ],
        "summary": "Update comment",
        "tags": [
          "Work items"
        ],
        "x-required-scopes": [
          "items:write"
        ]
      }
    },
    "/condition-sets": {
      "get": {
        "description": "List condition sets. Results include only resources visible to the authenticated caller; collections use their documented stable order and bounds.",
        "operationId": "getConditionSets",
        "parameters": [
          {
            "description": "One-based page number.",
            "in": "query",
            "name": "page",
            "required": false,
            "schema": {
              "default": 1,
              "minimum": 1,
              "type": "integer"
            }
          },
          {
            "description": "Maximum number of resources to return.",
            "in": "query",
            "name": "page_size",
            "required": false,
            "schema": {
              "default": 50,
              "maximum": 100,
              "minimum": 1,
              "type": "integer"
            }
          },
          {
            "description": "Restricts results to one workflow.",
            "in": "query",
            "name": "workflow_id",
            "required": false,
            "schema": {
              "minimum": 1,
              "type": "integer"
            }
          }
        ],
        "responses": {
          "200": {
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/GetConditionSetsResult"
                }
              }
            },
            "description": "List condition sets response."
          },
          "401": {
            "$ref": "#/components/responses/AuthenticationError"
          },
          "403": {
            "$ref": "#/components/responses/PermissionError"
          },
          "429": {
            "$ref": "#/components/responses/RateLimitError"
          },
          "500": {
            "$ref": "#/components/responses/InternalError"
          }
        },
        "security": [
          {
            "BearerAuth": []
          }
        ],
        "summary": "List condition sets",
        "tags": [
          "Governance"
        ],
        "x-required-scopes": [
          "workflows:read"
        ]
      },
      "post": {
        "description": "Create condition set. The server validates resource ownership and command preconditions before persisting changes. Unknown JSON fields are rejected when the operation accepts a body.",
        "operationId": "postConditionSets",
        "parameters": [],
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/PostConditionSetsPayload"
              }
            }
          },
          "required": true
        },
        "responses": {
          "201": {
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/PostConditionSetsResult"
                }
              }
            },
            "description": "Create condition set response."
          },
          "400": {
            "$ref": "#/components/responses/InvalidRequestError"
          },
          "401": {
            "$ref": "#/components/responses/AuthenticationError"
          },
          "403": {
            "$ref": "#/components/responses/PermissionError"
          },
          "413": {
            "$ref": "#/components/responses/PayloadTooLargeError"
          },
          "415": {
            "$ref": "#/components/responses/UnsupportedMediaTypeError"
          },
          "429": {
            "$ref": "#/components/responses/RateLimitError"
          },
          "500": {
            "$ref": "#/components/responses/InternalError"
          }
        },
        "security": [
          {
            "BearerAuth": []
          }
        ],
        "summary": "Create condition set",
        "tags": [
          "Governance"
        ],
        "x-required-scopes": [
          "workflows:write"
        ]
      }
    },
    "/condition-sets/{condition_set_id}": {
      "delete": {
        "description": "Delete condition set. The server verifies resource ownership and deletion preconditions before removing the resource.",
        "operationId": "deleteConditionSetsConditionSetId",
        "parameters": [
          {
            "description": "The condition set identifier.",
            "in": "path",
            "name": "condition_set_id",
            "required": true,
            "schema": {
              "minimum": 1,
              "type": "integer"
            }
          }
        ],
        "responses": {
          "204": {
            "description": "Request completed successfully with no response body."
          },
          "401": {
            "$ref": "#/components/responses/AuthenticationError"
          },
          "403": {
            "$ref": "#/components/responses/PermissionError"
          },
          "404": {
            "$ref": "#/components/responses/NotFoundError"
          },
          "429": {
            "$ref": "#/components/responses/RateLimitError"
          },
          "500": {
            "$ref": "#/components/responses/InternalError"
          }
        },
        "security": [
          {
            "BearerAuth": []
          }
        ],
        "summary": "Delete condition set",
        "tags": [
          "Governance"
        ],
        "x-required-scopes": [
          "workflows:write"
        ]
      },
      "get": {
        "description": "Get condition set. Results include only resources visible to the authenticated caller; collections use their documented stable order and bounds.",
        "operationId": "getConditionSetsConditionSetId",
        "parameters": [
          {
            "description": "The condition set identifier.",
            "in": "path",
            "name": "condition_set_id",
            "required": true,
            "schema": {
              "minimum": 1,
              "type": "integer"
            }
          }
        ],
        "responses": {
          "200": {
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/GetConditionSetsConditionSetIdResult"
                }
              }
            },
            "description": "Get condition set response."
          },
          "401": {
            "$ref": "#/components/responses/AuthenticationError"
          },
          "403": {
            "$ref": "#/components/responses/PermissionError"
          },
          "404": {
            "$ref": "#/components/responses/NotFoundError"
          },
          "429": {
            "$ref": "#/components/responses/RateLimitError"
          },
          "500": {
            "$ref": "#/components/responses/InternalError"
          }
        },
        "security": [
          {
            "BearerAuth": []
          }
        ],
        "summary": "Get condition set",
        "tags": [
          "Governance"
        ],
        "x-required-scopes": [
          "workflows:read"
        ]
      },
      "patch": {
        "description": "Patch condition set. The operation uses JSON Merge Patch: omitted fields remain unchanged and documented nullable fields accept null. Unknown fields are rejected.",
        "operationId": "patchConditionSetsConditionSetId",
        "parameters": [
          {
            "description": "The condition set identifier.",
            "in": "path",
            "name": "condition_set_id",
            "required": true,
            "schema": {
              "minimum": 1,
              "type": "integer"
            }
          }
        ],
        "requestBody": {
          "content": {
            "application/merge-patch+json": {
              "schema": {
                "$ref": "#/components/schemas/PatchConditionSetsConditionSetIdPayload"
              }
            }
          },
          "required": true
        },
        "responses": {
          "200": {
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/PatchConditionSetsConditionSetIdResult"
                }
              }
            },
            "description": "Patch condition set response."
          },
          "400": {
            "$ref": "#/components/responses/InvalidRequestError"
          },
          "401": {
            "$ref": "#/components/responses/AuthenticationError"
          },
          "403": {
            "$ref": "#/components/responses/PermissionError"
          },
          "404": {
            "$ref": "#/components/responses/NotFoundError"
          },
          "413": {
            "$ref": "#/components/responses/PayloadTooLargeError"
          },
          "415": {
            "$ref": "#/components/responses/UnsupportedMediaTypeError"
          },
          "429": {
            "$ref": "#/components/responses/RateLimitError"
          },
          "500": {
            "$ref": "#/components/responses/InternalError"
          }
        },
        "security": [
          {
            "BearerAuth": []
          }
        ],
        "summary": "Patch condition set",
        "tags": [
          "Governance"
        ],
        "x-required-scopes": [
          "workflows:write"
        ]
      }
    },
    "/custom-fields": {
      "get": {
        "description": "List custom fields. Results include only resources visible to the authenticated caller; collections use their documented stable order and bounds.",
        "operationId": "getCustomFields",
        "parameters": [],
        "responses": {
          "200": {
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/GetCustomFieldsResult"
                }
              }
            },
            "description": "List custom fields response."
          },
          "401": {
            "$ref": "#/components/responses/AuthenticationError"
          },
          "403": {
            "$ref": "#/components/responses/PermissionError"
          },
          "429": {
            "$ref": "#/components/responses/RateLimitError"
          },
          "500": {
            "$ref": "#/components/responses/InternalError"
          }
        },
        "security": [
          {
            "BearerAuth": []
          }
        ],
        "summary": "List custom fields",
        "tags": [
          "Workspace configuration"
        ],
        "x-required-scopes": [
          "custom-fields:read"
        ]
      }
    },
    "/custom-fields/{custom_field_id}": {
      "get": {
        "description": "Get custom field. Results include only resources visible to the authenticated caller; collections use their documented stable order and bounds.",
        "operationId": "getCustomFieldsCustomFieldId",
        "parameters": [
          {
            "description": "The custom field identifier.",
            "in": "path",
            "name": "custom_field_id",
            "required": true,
            "schema": {
              "minimum": 1,
              "type": "integer"
            }
          }
        ],
        "responses": {
          "200": {
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/GetCustomFieldsCustomFieldIdResult"
                }
              }
            },
            "description": "Get custom field response."
          },
          "401": {
            "$ref": "#/components/responses/AuthenticationError"
          },
          "403": {
            "$ref": "#/components/responses/PermissionError"
          },
          "404": {
            "$ref": "#/components/responses/NotFoundError"
          },
          "429": {
            "$ref": "#/components/responses/RateLimitError"
          },
          "500": {
            "$ref": "#/components/responses/InternalError"
          }
        },
        "security": [
          {
            "BearerAuth": []
          }
        ],
        "summary": "Get custom field",
        "tags": [
          "Workspace configuration"
        ],
        "x-required-scopes": [
          "custom-fields:read"
        ]
      }
    },
    "/item-diagrams/{diagram_id}": {
      "delete": {
        "description": "Delete item diagram. The server verifies resource ownership and deletion preconditions before removing the resource.",
        "operationId": "deleteItemDiagramsDiagramId",
        "parameters": [
          {
            "description": "The diagram identifier.",
            "in": "path",
            "name": "diagram_id",
            "required": true,
            "schema": {
              "minimum": 1,
              "type": "integer"
            }
          }
        ],
        "responses": {
          "204": {
            "description": "Request completed successfully with no response body."
          },
          "401": {
            "$ref": "#/components/responses/AuthenticationError"
          },
          "403": {
            "$ref": "#/components/responses/PermissionError"
          },
          "404": {
            "$ref": "#/components/responses/NotFoundError"
          },
          "429": {
            "$ref": "#/components/responses/RateLimitError"
          },
          "500": {
            "$ref": "#/components/responses/InternalError"
          }
        },
        "security": [
          {
            "BearerAuth": []
          }
        ],
        "summary": "Delete item diagram",
        "tags": [
          "Work items"
        ],
        "x-required-scopes": [
          "items:write"
        ]
      },
      "get": {
        "description": "Get item diagram. Results include only resources visible to the authenticated caller; collections use their documented stable order and bounds.",
        "operationId": "getItemDiagramsDiagramId",
        "parameters": [
          {
            "description": "The diagram identifier.",
            "in": "path",
            "name": "diagram_id",
            "required": true,
            "schema": {
              "minimum": 1,
              "type": "integer"
            }
          }
        ],
        "responses": {
          "200": {
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/GetItemDiagramsDiagramIdResult"
                }
              }
            },
            "description": "Get item diagram response."
          },
          "401": {
            "$ref": "#/components/responses/AuthenticationError"
          },
          "403": {
            "$ref": "#/components/responses/PermissionError"
          },
          "404": {
            "$ref": "#/components/responses/NotFoundError"
          },
          "429": {
            "$ref": "#/components/responses/RateLimitError"
          },
          "500": {
            "$ref": "#/components/responses/InternalError"
          }
        },
        "security": [
          {
            "BearerAuth": []
          }
        ],
        "summary": "Get item diagram",
        "tags": [
          "Work items"
        ],
        "x-required-scopes": [
          "items:read"
        ]
      },
      "patch": {
        "description": "Update item diagram. The operation uses JSON Merge Patch: omitted fields remain unchanged and documented nullable fields accept null. Unknown fields are rejected.",
        "operationId": "patchItemDiagramsDiagramId",
        "parameters": [
          {
            "description": "The diagram identifier.",
            "in": "path",
            "name": "diagram_id",
            "required": true,
            "schema": {
              "minimum": 1,
              "type": "integer"
            }
          }
        ],
        "requestBody": {
          "content": {
            "application/merge-patch+json": {
              "schema": {
                "$ref": "#/components/schemas/PatchItemDiagramsDiagramIdPayload"
              }
            }
          },
          "required": true
        },
        "responses": {
          "200": {
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/PatchItemDiagramsDiagramIdResult"
                }
              }
            },
            "description": "Update item diagram response."
          },
          "400": {
            "$ref": "#/components/responses/InvalidRequestError"
          },
          "401": {
            "$ref": "#/components/responses/AuthenticationError"
          },
          "403": {
            "$ref": "#/components/responses/PermissionError"
          },
          "404": {
            "$ref": "#/components/responses/NotFoundError"
          },
          "413": {
            "$ref": "#/components/responses/PayloadTooLargeError"
          },
          "415": {
            "$ref": "#/components/responses/UnsupportedMediaTypeError"
          },
          "429": {
            "$ref": "#/components/responses/RateLimitError"
          },
          "500": {
            "$ref": "#/components/responses/InternalError"
          }
        },
        "security": [
          {
            "BearerAuth": []
          }
        ],
        "summary": "Update item diagram",
        "tags": [
          "Work items"
        ],
        "x-required-scopes": [
          "items:write"
        ]
      }
    },
    "/item-types": {
      "get": {
        "description": "List item types. Results include only resources visible to the authenticated caller; collections use their documented stable order and bounds.",
        "operationId": "getItemTypes",
        "parameters": [],
        "responses": {
          "200": {
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/GetItemTypesResult"
                }
              }
            },
            "description": "List item types response."
          },
          "401": {
            "$ref": "#/components/responses/AuthenticationError"
          },
          "403": {
            "$ref": "#/components/responses/PermissionError"
          },
          "429": {
            "$ref": "#/components/responses/RateLimitError"
          },
          "500": {
            "$ref": "#/components/responses/InternalError"
          }
        },
        "security": [
          {
            "BearerAuth": []
          }
        ],
        "summary": "List item types",
        "tags": [
          "Workspace configuration"
        ],
        "x-required-scopes": [
          "item-types:read"
        ]
      },
      "post": {
        "description": "Create item type. The server validates resource ownership and command preconditions before persisting changes. Unknown JSON fields are rejected when the operation accepts a body.",
        "operationId": "postItemTypes",
        "parameters": [],
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/PostItemTypesPayload"
              }
            }
          },
          "required": true
        },
        "responses": {
          "201": {
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/PostItemTypesResult"
                }
              }
            },
            "description": "Create item type response."
          },
          "400": {
            "$ref": "#/components/responses/InvalidRequestError"
          },
          "401": {
            "$ref": "#/components/responses/AuthenticationError"
          },
          "403": {
            "$ref": "#/components/responses/PermissionError"
          },
          "413": {
            "$ref": "#/components/responses/PayloadTooLargeError"
          },
          "415": {
            "$ref": "#/components/responses/UnsupportedMediaTypeError"
          },
          "429": {
            "$ref": "#/components/responses/RateLimitError"
          },
          "500": {
            "$ref": "#/components/responses/InternalError"
          }
        },
        "security": [
          {
            "BearerAuth": []
          }
        ],
        "summary": "Create item type",
        "tags": [
          "Workspace configuration"
        ],
        "x-required-scopes": [
          "item-types:write"
        ]
      }
    },
    "/item-types/{item_type_id}": {
      "delete": {
        "description": "Delete item type. The server verifies resource ownership and deletion preconditions before removing the resource.",
        "operationId": "deleteItemTypesItemTypeId",
        "parameters": [
          {
            "description": "The item type identifier.",
            "in": "path",
            "name": "item_type_id",
            "required": true,
            "schema": {
              "minimum": 1,
              "type": "integer"
            }
          }
        ],
        "responses": {
          "204": {
            "description": "Request completed successfully with no response body."
          },
          "401": {
            "$ref": "#/components/responses/AuthenticationError"
          },
          "403": {
            "$ref": "#/components/responses/PermissionError"
          },
          "404": {
            "$ref": "#/components/responses/NotFoundError"
          },
          "429": {
            "$ref": "#/components/responses/RateLimitError"
          },
          "500": {
            "$ref": "#/components/responses/InternalError"
          }
        },
        "security": [
          {
            "BearerAuth": []
          }
        ],
        "summary": "Delete item type",
        "tags": [
          "Workspace configuration"
        ],
        "x-required-scopes": [
          "item-types:write"
        ]
      },
      "get": {
        "description": "Get item type. Results include only resources visible to the authenticated caller; collections use their documented stable order and bounds.",
        "operationId": "getItemTypesItemTypeId",
        "parameters": [
          {
            "description": "The item type identifier.",
            "in": "path",
            "name": "item_type_id",
            "required": true,
            "schema": {
              "minimum": 1,
              "type": "integer"
            }
          }
        ],
        "responses": {
          "200": {
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/GetItemTypesItemTypeIdResult"
                }
              }
            },
            "description": "Get item type response."
          },
          "401": {
            "$ref": "#/components/responses/AuthenticationError"
          },
          "403": {
            "$ref": "#/components/responses/PermissionError"
          },
          "404": {
            "$ref": "#/components/responses/NotFoundError"
          },
          "429": {
            "$ref": "#/components/responses/RateLimitError"
          },
          "500": {
            "$ref": "#/components/responses/InternalError"
          }
        },
        "security": [
          {
            "BearerAuth": []
          }
        ],
        "summary": "Get item type",
        "tags": [
          "Workspace configuration"
        ],
        "x-required-scopes": [
          "item-types:read"
        ]
      },
      "patch": {
        "description": "Patch item type. The operation uses JSON Merge Patch: omitted fields remain unchanged and documented nullable fields accept null. Unknown fields are rejected.",
        "operationId": "patchItemTypesItemTypeId",
        "parameters": [
          {
            "description": "The item type identifier.",
            "in": "path",
            "name": "item_type_id",
            "required": true,
            "schema": {
              "minimum": 1,
              "type": "integer"
            }
          }
        ],
        "requestBody": {
          "content": {
            "application/merge-patch+json": {
              "schema": {
                "$ref": "#/components/schemas/PatchItemTypesItemTypeIdPayload"
              }
            }
          },
          "required": true
        },
        "responses": {
          "200": {
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/PatchItemTypesItemTypeIdResult"
                }
              }
            },
            "description": "Patch item type response."
          },
          "400": {
            "$ref": "#/components/responses/InvalidRequestError"
          },
          "401": {
            "$ref": "#/components/responses/AuthenticationError"
          },
          "403": {
            "$ref": "#/components/responses/PermissionError"
          },
          "404": {
            "$ref": "#/components/responses/NotFoundError"
          },
          "413": {
            "$ref": "#/components/responses/PayloadTooLargeError"
          },
          "415": {
            "$ref": "#/components/responses/UnsupportedMediaTypeError"
          },
          "429": {
            "$ref": "#/components/responses/RateLimitError"
          },
          "500": {
            "$ref": "#/components/responses/InternalError"
          }
        },
        "security": [
          {
            "BearerAuth": []
          }
        ],
        "summary": "Patch item type",
        "tags": [
          "Workspace configuration"
        ],
        "x-required-scopes": [
          "item-types:write"
        ]
      }
    },
    "/items": {
      "get": {
        "description": "List items. Results include only resources visible to the authenticated caller; collections use their documented stable order and bounds.",
        "operationId": "getItems",
        "parameters": [
          {
            "description": "One-based page number.",
            "in": "query",
            "name": "page",
            "required": false,
            "schema": {
              "default": 1,
              "minimum": 1,
              "type": "integer"
            }
          },
          {
            "description": "Maximum number of resources to return.",
            "in": "query",
            "name": "page_size",
            "required": false,
            "schema": {
              "default": 50,
              "maximum": 100,
              "minimum": 1,
              "type": "integer"
            }
          },
          {
            "description": "Restrict items to this workspace. Ignored when collection_id is present.",
            "in": "query",
            "name": "workspace_id",
            "required": false,
            "schema": {
              "minimum": 1,
              "type": "integer"
            }
          },
          {
            "description": "Evaluate the saved collection and restrict results to its membership. Takes precedence over workspace_id.",
            "in": "query",
            "name": "collection_id",
            "required": false,
            "schema": {
              "minimum": 1,
              "type": "integer"
            }
          },
          {
            "description": "QL expression used as the primary item filter. When present, structured filters other than search and status inclusion/exclusion are ignored.",
            "in": "query",
            "name": "ql",
            "required": false,
            "schema": {
              "minLength": 1,
              "type": "string"
            }
          },
          {
            "description": "Additional QL expression combined with the primary collection or QL filter.",
            "in": "query",
            "name": "sub_ql",
            "required": false,
            "schema": {
              "minLength": 1,
              "type": "string"
            }
          },
          {
            "description": "Case-insensitive text search applied to item content.",
            "in": "query",
            "name": "search",
            "required": false,
            "schema": {
              "type": "string"
            }
          },
          {
            "description": "Comma-separated status IDs to include.",
            "in": "query",
            "name": "status_id",
            "required": false,
            "schema": {
              "pattern": "^[1-9][0-9]*(,[1-9][0-9]*)*$",
              "type": "string"
            }
          },
          {
            "description": "Comma-separated status IDs to exclude.",
            "in": "query",
            "name": "status_id_not",
            "required": false,
            "schema": {
              "pattern": "^[1-9][0-9]*(,[1-9][0-9]*)*$",
              "type": "string"
            }
          },
          {
            "description": "Restrict items to one priority.",
            "in": "query",
            "name": "priority_id",
            "required": false,
            "schema": {
              "minimum": 0,
              "type": "integer"
            }
          },
          {
            "description": "Restrict items to one assignee.",
            "in": "query",
            "name": "assignee_id",
            "required": false,
            "schema": {
              "minimum": 0,
              "type": "integer"
            }
          },
          {
            "description": "Restrict items to one item type.",
            "in": "query",
            "name": "item_type_id",
            "required": false,
            "schema": {
              "minimum": 0,
              "type": "integer"
            }
          },
          {
            "description": "Restrict items to one iteration.",
            "in": "query",
            "name": "iteration_id",
            "required": false,
            "schema": {
              "minimum": 0,
              "type": "integer"
            }
          },
          {
            "description": "Restrict items to one milestone.",
            "in": "query",
            "name": "milestone_id",
            "required": false,
            "schema": {
              "minimum": 0,
              "type": "integer"
            }
          },
          {
            "description": "Restrict the collection to one item ID.",
            "in": "query",
            "name": "id",
            "required": false,
            "schema": {
              "minimum": 0,
              "type": "integer"
            }
          },
          {
            "description": "Restrict items to one parent ID. Use the literal `null` for top-level items.",
            "in": "query",
            "name": "parent_id",
            "required": false,
            "schema": {
              "pattern": "^(null|[0-9]+)$",
              "type": "string"
            }
          },
          {
            "description": "Restrict items to an exact hierarchy level.",
            "in": "query",
            "name": "level",
            "required": false,
            "schema": {
              "minimum": 0,
              "type": "integer"
            }
          },
          {
            "description": "Restrict items to this hierarchy level or shallower.",
            "in": "query",
            "name": "max_level",
            "required": false,
            "schema": {
              "minimum": 0,
              "type": "integer"
            }
          },
          {
            "description": "Include items created on or after this ISO date.",
            "in": "query",
            "name": "created_since",
            "required": false,
            "schema": {
              "format": "date",
              "type": "string"
            }
          },
          {
            "description": "For completed statuses, include only items completed on or after this ISO date; incomplete items remain included.",
            "in": "query",
            "name": "completed_since",
            "required": false,
            "schema": {
              "format": "date",
              "type": "string"
            }
          },
          {
            "description": "Sort by a system field key or numeric custom-field ID. Prefix with `-` for descending order.",
            "in": "query",
            "name": "sort",
            "required": false,
            "schema": {
              "type": "string"
            }
          },
          {
            "description": "Opaque continuation cursor returned in meta.next_cursor. Supported only for an unfiltered workspace list.",
            "in": "query",
            "name": "cursor",
            "required": false,
            "schema": {
              "minLength": 1,
              "type": "string"
            }
          },
          {
            "description": "Use `summary` to omit item descriptions from list rows.",
            "in": "query",
            "name": "fields",
            "required": false,
            "schema": {
              "enum": [
                "summary"
              ],
              "type": "string"
            }
          },
          {
            "description": "Include the current item-change watermark in response metadata.",
            "in": "query",
            "name": "include_watermark",
            "required": false,
            "schema": {
              "default": false,
              "type": "boolean"
            }
          }
        ],
        "responses": {
          "200": {
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/GetItemsResult"
                }
              }
            },
            "description": "List items response."
          },
          "400": {
            "$ref": "#/components/responses/InvalidRequestError"
          },
          "401": {
            "$ref": "#/components/responses/AuthenticationError"
          },
          "403": {
            "$ref": "#/components/responses/PermissionError"
          },
          "429": {
            "$ref": "#/components/responses/RateLimitError"
          },
          "500": {
            "$ref": "#/components/responses/InternalError"
          }
        },
        "security": [
          {
            "BearerAuth": []
          }
        ],
        "summary": "List items",
        "tags": [
          "Work items"
        ],
        "x-required-scopes": [
          "items:read"
        ]
      },
      "post": {
        "description": "Create item. The server validates resource ownership and command preconditions before persisting changes. Unknown JSON fields are rejected when the operation accepts a body.",
        "operationId": "postItems",
        "parameters": [],
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/PostItemsPayload"
              }
            }
          },
          "required": true
        },
        "responses": {
          "201": {
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/PostItemsResult"
                }
              }
            },
            "description": "Create item response."
          },
          "400": {
            "$ref": "#/components/responses/InvalidRequestError"
          },
          "401": {
            "$ref": "#/components/responses/AuthenticationError"
          },
          "403": {
            "$ref": "#/components/responses/PermissionError"
          },
          "413": {
            "$ref": "#/components/responses/PayloadTooLargeError"
          },
          "415": {
            "$ref": "#/components/responses/UnsupportedMediaTypeError"
          },
          "429": {
            "$ref": "#/components/responses/RateLimitError"
          },
          "500": {
            "$ref": "#/components/responses/InternalError"
          }
        },
        "security": [
          {
            "BearerAuth": []
          }
        ],
        "summary": "Create item",
        "tags": [
          "Work items"
        ],
        "x-required-scopes": [
          "items:write"
        ]
      }
    },
    "/items/backlog": {
      "get": {
        "description": "List item backlog. Results include only resources visible to the authenticated caller; collections use their documented stable order and bounds.",
        "operationId": "getItemsBacklog",
        "parameters": [
          {
            "description": "One-based page number.",
            "in": "query",
            "name": "page",
            "required": false,
            "schema": {
              "default": 1,
              "minimum": 1,
              "type": "integer"
            }
          },
          {
            "description": "Maximum number of resources to return.",
            "in": "query",
            "name": "page_size",
            "required": false,
            "schema": {
              "default": 50,
              "maximum": 100,
              "minimum": 1,
              "type": "integer"
            }
          },
          {
            "description": "Restrict items to this workspace. Ignored when collection_id is present.",
            "in": "query",
            "name": "workspace_id",
            "required": false,
            "schema": {
              "minimum": 1,
              "type": "integer"
            }
          },
          {
            "description": "Evaluate the saved collection and restrict results to its membership. Takes precedence over workspace_id.",
            "in": "query",
            "name": "collection_id",
            "required": false,
            "schema": {
              "minimum": 1,
              "type": "integer"
            }
          },
          {
            "description": "QL expression used as the primary item filter. When present, structured filters other than search and status inclusion/exclusion are ignored.",
            "in": "query",
            "name": "ql",
            "required": false,
            "schema": {
              "minLength": 1,
              "type": "string"
            }
          },
          {
            "description": "Additional QL expression combined with the primary collection or QL filter.",
            "in": "query",
            "name": "sub_ql",
            "required": false,
            "schema": {
              "minLength": 1,
              "type": "string"
            }
          },
          {
            "description": "Use `summary` to omit item descriptions from list rows.",
            "in": "query",
            "name": "fields",
            "required": false,
            "schema": {
              "enum": [
                "summary"
              ],
              "type": "string"
            }
          },
          {
            "description": "Include the current item-change watermark in response metadata.",
            "in": "query",
            "name": "include_watermark",
            "required": false,
            "schema": {
              "default": false,
              "type": "boolean"
            }
          }
        ],
        "responses": {
          "200": {
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/GetItemsBacklogResult"
                }
              }
            },
            "description": "List item backlog response."
          },
          "400": {
            "$ref": "#/components/responses/InvalidRequestError"
          },
          "401": {
            "$ref": "#/components/responses/AuthenticationError"
          },
          "403": {
            "$ref": "#/components/responses/PermissionError"
          },
          "429": {
            "$ref": "#/components/responses/RateLimitError"
          },
          "500": {
            "$ref": "#/components/responses/InternalError"
          }
        },
        "security": [
          {
            "BearerAuth": []
          }
        ],
        "summary": "List item backlog",
        "tags": [
          "Work items"
        ],
        "x-required-scopes": [
          "items:read"
        ]
      }
    },
    "/items/batch": {
      "post": {
        "description": "Returns a bounded projection for up to 500 IDs. IDs are deduplicated by first occurrence; visible matches preserve request order, and missing or unauthorized resources are omitted without revealing which case applied. Results reflect committed state at request time and are all-or-nothing on computation failure.",
        "operationId": "postItemsBatch",
        "parameters": [],
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/PostItemsBatchPayload"
              }
            }
          },
          "required": true
        },
        "responses": {
          "200": {
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/PostItemsBatchResult"
                }
              }
            },
            "description": "Get items batch response."
          },
          "400": {
            "$ref": "#/components/responses/InvalidRequestError"
          },
          "401": {
            "$ref": "#/components/responses/AuthenticationError"
          },
          "403": {
            "$ref": "#/components/responses/PermissionError"
          },
          "413": {
            "$ref": "#/components/responses/PayloadTooLargeError"
          },
          "415": {
            "$ref": "#/components/responses/UnsupportedMediaTypeError"
          },
          "429": {
            "$ref": "#/components/responses/RateLimitError"
          },
          "500": {
            "$ref": "#/components/responses/InternalError"
          }
        },
        "security": [
          {
            "BearerAuth": []
          }
        ],
        "summary": "Get items batch",
        "tags": [
          "Work items"
        ],
        "x-required-scopes": [
          "items:read"
        ]
      }
    },
    "/items/bulk-patch": {
      "post": {
        "description": "Bulk patch items. The server validates resource ownership and command preconditions before persisting changes. Unknown JSON fields are rejected when the operation accepts a body.",
        "operationId": "postItemsBulkPatch",
        "parameters": [],
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/PostItemsBulkPatchPayload"
              }
            }
          },
          "required": true
        },
        "responses": {
          "200": {
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/PostItemsBulkPatchResult"
                }
              }
            },
            "description": "Bulk patch items response."
          },
          "400": {
            "$ref": "#/components/responses/InvalidRequestError"
          },
          "401": {
            "$ref": "#/components/responses/AuthenticationError"
          },
          "403": {
            "$ref": "#/components/responses/PermissionError"
          },
          "413": {
            "$ref": "#/components/responses/PayloadTooLargeError"
          },
          "415": {
            "$ref": "#/components/responses/UnsupportedMediaTypeError"
          },
          "429": {
            "$ref": "#/components/responses/RateLimitError"
          },
          "500": {
            "$ref": "#/components/responses/InternalError"
          }
        },
        "security": [
          {
            "BearerAuth": []
          }
        ],
        "summary": "Bulk patch items",
        "tags": [
          "Work items"
        ],
        "x-required-scopes": [
          "items:write"
        ]
      }
    },
    "/items/bulk-update": {
      "post": {
        "description": "Bulk update items. The server validates resource ownership and command preconditions before persisting changes. Unknown JSON fields are rejected when the operation accepts a body.",
        "operationId": "postItemsBulkUpdate",
        "parameters": [],
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/PostItemsBulkUpdatePayload"
              }
            }
          },
          "required": true
        },
        "responses": {
          "200": {
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/PostItemsBulkUpdateResult"
                }
              }
            },
            "description": "Bulk update items response."
          },
          "400": {
            "$ref": "#/components/responses/InvalidRequestError"
          },
          "401": {
            "$ref": "#/components/responses/AuthenticationError"
          },
          "403": {
            "$ref": "#/components/responses/PermissionError"
          },
          "413": {
            "$ref": "#/components/responses/PayloadTooLargeError"
          },
          "415": {
            "$ref": "#/components/responses/UnsupportedMediaTypeError"
          },
          "429": {
            "$ref": "#/components/responses/RateLimitError"
          },
          "500": {
            "$ref": "#/components/responses/InternalError"
          }
        },
        "security": [
          {
            "BearerAuth": []
          }
        ],
        "summary": "Bulk update items",
        "tags": [
          "Work items"
        ],
        "x-required-scopes": [
          "items:write"
        ]
      }
    },
    "/items/changes": {
      "get": {
        "description": "Get item changes. Results include only resources visible to the authenticated caller; collections use their documented stable order and bounds.",
        "operationId": "getItemsChanges",
        "parameters": [
          {
            "description": "Restrict items to this workspace. Ignored when collection_id is present.",
            "in": "query",
            "name": "workspace_id",
            "required": false,
            "schema": {
              "minimum": 1,
              "type": "integer"
            }
          },
          {
            "description": "Evaluate the saved collection and restrict results to its membership. Takes precedence over workspace_id.",
            "in": "query",
            "name": "collection_id",
            "required": false,
            "schema": {
              "minimum": 1,
              "type": "integer"
            }
          },
          {
            "description": "Return changes after this non-negative item-change watermark. Omit it to request a full-reload decision.",
            "in": "query",
            "name": "since",
            "required": false,
            "schema": {
              "format": "int64",
              "minimum": 0,
              "type": "integer"
            }
          },
          {
            "description": "Additional QL expression combined with the primary collection or QL filter.",
            "in": "query",
            "name": "sub_ql",
            "required": false,
            "schema": {
              "minLength": 1,
              "type": "string"
            }
          }
        ],
        "responses": {
          "200": {
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/GetItemsChangesResult"
                }
              }
            },
            "description": "Get item changes response."
          },
          "400": {
            "$ref": "#/components/responses/InvalidRequestError"
          },
          "401": {
            "$ref": "#/components/responses/AuthenticationError"
          },
          "403": {
            "$ref": "#/components/responses/PermissionError"
          },
          "429": {
            "$ref": "#/components/responses/RateLimitError"
          },
          "500": {
            "$ref": "#/components/responses/InternalError"
          }
        },
        "security": [
          {
            "BearerAuth": []
          }
        ],
        "summary": "Get item changes",
        "tags": [
          "Work items"
        ],
        "x-required-scopes": [
          "items:read"
        ]
      }
    },
    "/items/roadmap-hierarchy-dates": {
      "post": {
        "description": "Get item roadmap hierarchy dates. The server validates resource ownership and command preconditions before persisting changes. Unknown JSON fields are rejected when the operation accepts a body.",
        "operationId": "postItemsRoadmapHierarchyDates",
        "parameters": [],
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/PostItemsRoadmapHierarchyDatesPayload"
              }
            }
          },
          "required": true
        },
        "responses": {
          "200": {
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/PostItemsRoadmapHierarchyDatesResult"
                }
              }
            },
            "description": "Get item roadmap hierarchy dates response."
          },
          "400": {
            "$ref": "#/components/responses/InvalidRequestError"
          },
          "401": {
            "$ref": "#/components/responses/AuthenticationError"
          },
          "403": {
            "$ref": "#/components/responses/PermissionError"
          },
          "413": {
            "$ref": "#/components/responses/PayloadTooLargeError"
          },
          "415": {
            "$ref": "#/components/responses/UnsupportedMediaTypeError"
          },
          "429": {
            "$ref": "#/components/responses/RateLimitError"
          },
          "500": {
            "$ref": "#/components/responses/InternalError"
          }
        },
        "security": [
          {
            "BearerAuth": []
          }
        ],
        "summary": "Get item roadmap hierarchy dates",
        "tags": [
          "Work items"
        ],
        "x-required-scopes": [
          "items:read"
        ]
      }
    },
    "/items/{item_id}": {
      "delete": {
        "description": "Delete item. The server verifies resource ownership and deletion preconditions before removing the resource.",
        "operationId": "deleteItemsItemId",
        "parameters": [
          {
            "description": "The item identifier.",
            "in": "path",
            "name": "item_id",
            "required": true,
            "schema": {
              "minimum": 1,
              "type": "integer"
            }
          }
        ],
        "responses": {
          "204": {
            "description": "Request completed successfully with no response body."
          },
          "401": {
            "$ref": "#/components/responses/AuthenticationError"
          },
          "403": {
            "$ref": "#/components/responses/PermissionError"
          },
          "404": {
            "$ref": "#/components/responses/NotFoundError"
          },
          "429": {
            "$ref": "#/components/responses/RateLimitError"
          },
          "500": {
            "$ref": "#/components/responses/InternalError"
          }
        },
        "security": [
          {
            "BearerAuth": []
          }
        ],
        "summary": "Delete item",
        "tags": [
          "Work items"
        ],
        "x-required-scopes": [
          "items:delete"
        ]
      },
      "get": {
        "description": "Returns one authorization-checked item. A positive integer path value is resolved as the immutable item ID; only a non-numeric KEY-NUMBER value falls back to case-insensitive workspace-key lookup. Malformed references return 400, while missing or inaccessible items return the same 404 contract.",
        "operationId": "getItemsItemId",
        "parameters": [
          {
            "description": "Positive integer item ID, or a KEY-NUMBER item key when no integer ID is available. Numeric values are always resolved as IDs.",
            "in": "path",
            "name": "item_id",
            "required": true,
            "schema": {
              "oneOf": [
                {
                  "example": 123,
                  "minimum": 1,
                  "type": "integer"
                },
                {
                  "example": "WI-1238",
                  "pattern": "^[A-Za-z0-9]{2,10}-[1-9][0-9]*$",
                  "type": "string"
                }
              ]
            }
          }
        ],
        "responses": {
          "200": {
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/GetItemsItemIdResult"
                }
              }
            },
            "description": "Get item response."
          },
          "400": {
            "$ref": "#/components/responses/InvalidRequestError"
          },
          "401": {
            "$ref": "#/components/responses/AuthenticationError"
          },
          "403": {
            "$ref": "#/components/responses/PermissionError"
          },
          "404": {
            "$ref": "#/components/responses/NotFoundError"
          },
          "429": {
            "$ref": "#/components/responses/RateLimitError"
          },
          "500": {
            "$ref": "#/components/responses/InternalError"
          }
        },
        "security": [
          {
            "BearerAuth": []
          }
        ],
        "summary": "Get item",
        "tags": [
          "Work items"
        ],
        "x-required-scopes": [
          "items:read"
        ]
      },
      "patch": {
        "description": "Patch item. The operation uses JSON Merge Patch: omitted fields remain unchanged and documented nullable fields accept null. Unknown fields are rejected.",
        "operationId": "patchItemsItemId",
        "parameters": [
          {
            "description": "The item identifier.",
            "in": "path",
            "name": "item_id",
            "required": true,
            "schema": {
              "minimum": 1,
              "type": "integer"
            }
          }
        ],
        "requestBody": {
          "content": {
            "application/merge-patch+json": {
              "schema": {
                "$ref": "#/components/schemas/PatchItemsItemIdPayload"
              }
            }
          },
          "required": true
        },
        "responses": {
          "200": {
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/PatchItemsItemIdResult"
                }
              }
            },
            "description": "Patch item response."
          },
          "400": {
            "$ref": "#/components/responses/InvalidRequestError"
          },
          "401": {
            "$ref": "#/components/responses/AuthenticationError"
          },
          "403": {
            "$ref": "#/components/responses/PermissionError"
          },
          "404": {
            "$ref": "#/components/responses/NotFoundError"
          },
          "413": {
            "$ref": "#/components/responses/PayloadTooLargeError"
          },
          "415": {
            "$ref": "#/components/responses/UnsupportedMediaTypeError"
          },
          "429": {
            "$ref": "#/components/responses/RateLimitError"
          },
          "500": {
            "$ref": "#/components/responses/InternalError"
          }
        },
        "security": [
          {
            "BearerAuth": []
          }
        ],
        "summary": "Patch item",
        "tags": [
          "Work items"
        ],
        "x-required-scopes": [
          "items:write"
        ]
      }
    },
    "/items/{item_id}/agent-runs": {
      "get": {
        "description": "Returns at most 200 visible agent runs in stable newest-first ID order. next_cursor resumes exclusively before the final returned run; private verification runs and unauthorized runs are omitted.",
        "operationId": "getItemsItemIdAgentRuns",
        "parameters": [
          {
            "description": "The item identifier.",
            "in": "path",
            "name": "item_id",
            "required": true,
            "schema": {
              "minimum": 1,
              "type": "integer"
            }
          },
          {
            "description": "Opaque continuation cursor returned by the preceding response. Cursors are operation-specific and cannot be combined with removed timestamp or ID boundaries.",
            "in": "query",
            "name": "cursor",
            "required": false,
            "schema": {
              "minLength": 1,
              "type": "string"
            }
          },
          {
            "description": "Maximum number of resources to return.",
            "in": "query",
            "name": "page_size",
            "required": false,
            "schema": {
              "default": 50,
              "maximum": 200,
              "minimum": 1,
              "type": "integer"
            }
          }
        ],
        "responses": {
          "200": {
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/GetItemsItemIdAgentRunsResult"
                }
              }
            },
            "description": "List item agent runs response."
          },
          "401": {
            "$ref": "#/components/responses/AuthenticationError"
          },
          "403": {
            "$ref": "#/components/responses/PermissionError"
          },
          "404": {
            "$ref": "#/components/responses/NotFoundError"
          },
          "429": {
            "$ref": "#/components/responses/RateLimitError"
          },
          "500": {
            "$ref": "#/components/responses/InternalError"
          }
        },
        "security": [
          {
            "BearerAuth": []
          }
        ],
        "summary": "List item agent runs",
        "tags": [
          "Agents"
        ],
        "x-required-scopes": [
          "items:read"
        ]
      },
      "post": {
        "description": "Rerun agent. The server validates resource ownership and command preconditions before persisting changes. Unknown JSON fields are rejected when the operation accepts a body.",
        "operationId": "postItemsItemIdAgentRuns",
        "parameters": [
          {
            "description": "The item identifier.",
            "in": "path",
            "name": "item_id",
            "required": true,
            "schema": {
              "minimum": 1,
              "type": "integer"
            }
          }
        ],
        "responses": {
          "200": {
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/PostItemsItemIdAgentRunsResult"
                }
              }
            },
            "description": "Rerun agent response."
          },
          "401": {
            "$ref": "#/components/responses/AuthenticationError"
          },
          "403": {
            "$ref": "#/components/responses/PermissionError"
          },
          "404": {
            "$ref": "#/components/responses/NotFoundError"
          },
          "429": {
            "$ref": "#/components/responses/RateLimitError"
          },
          "500": {
            "$ref": "#/components/responses/InternalError"
          }
        },
        "security": [
          {
            "BearerAuth": []
          }
        ],
        "summary": "Rerun agent",
        "tags": [
          "Agents"
        ],
        "x-required-scopes": [
          "items:write"
        ]
      }
    },
    "/items/{item_id}/ancestors": {
      "get": {
        "description": "List item ancestors. Results include only resources visible to the authenticated caller; collections use their documented stable order and bounds.",
        "operationId": "getItemsItemIdAncestors",
        "parameters": [
          {
            "description": "The item identifier.",
            "in": "path",
            "name": "item_id",
            "required": true,
            "schema": {
              "minimum": 1,
              "type": "integer"
            }
          }
        ],
        "responses": {
          "200": {
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/GetItemsItemIdAncestorsResult"
                }
              }
            },
            "description": "List item ancestors response."
          },
          "401": {
            "$ref": "#/components/responses/AuthenticationError"
          },
          "403": {
            "$ref": "#/components/responses/PermissionError"
          },
          "404": {
            "$ref": "#/components/responses/NotFoundError"
          },
          "429": {
            "$ref": "#/components/responses/RateLimitError"
          },
          "500": {
            "$ref": "#/components/responses/InternalError"
          }
        },
        "security": [
          {
            "BearerAuth": []
          }
        ],
        "summary": "List item ancestors",
        "tags": [
          "Work items"
        ],
        "x-required-scopes": [
          "items:read"
        ]
      }
    },
    "/items/{item_id}/approvals": {
      "get": {
        "description": "List item approvals. Results include only resources visible to the authenticated caller; collections use their documented stable order and bounds.",
        "operationId": "getItemsItemIdApprovals",
        "parameters": [
          {
            "description": "The item identifier.",
            "in": "path",
            "name": "item_id",
            "required": true,
            "schema": {
              "minimum": 1,
              "type": "integer"
            }
          },
          {
            "description": "One-based page number.",
            "in": "query",
            "name": "page",
            "required": false,
            "schema": {
              "default": 1,
              "minimum": 1,
              "type": "integer"
            }
          },
          {
            "description": "Maximum number of resources to return.",
            "in": "query",
            "name": "page_size",
            "required": false,
            "schema": {
              "default": 50,
              "maximum": 100,
              "minimum": 1,
              "type": "integer"
            }
          }
        ],
        "responses": {
          "200": {
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/GetItemsItemIdApprovalsResult"
                }
              }
            },
            "description": "List item approvals response."
          },
          "401": {
            "$ref": "#/components/responses/AuthenticationError"
          },
          "403": {
            "$ref": "#/components/responses/PermissionError"
          },
          "404": {
            "$ref": "#/components/responses/NotFoundError"
          },
          "429": {
            "$ref": "#/components/responses/RateLimitError"
          },
          "500": {
            "$ref": "#/components/responses/InternalError"
          }
        },
        "security": [
          {
            "BearerAuth": []
          }
        ],
        "summary": "List item approvals",
        "tags": [
          "Governance"
        ],
        "x-required-scopes": [
          "approvals:read"
        ]
      }
    },
    "/items/{item_id}/attachments": {
      "get": {
        "description": "List item attachments. Results include only resources visible to the authenticated caller; collections use their documented stable order and bounds.",
        "operationId": "getItemsItemIdAttachments",
        "parameters": [
          {
            "description": "The item identifier.",
            "in": "path",
            "name": "item_id",
            "required": true,
            "schema": {
              "minimum": 1,
              "type": "integer"
            }
          },
          {
            "description": "One-based page number.",
            "in": "query",
            "name": "page",
            "required": false,
            "schema": {
              "default": 1,
              "minimum": 1,
              "type": "integer"
            }
          },
          {
            "description": "Maximum number of resources to return.",
            "in": "query",
            "name": "page_size",
            "required": false,
            "schema": {
              "default": 50,
              "maximum": 100,
              "minimum": 1,
              "type": "integer"
            }
          }
        ],
        "responses": {
          "200": {
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/GetItemsItemIdAttachmentsResult"
                }
              }
            },
            "description": "List item attachments response."
          },
          "401": {
            "$ref": "#/components/responses/AuthenticationError"
          },
          "403": {
            "$ref": "#/components/responses/PermissionError"
          },
          "404": {
            "$ref": "#/components/responses/NotFoundError"
          },
          "429": {
            "$ref": "#/components/responses/RateLimitError"
          },
          "500": {
            "$ref": "#/components/responses/InternalError"
          }
        },
        "security": [
          {
            "BearerAuth": []
          }
        ],
        "summary": "List item attachments",
        "tags": [
          "Work items"
        ],
        "x-required-scopes": [
          "items:read"
        ]
      },
      "post": {
        "description": "Upload item attachment. The server validates resource ownership and command preconditions before persisting changes. Unknown JSON fields are rejected when the operation accepts a body.",
        "operationId": "postItemsItemIdAttachments",
        "parameters": [
          {
            "description": "The item identifier.",
            "in": "path",
            "name": "item_id",
            "required": true,
            "schema": {
              "minimum": 1,
              "type": "integer"
            }
          }
        ],
        "requestBody": {
          "content": {
            "multipart/form-data": {
              "schema": {
                "$ref": "#/components/schemas/PostItemsItemIdAttachmentsPayload"
              }
            }
          },
          "required": true
        },
        "responses": {
          "201": {
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/PostItemsItemIdAttachmentsResult"
                }
              }
            },
            "description": "Upload item attachment response."
          },
          "400": {
            "$ref": "#/components/responses/InvalidRequestError"
          },
          "401": {
            "$ref": "#/components/responses/AuthenticationError"
          },
          "403": {
            "$ref": "#/components/responses/PermissionError"
          },
          "404": {
            "$ref": "#/components/responses/NotFoundError"
          },
          "413": {
            "$ref": "#/components/responses/PayloadTooLargeError"
          },
          "415": {
            "$ref": "#/components/responses/UnsupportedMediaTypeError"
          },
          "429": {
            "$ref": "#/components/responses/RateLimitError"
          },
          "500": {
            "$ref": "#/components/responses/InternalError"
          }
        },
        "security": [
          {
            "BearerAuth": []
          }
        ],
        "summary": "Upload item attachment",
        "tags": [
          "Work items"
        ],
        "x-required-scopes": [
          "items:write"
        ]
      }
    },
    "/items/{item_id}/available-transitions": {
      "get": {
        "description": "Get item available transitions. Results include only resources visible to the authenticated caller; collections use their documented stable order and bounds.",
        "operationId": "getItemsItemIdAvailableTransitions",
        "parameters": [
          {
            "description": "The item identifier.",
            "in": "path",
            "name": "item_id",
            "required": true,
            "schema": {
              "minimum": 1,
              "type": "integer"
            }
          }
        ],
        "responses": {
          "200": {
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/GetItemsItemIdAvailableTransitionsResult"
                }
              }
            },
            "description": "Get item available transitions response."
          },
          "401": {
            "$ref": "#/components/responses/AuthenticationError"
          },
          "403": {
            "$ref": "#/components/responses/PermissionError"
          },
          "404": {
            "$ref": "#/components/responses/NotFoundError"
          },
          "429": {
            "$ref": "#/components/responses/RateLimitError"
          },
          "500": {
            "$ref": "#/components/responses/InternalError"
          }
        },
        "security": [
          {
            "BearerAuth": []
          }
        ],
        "summary": "Get item available transitions",
        "tags": [
          "Work items"
        ],
        "x-required-scopes": [
          "items:read"
        ]
      }
    },
    "/items/{item_id}/cascade-deletion": {
      "post": {
        "description": "Execute item cascade deletion. The server validates resource ownership and command preconditions before persisting changes. Unknown JSON fields are rejected when the operation accepts a body.",
        "operationId": "postItemsItemIdCascadeDeletion",
        "parameters": [
          {
            "description": "The item identifier.",
            "in": "path",
            "name": "item_id",
            "required": true,
            "schema": {
              "minimum": 1,
              "type": "integer"
            }
          }
        ],
        "responses": {
          "200": {
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/PostItemsItemIdCascadeDeletionResult"
                }
              }
            },
            "description": "Execute item cascade deletion response."
          },
          "401": {
            "$ref": "#/components/responses/AuthenticationError"
          },
          "403": {
            "$ref": "#/components/responses/PermissionError"
          },
          "404": {
            "$ref": "#/components/responses/NotFoundError"
          },
          "429": {
            "$ref": "#/components/responses/RateLimitError"
          },
          "500": {
            "$ref": "#/components/responses/InternalError"
          }
        },
        "security": [
          {
            "BearerAuth": []
          }
        ],
        "summary": "Execute item cascade deletion",
        "tags": [
          "Work items"
        ],
        "x-required-scopes": [
          "items:delete"
        ]
      }
    },
    "/items/{item_id}/change-type": {
      "post": {
        "description": "Change item type. The server validates resource ownership and command preconditions before persisting changes. Unknown JSON fields are rejected when the operation accepts a body.",
        "operationId": "postItemsItemIdChangeType",
        "parameters": [
          {
            "description": "The item identifier.",
            "in": "path",
            "name": "item_id",
            "required": true,
            "schema": {
              "minimum": 1,
              "type": "integer"
            }
          }
        ],
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/PostItemsItemIdChangeTypePayload"
              }
            }
          },
          "required": true
        },
        "responses": {
          "200": {
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/PostItemsItemIdChangeTypeResult"
                }
              }
            },
            "description": "Change item type response."
          },
          "400": {
            "$ref": "#/components/responses/InvalidRequestError"
          },
          "401": {
            "$ref": "#/components/responses/AuthenticationError"
          },
          "403": {
            "$ref": "#/components/responses/PermissionError"
          },
          "404": {
            "$ref": "#/components/responses/NotFoundError"
          },
          "409": {
            "$ref": "#/components/responses/ConflictError"
          },
          "413": {
            "$ref": "#/components/responses/PayloadTooLargeError"
          },
          "415": {
            "$ref": "#/components/responses/UnsupportedMediaTypeError"
          },
          "429": {
            "$ref": "#/components/responses/RateLimitError"
          },
          "500": {
            "$ref": "#/components/responses/InternalError"
          }
        },
        "security": [
          {
            "BearerAuth": []
          }
        ],
        "summary": "Change item type",
        "tags": [
          "Work items"
        ],
        "x-required-scopes": [
          "items:write"
        ]
      }
    },
    "/items/{item_id}/children": {
      "get": {
        "description": "List item children. Results include only resources visible to the authenticated caller; collections use their documented stable order and bounds.",
        "operationId": "getItemsItemIdChildren",
        "parameters": [
          {
            "description": "The item identifier.",
            "in": "path",
            "name": "item_id",
            "required": true,
            "schema": {
              "minimum": 1,
              "type": "integer"
            }
          }
        ],
        "responses": {
          "200": {
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/GetItemsItemIdChildrenResult"
                }
              }
            },
            "description": "List item children response."
          },
          "401": {
            "$ref": "#/components/responses/AuthenticationError"
          },
          "403": {
            "$ref": "#/components/responses/PermissionError"
          },
          "404": {
            "$ref": "#/components/responses/NotFoundError"
          },
          "429": {
            "$ref": "#/components/responses/RateLimitError"
          },
          "500": {
            "$ref": "#/components/responses/InternalError"
          }
        },
        "security": [
          {
            "BearerAuth": []
          }
        ],
        "summary": "List item children",
        "tags": [
          "Work items"
        ],
        "x-required-scopes": [
          "items:read"
        ]
      }
    },
    "/items/{item_id}/comments": {
      "get": {
        "description": "Returns an authorization-filtered comment feed with at most 200 entries. Opaque next_cursor and refresh_cursor values preserve the exclusive timestamp-and-ID boundary without exposing its representation; partial comment pages are never returned on failure.",
        "operationId": "getItemsItemIdComments",
        "parameters": [
          {
            "description": "The item identifier.",
            "in": "path",
            "name": "item_id",
            "required": true,
            "schema": {
              "minimum": 1,
              "type": "integer"
            }
          },
          {
            "description": "Maximum number of resources to return.",
            "in": "query",
            "name": "page_size",
            "required": false,
            "schema": {
              "default": 50,
              "maximum": 200,
              "minimum": 1,
              "type": "integer"
            }
          },
          {
            "description": "Opaque continuation cursor returned by the preceding response. Cursors are operation-specific and cannot be combined with removed timestamp or ID boundaries.",
            "in": "query",
            "name": "cursor",
            "required": false,
            "schema": {
              "minLength": 1,
              "type": "string"
            }
          }
        ],
        "responses": {
          "200": {
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/GetItemsItemIdCommentsResult"
                }
              }
            },
            "description": "List item comments response."
          },
          "400": {
            "$ref": "#/components/responses/InvalidRequestError"
          },
          "401": {
            "$ref": "#/components/responses/AuthenticationError"
          },
          "403": {
            "$ref": "#/components/responses/PermissionError"
          },
          "404": {
            "$ref": "#/components/responses/NotFoundError"
          },
          "429": {
            "$ref": "#/components/responses/RateLimitError"
          },
          "500": {
            "$ref": "#/components/responses/InternalError"
          }
        },
        "security": [
          {
            "BearerAuth": []
          }
        ],
        "summary": "List item comments",
        "tags": [
          "Work items"
        ],
        "x-required-scopes": [
          "items:read"
        ]
      },
      "post": {
        "description": "Create item comment. The server validates resource ownership and command preconditions before persisting changes. Unknown JSON fields are rejected when the operation accepts a body.",
        "operationId": "postItemsItemIdComments",
        "parameters": [
          {
            "description": "The item identifier.",
            "in": "path",
            "name": "item_id",
            "required": true,
            "schema": {
              "minimum": 1,
              "type": "integer"
            }
          }
        ],
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/PostItemsItemIdCommentsPayload"
              }
            }
          },
          "required": true
        },
        "responses": {
          "201": {
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/PostItemsItemIdCommentsResult"
                }
              }
            },
            "description": "Create item comment response."
          },
          "400": {
            "$ref": "#/components/responses/InvalidRequestError"
          },
          "401": {
            "$ref": "#/components/responses/AuthenticationError"
          },
          "403": {
            "$ref": "#/components/responses/PermissionError"
          },
          "404": {
            "$ref": "#/components/responses/NotFoundError"
          },
          "413": {
            "$ref": "#/components/responses/PayloadTooLargeError"
          },
          "415": {
            "$ref": "#/components/responses/UnsupportedMediaTypeError"
          },
          "429": {
            "$ref": "#/components/responses/RateLimitError"
          },
          "500": {
            "$ref": "#/components/responses/InternalError"
          }
        },
        "security": [
          {
            "BearerAuth": []
          }
        ],
        "summary": "Create item comment",
        "tags": [
          "Work items"
        ],
        "x-required-scopes": [
          "items:write"
        ]
      }
    },
    "/items/{item_id}/copy": {
      "post": {
        "description": "Copy item. The server validates resource ownership and command preconditions before persisting changes. Unknown JSON fields are rejected when the operation accepts a body.",
        "operationId": "postItemsItemIdCopy",
        "parameters": [
          {
            "description": "The item identifier.",
            "in": "path",
            "name": "item_id",
            "required": true,
            "schema": {
              "minimum": 1,
              "type": "integer"
            }
          }
        ],
        "responses": {
          "201": {
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/PostItemsItemIdCopyResult"
                }
              }
            },
            "description": "Copy item response."
          },
          "401": {
            "$ref": "#/components/responses/AuthenticationError"
          },
          "403": {
            "$ref": "#/components/responses/PermissionError"
          },
          "404": {
            "$ref": "#/components/responses/NotFoundError"
          },
          "429": {
            "$ref": "#/components/responses/RateLimitError"
          },
          "500": {
            "$ref": "#/components/responses/InternalError"
          }
        },
        "security": [
          {
            "BearerAuth": []
          }
        ],
        "summary": "Copy item",
        "tags": [
          "Work items"
        ],
        "x-required-scopes": [
          "items:write"
        ]
      }
    },
    "/items/{item_id}/delete-info": {
      "get": {
        "description": "Get item delete info. Results include only resources visible to the authenticated caller; collections use their documented stable order and bounds.",
        "operationId": "getItemsItemIdDeleteInfo",
        "parameters": [
          {
            "description": "The item identifier.",
            "in": "path",
            "name": "item_id",
            "required": true,
            "schema": {
              "minimum": 1,
              "type": "integer"
            }
          }
        ],
        "responses": {
          "200": {
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/GetItemsItemIdDeleteInfoResult"
                }
              }
            },
            "description": "Get item delete info response."
          },
          "401": {
            "$ref": "#/components/responses/AuthenticationError"
          },
          "403": {
            "$ref": "#/components/responses/PermissionError"
          },
          "404": {
            "$ref": "#/components/responses/NotFoundError"
          },
          "429": {
            "$ref": "#/components/responses/RateLimitError"
          },
          "500": {
            "$ref": "#/components/responses/InternalError"
          }
        },
        "security": [
          {
            "BearerAuth": []
          }
        ],
        "summary": "Get item delete info",
        "tags": [
          "Work items"
        ],
        "x-required-scopes": [
          "items:read"
        ]
      }
    },
    "/items/{item_id}/descendants": {
      "get": {
        "description": "List item descendants. Results include only resources visible to the authenticated caller; collections use their documented stable order and bounds.",
        "operationId": "getItemsItemIdDescendants",
        "parameters": [
          {
            "description": "The item identifier.",
            "in": "path",
            "name": "item_id",
            "required": true,
            "schema": {
              "minimum": 1,
              "type": "integer"
            }
          },
          {
            "description": "Maximum descendant depth. Zero means unlimited.",
            "in": "query",
            "name": "max_depth",
            "required": false,
            "schema": {
              "default": 0,
              "minimum": 0,
              "type": "integer"
            }
          }
        ],
        "responses": {
          "200": {
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/GetItemsItemIdDescendantsResult"
                }
              }
            },
            "description": "List item descendants response."
          },
          "400": {
            "$ref": "#/components/responses/InvalidRequestError"
          },
          "401": {
            "$ref": "#/components/responses/AuthenticationError"
          },
          "403": {
            "$ref": "#/components/responses/PermissionError"
          },
          "404": {
            "$ref": "#/components/responses/NotFoundError"
          },
          "429": {
            "$ref": "#/components/responses/RateLimitError"
          },
          "500": {
            "$ref": "#/components/responses/InternalError"
          }
        },
        "security": [
          {
            "BearerAuth": []
          }
        ],
        "summary": "List item descendants",
        "tags": [
          "Work items"
        ],
        "x-required-scopes": [
          "items:read"
        ]
      }
    },
    "/items/{item_id}/detail-summary": {
      "get": {
        "description": "Returns an authorization-checked item-detail bootstrap projection from committed state. Independent optional sections report deterministic section_errors when they fail, so partial data is distinguishable from an empty section.",
        "operationId": "getItemsItemIdDetailSummary",
        "parameters": [
          {
            "description": "The item identifier.",
            "in": "path",
            "name": "item_id",
            "required": true,
            "schema": {
              "minimum": 1,
              "type": "integer"
            }
          },
          {
            "description": "Use `mobile` to omit desktop-only detail sections.",
            "in": "query",
            "name": "surface",
            "required": false,
            "schema": {
              "enum": [
                "mobile"
              ],
              "type": "string"
            }
          }
        ],
        "responses": {
          "200": {
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/GetItemsItemIdDetailSummaryResult"
                }
              }
            },
            "description": "Get item detail summary response."
          },
          "401": {
            "$ref": "#/components/responses/AuthenticationError"
          },
          "403": {
            "$ref": "#/components/responses/PermissionError"
          },
          "404": {
            "$ref": "#/components/responses/NotFoundError"
          },
          "429": {
            "$ref": "#/components/responses/RateLimitError"
          },
          "500": {
            "$ref": "#/components/responses/InternalError"
          }
        },
        "security": [
          {
            "BearerAuth": []
          }
        ],
        "summary": "Get item detail summary",
        "tags": [
          "Work items"
        ],
        "x-required-scopes": [
          "items:read"
        ]
      }
    },
    "/items/{item_id}/diagrams": {
      "get": {
        "description": "List item diagrams. Results include only resources visible to the authenticated caller; collections use their documented stable order and bounds.",
        "operationId": "getItemsItemIdDiagrams",
        "parameters": [
          {
            "description": "The item identifier.",
            "in": "path",
            "name": "item_id",
            "required": true,
            "schema": {
              "minimum": 1,
              "type": "integer"
            }
          }
        ],
        "responses": {
          "200": {
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/GetItemsItemIdDiagramsResult"
                }
              }
            },
            "description": "List item diagrams response."
          },
          "401": {
            "$ref": "#/components/responses/AuthenticationError"
          },
          "403": {
            "$ref": "#/components/responses/PermissionError"
          },
          "404": {
            "$ref": "#/components/responses/NotFoundError"
          },
          "429": {
            "$ref": "#/components/responses/RateLimitError"
          },
          "500": {
            "$ref": "#/components/responses/InternalError"
          }
        },
        "security": [
          {
            "BearerAuth": []
          }
        ],
        "summary": "List item diagrams",
        "tags": [
          "Work items"
        ],
        "x-required-scopes": [
          "items:read"
        ]
      },
      "post": {
        "description": "Create item diagram. The server validates resource ownership and command preconditions before persisting changes. Unknown JSON fields are rejected when the operation accepts a body.",
        "operationId": "postItemsItemIdDiagrams",
        "parameters": [
          {
            "description": "The item identifier.",
            "in": "path",
            "name": "item_id",
            "required": true,
            "schema": {
              "minimum": 1,
              "type": "integer"
            }
          }
        ],
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/PostItemsItemIdDiagramsPayload"
              }
            }
          },
          "required": true
        },
        "responses": {
          "201": {
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/PostItemsItemIdDiagramsResult"
                }
              }
            },
            "description": "Create item diagram response."
          },
          "400": {
            "$ref": "#/components/responses/InvalidRequestError"
          },
          "401": {
            "$ref": "#/components/responses/AuthenticationError"
          },
          "403": {
            "$ref": "#/components/responses/PermissionError"
          },
          "404": {
            "$ref": "#/components/responses/NotFoundError"
          },
          "413": {
            "$ref": "#/components/responses/PayloadTooLargeError"
          },
          "415": {
            "$ref": "#/components/responses/UnsupportedMediaTypeError"
          },
          "429": {
            "$ref": "#/components/responses/RateLimitError"
          },
          "500": {
            "$ref": "#/components/responses/InternalError"
          }
        },
        "security": [
          {
            "BearerAuth": []
          }
        ],
        "summary": "Create item diagram",
        "tags": [
          "Work items"
        ],
        "x-required-scopes": [
          "items:write"
        ]
      }
    },
    "/items/{item_id}/fields/{field_id}/links": {
      "get": {
        "description": "List item field links. Results include only resources visible to the authenticated caller; collections use their documented stable order and bounds.",
        "operationId": "getItemsItemIdFieldsFieldIdLinks",
        "parameters": [
          {
            "description": "The item identifier.",
            "in": "path",
            "name": "item_id",
            "required": true,
            "schema": {
              "minimum": 1,
              "type": "integer"
            }
          },
          {
            "description": "The field identifier.",
            "in": "path",
            "name": "field_id",
            "required": true,
            "schema": {
              "minimum": 1,
              "type": "integer"
            }
          }
        ],
        "responses": {
          "200": {
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/GetItemsItemIdFieldsFieldIdLinksResult"
                }
              }
            },
            "description": "List item field links response."
          },
          "401": {
            "$ref": "#/components/responses/AuthenticationError"
          },
          "403": {
            "$ref": "#/components/responses/PermissionError"
          },
          "404": {
            "$ref": "#/components/responses/NotFoundError"
          },
          "429": {
            "$ref": "#/components/responses/RateLimitError"
          },
          "500": {
            "$ref": "#/components/responses/InternalError"
          }
        },
        "security": [
          {
            "BearerAuth": []
          }
        ],
        "summary": "List item field links",
        "tags": [
          "Links"
        ],
        "x-required-scopes": [
          "items:read"
        ]
      }
    },
    "/items/{item_id}/history": {
      "get": {
        "description": "Get item history. Results include only resources visible to the authenticated caller; collections use their documented stable order and bounds.",
        "operationId": "getItemsItemIdHistory",
        "parameters": [
          {
            "description": "The item identifier.",
            "in": "path",
            "name": "item_id",
            "required": true,
            "schema": {
              "minimum": 1,
              "type": "integer"
            }
          }
        ],
        "responses": {
          "200": {
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/GetItemsItemIdHistoryResult"
                }
              }
            },
            "description": "Get item history response."
          },
          "401": {
            "$ref": "#/components/responses/AuthenticationError"
          },
          "403": {
            "$ref": "#/components/responses/PermissionError"
          },
          "404": {
            "$ref": "#/components/responses/NotFoundError"
          },
          "429": {
            "$ref": "#/components/responses/RateLimitError"
          },
          "500": {
            "$ref": "#/components/responses/InternalError"
          }
        },
        "security": [
          {
            "BearerAuth": []
          }
        ],
        "summary": "Get item history",
        "tags": [
          "Work items"
        ],
        "x-required-scopes": [
          "items:read"
        ]
      }
    },
    "/items/{item_id}/labels": {
      "get": {
        "description": "List item labels. Results include only resources visible to the authenticated caller; collections use their documented stable order and bounds.",
        "operationId": "getItemsItemIdLabels",
        "parameters": [
          {
            "description": "The item identifier.",
            "in": "path",
            "name": "item_id",
            "required": true,
            "schema": {
              "minimum": 1,
              "type": "integer"
            }
          }
        ],
        "responses": {
          "200": {
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/GetItemsItemIdLabelsResult"
                }
              }
            },
            "description": "List item labels response."
          },
          "401": {
            "$ref": "#/components/responses/AuthenticationError"
          },
          "403": {
            "$ref": "#/components/responses/PermissionError"
          },
          "404": {
            "$ref": "#/components/responses/NotFoundError"
          },
          "429": {
            "$ref": "#/components/responses/RateLimitError"
          },
          "500": {
            "$ref": "#/components/responses/InternalError"
          }
        },
        "security": [
          {
            "BearerAuth": []
          }
        ],
        "summary": "List item labels",
        "tags": [
          "Work items"
        ],
        "x-required-scopes": [
          "items:read"
        ]
      },
      "post": {
        "description": "Add item label. The server validates resource ownership and command preconditions before persisting changes. Unknown JSON fields are rejected when the operation accepts a body.",
        "operationId": "postItemsItemIdLabels",
        "parameters": [
          {
            "description": "The item identifier.",
            "in": "path",
            "name": "item_id",
            "required": true,
            "schema": {
              "minimum": 1,
              "type": "integer"
            }
          }
        ],
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/PostItemsItemIdLabelsPayload"
              }
            }
          },
          "required": true
        },
        "responses": {
          "200": {
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/PostItemsItemIdLabelsResult"
                }
              }
            },
            "description": "Add item label response."
          },
          "400": {
            "$ref": "#/components/responses/InvalidRequestError"
          },
          "401": {
            "$ref": "#/components/responses/AuthenticationError"
          },
          "403": {
            "$ref": "#/components/responses/PermissionError"
          },
          "404": {
            "$ref": "#/components/responses/NotFoundError"
          },
          "413": {
            "$ref": "#/components/responses/PayloadTooLargeError"
          },
          "415": {
            "$ref": "#/components/responses/UnsupportedMediaTypeError"
          },
          "429": {
            "$ref": "#/components/responses/RateLimitError"
          },
          "500": {
            "$ref": "#/components/responses/InternalError"
          }
        },
        "security": [
          {
            "BearerAuth": []
          }
        ],
        "summary": "Add item label",
        "tags": [
          "Work items"
        ],
        "x-required-scopes": [
          "items:write"
        ]
      },
      "put": {
        "description": "Set item labels. The server validates resource ownership and command preconditions before persisting changes. Unknown JSON fields are rejected when the operation accepts a body.",
        "operationId": "putItemsItemIdLabels",
        "parameters": [
          {
            "description": "The item identifier.",
            "in": "path",
            "name": "item_id",
            "required": true,
            "schema": {
              "minimum": 1,
              "type": "integer"
            }
          }
        ],
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/PutItemsItemIdLabelsPayload"
              }
            }
          },
          "required": true
        },
        "responses": {
          "200": {
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/PutItemsItemIdLabelsResult"
                }
              }
            },
            "description": "Set item labels response."
          },
          "400": {
            "$ref": "#/components/responses/InvalidRequestError"
          },
          "401": {
            "$ref": "#/components/responses/AuthenticationError"
          },
          "403": {
            "$ref": "#/components/responses/PermissionError"
          },
          "404": {
            "$ref": "#/components/responses/NotFoundError"
          },
          "413": {
            "$ref": "#/components/responses/PayloadTooLargeError"
          },
          "415": {
            "$ref": "#/components/responses/UnsupportedMediaTypeError"
          },
          "429": {
            "$ref": "#/components/responses/RateLimitError"
          },
          "500": {
            "$ref": "#/components/responses/InternalError"
          }
        },
        "security": [
          {
            "BearerAuth": []
          }
        ],
        "summary": "Set item labels",
        "tags": [
          "Work items"
        ],
        "x-required-scopes": [
          "items:write"
        ]
      }
    },
    "/items/{item_id}/labels/{label_id}": {
      "delete": {
        "description": "Remove item label. The server verifies resource ownership and deletion preconditions before removing the resource.",
        "operationId": "deleteItemsItemIdLabelsLabelId",
        "parameters": [
          {
            "description": "The item identifier.",
            "in": "path",
            "name": "item_id",
            "required": true,
            "schema": {
              "minimum": 1,
              "type": "integer"
            }
          },
          {
            "description": "The label identifier.",
            "in": "path",
            "name": "label_id",
            "required": true,
            "schema": {
              "minimum": 1,
              "type": "integer"
            }
          }
        ],
        "responses": {
          "204": {
            "description": "Request completed successfully with no response body."
          },
          "401": {
            "$ref": "#/components/responses/AuthenticationError"
          },
          "403": {
            "$ref": "#/components/responses/PermissionError"
          },
          "404": {
            "$ref": "#/components/responses/NotFoundError"
          },
          "429": {
            "$ref": "#/components/responses/RateLimitError"
          },
          "500": {
            "$ref": "#/components/responses/InternalError"
          }
        },
        "security": [
          {
            "BearerAuth": []
          }
        ],
        "summary": "Remove item label",
        "tags": [
          "Work items"
        ],
        "x-required-scopes": [
          "items:write"
        ]
      }
    },
    "/items/{item_id}/linked-assets": {
      "get": {
        "description": "List item linked assets. Results include only resources visible to the authenticated caller; collections use their documented stable order and bounds.",
        "operationId": "getItemsItemIdLinkedAssets",
        "parameters": [
          {
            "description": "The item identifier.",
            "in": "path",
            "name": "item_id",
            "required": true,
            "schema": {
              "minimum": 1,
              "type": "integer"
            }
          }
        ],
        "responses": {
          "200": {
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/GetItemsItemIdLinkedAssetsResult"
                }
              }
            },
            "description": "List item linked assets response."
          },
          "401": {
            "$ref": "#/components/responses/AuthenticationError"
          },
          "403": {
            "$ref": "#/components/responses/PermissionError"
          },
          "404": {
            "$ref": "#/components/responses/NotFoundError"
          },
          "429": {
            "$ref": "#/components/responses/RateLimitError"
          },
          "500": {
            "$ref": "#/components/responses/InternalError"
          }
        },
        "security": [
          {
            "BearerAuth": []
          }
        ],
        "summary": "List item linked assets",
        "tags": [
          "Asset management"
        ],
        "x-required-scopes": [
          "assets:read"
        ]
      }
    },
    "/items/{item_id}/links": {
      "get": {
        "description": "List item links. Results include only resources visible to the authenticated caller; collections use their documented stable order and bounds.",
        "operationId": "getItemsItemIdLinks",
        "parameters": [
          {
            "description": "The item identifier.",
            "in": "path",
            "name": "item_id",
            "required": true,
            "schema": {
              "minimum": 1,
              "type": "integer"
            }
          }
        ],
        "responses": {
          "200": {
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/GetItemsItemIdLinksResult"
                }
              }
            },
            "description": "List item links response."
          },
          "401": {
            "$ref": "#/components/responses/AuthenticationError"
          },
          "403": {
            "$ref": "#/components/responses/PermissionError"
          },
          "404": {
            "$ref": "#/components/responses/NotFoundError"
          },
          "429": {
            "$ref": "#/components/responses/RateLimitError"
          },
          "500": {
            "$ref": "#/components/responses/InternalError"
          }
        },
        "security": [
          {
            "BearerAuth": []
          }
        ],
        "summary": "List item links",
        "tags": [
          "Links"
        ],
        "x-required-scopes": [
          "items:read"
        ]
      }
    },
    "/items/{item_id}/move-workspace": {
      "post": {
        "description": "Move item workspace. The server validates resource ownership and command preconditions before persisting changes. Unknown JSON fields are rejected when the operation accepts a body.",
        "operationId": "postItemsItemIdMoveWorkspace",
        "parameters": [
          {
            "description": "The item identifier.",
            "in": "path",
            "name": "item_id",
            "required": true,
            "schema": {
              "minimum": 1,
              "type": "integer"
            }
          }
        ],
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/PostItemsItemIdMoveWorkspacePayload"
              }
            }
          },
          "required": true
        },
        "responses": {
          "200": {
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/PostItemsItemIdMoveWorkspaceResult"
                }
              }
            },
            "description": "Move item workspace response."
          },
          "400": {
            "$ref": "#/components/responses/InvalidRequestError"
          },
          "401": {
            "$ref": "#/components/responses/AuthenticationError"
          },
          "403": {
            "$ref": "#/components/responses/PermissionError"
          },
          "404": {
            "$ref": "#/components/responses/NotFoundError"
          },
          "413": {
            "$ref": "#/components/responses/PayloadTooLargeError"
          },
          "415": {
            "$ref": "#/components/responses/UnsupportedMediaTypeError"
          },
          "429": {
            "$ref": "#/components/responses/RateLimitError"
          },
          "500": {
            "$ref": "#/components/responses/InternalError"
          }
        },
        "security": [
          {
            "BearerAuth": []
          }
        ],
        "summary": "Move item workspace",
        "tags": [
          "Work items"
        ],
        "x-required-scopes": [
          "items:write"
        ]
      }
    },
    "/items/{item_id}/move-workspace/preview": {
      "post": {
        "description": "Preview item workspace move. The server validates resource ownership and command preconditions before persisting changes. Unknown JSON fields are rejected when the operation accepts a body.",
        "operationId": "postItemsItemIdMoveWorkspacePreview",
        "parameters": [
          {
            "description": "The item identifier.",
            "in": "path",
            "name": "item_id",
            "required": true,
            "schema": {
              "minimum": 1,
              "type": "integer"
            }
          }
        ],
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/PostItemsItemIdMoveWorkspacePreviewPayload"
              }
            }
          },
          "required": true
        },
        "responses": {
          "200": {
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/PostItemsItemIdMoveWorkspacePreviewResult"
                }
              }
            },
            "description": "Preview item workspace move response."
          },
          "400": {
            "$ref": "#/components/responses/InvalidRequestError"
          },
          "401": {
            "$ref": "#/components/responses/AuthenticationError"
          },
          "403": {
            "$ref": "#/components/responses/PermissionError"
          },
          "404": {
            "$ref": "#/components/responses/NotFoundError"
          },
          "413": {
            "$ref": "#/components/responses/PayloadTooLargeError"
          },
          "415": {
            "$ref": "#/components/responses/UnsupportedMediaTypeError"
          },
          "429": {
            "$ref": "#/components/responses/RateLimitError"
          },
          "500": {
            "$ref": "#/components/responses/InternalError"
          }
        },
        "security": [
          {
            "BearerAuth": []
          }
        ],
        "summary": "Preview item workspace move",
        "tags": [
          "Work items"
        ],
        "x-required-scopes": [
          "items:write"
        ]
      }
    },
    "/items/{item_id}/personal-tasks": {
      "get": {
        "description": "List item personal tasks. Results include only resources visible to the authenticated caller; collections use their documented stable order and bounds.",
        "operationId": "getItemsItemIdPersonalTasks",
        "parameters": [
          {
            "description": "The item identifier.",
            "in": "path",
            "name": "item_id",
            "required": true,
            "schema": {
              "minimum": 1,
              "type": "integer"
            }
          }
        ],
        "responses": {
          "200": {
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/GetItemsItemIdPersonalTasksResult"
                }
              }
            },
            "description": "List item personal tasks response."
          },
          "401": {
            "$ref": "#/components/responses/AuthenticationError"
          },
          "403": {
            "$ref": "#/components/responses/PermissionError"
          },
          "404": {
            "$ref": "#/components/responses/NotFoundError"
          },
          "429": {
            "$ref": "#/components/responses/RateLimitError"
          },
          "500": {
            "$ref": "#/components/responses/InternalError"
          }
        },
        "security": [
          {
            "BearerAuth": []
          }
        ],
        "summary": "List item personal tasks",
        "tags": [
          "Work items"
        ],
        "x-required-scopes": [
          "items:read"
        ]
      }
    },
    "/items/{item_id}/rank": {
      "patch": {
        "description": "Patch item rank. The operation uses JSON Merge Patch: omitted fields remain unchanged and documented nullable fields accept null. Unknown fields are rejected.",
        "operationId": "patchItemsItemIdRank",
        "parameters": [
          {
            "description": "The item identifier.",
            "in": "path",
            "name": "item_id",
            "required": true,
            "schema": {
              "minimum": 1,
              "type": "integer"
            }
          }
        ],
        "requestBody": {
          "content": {
            "application/merge-patch+json": {
              "schema": {
                "$ref": "#/components/schemas/PatchItemsItemIdRankPayload"
              }
            }
          },
          "required": true
        },
        "responses": {
          "200": {
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/PatchItemsItemIdRankResult"
                }
              }
            },
            "description": "Patch item rank response."
          },
          "400": {
            "$ref": "#/components/responses/InvalidRequestError"
          },
          "401": {
            "$ref": "#/components/responses/AuthenticationError"
          },
          "403": {
            "$ref": "#/components/responses/PermissionError"
          },
          "404": {
            "$ref": "#/components/responses/NotFoundError"
          },
          "409": {
            "$ref": "#/components/responses/ConflictError"
          },
          "413": {
            "$ref": "#/components/responses/PayloadTooLargeError"
          },
          "415": {
            "$ref": "#/components/responses/UnsupportedMediaTypeError"
          },
          "429": {
            "$ref": "#/components/responses/RateLimitError"
          },
          "500": {
            "$ref": "#/components/responses/InternalError"
          }
        },
        "security": [
          {
            "BearerAuth": []
          }
        ],
        "summary": "Patch item rank",
        "tags": [
          "Work items"
        ],
        "x-required-scopes": [
          "items:write"
        ]
      }
    },
    "/items/{item_id}/recurrence": {
      "delete": {
        "description": "Delete item recurrence. The server verifies resource ownership and deletion preconditions before removing the resource.",
        "operationId": "deleteItemsItemIdRecurrence",
        "parameters": [
          {
            "description": "The item identifier.",
            "in": "path",
            "name": "item_id",
            "required": true,
            "schema": {
              "minimum": 1,
              "type": "integer"
            }
          }
        ],
        "responses": {
          "204": {
            "description": "Request completed successfully with no response body."
          },
          "401": {
            "$ref": "#/components/responses/AuthenticationError"
          },
          "403": {
            "$ref": "#/components/responses/PermissionError"
          },
          "404": {
            "$ref": "#/components/responses/NotFoundError"
          },
          "429": {
            "$ref": "#/components/responses/RateLimitError"
          },
          "500": {
            "$ref": "#/components/responses/InternalError"
          }
        },
        "security": [
          {
            "BearerAuth": []
          }
        ],
        "summary": "Delete item recurrence",
        "tags": [
          "Work items"
        ],
        "x-required-scopes": [
          "items:write"
        ]
      },
      "get": {
        "description": "Get item recurrence. Results include only resources visible to the authenticated caller; collections use their documented stable order and bounds.",
        "operationId": "getItemsItemIdRecurrence",
        "parameters": [
          {
            "description": "The item identifier.",
            "in": "path",
            "name": "item_id",
            "required": true,
            "schema": {
              "minimum": 1,
              "type": "integer"
            }
          }
        ],
        "responses": {
          "200": {
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/GetItemsItemIdRecurrenceResult"
                }
              }
            },
            "description": "Get item recurrence response."
          },
          "401": {
            "$ref": "#/components/responses/AuthenticationError"
          },
          "403": {
            "$ref": "#/components/responses/PermissionError"
          },
          "404": {
            "$ref": "#/components/responses/NotFoundError"
          },
          "429": {
            "$ref": "#/components/responses/RateLimitError"
          },
          "500": {
            "$ref": "#/components/responses/InternalError"
          }
        },
        "security": [
          {
            "BearerAuth": []
          }
        ],
        "summary": "Get item recurrence",
        "tags": [
          "Work items"
        ],
        "x-required-scopes": [
          "items:read"
        ]
      },
      "patch": {
        "description": "Update item recurrence. The operation uses JSON Merge Patch: omitted fields remain unchanged and documented nullable fields accept null. Unknown fields are rejected.",
        "operationId": "patchItemsItemIdRecurrence",
        "parameters": [
          {
            "description": "The item identifier.",
            "in": "path",
            "name": "item_id",
            "required": true,
            "schema": {
              "minimum": 1,
              "type": "integer"
            }
          }
        ],
        "requestBody": {
          "content": {
            "application/merge-patch+json": {
              "schema": {
                "$ref": "#/components/schemas/PatchItemsItemIdRecurrencePayload"
              }
            }
          },
          "required": true
        },
        "responses": {
          "200": {
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/PatchItemsItemIdRecurrenceResult"
                }
              }
            },
            "description": "Update item recurrence response."
          },
          "400": {
            "$ref": "#/components/responses/InvalidRequestError"
          },
          "401": {
            "$ref": "#/components/responses/AuthenticationError"
          },
          "403": {
            "$ref": "#/components/responses/PermissionError"
          },
          "404": {
            "$ref": "#/components/responses/NotFoundError"
          },
          "413": {
            "$ref": "#/components/responses/PayloadTooLargeError"
          },
          "415": {
            "$ref": "#/components/responses/UnsupportedMediaTypeError"
          },
          "429": {
            "$ref": "#/components/responses/RateLimitError"
          },
          "500": {
            "$ref": "#/components/responses/InternalError"
          }
        },
        "security": [
          {
            "BearerAuth": []
          }
        ],
        "summary": "Update item recurrence",
        "tags": [
          "Work items"
        ],
        "x-required-scopes": [
          "items:write"
        ]
      },
      "post": {
        "description": "Create item recurrence. The server validates resource ownership and command preconditions before persisting changes. Unknown JSON fields are rejected when the operation accepts a body.",
        "operationId": "postItemsItemIdRecurrence",
        "parameters": [
          {
            "description": "The item identifier.",
            "in": "path",
            "name": "item_id",
            "required": true,
            "schema": {
              "minimum": 1,
              "type": "integer"
            }
          }
        ],
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/PostItemsItemIdRecurrencePayload"
              }
            }
          },
          "required": true
        },
        "responses": {
          "201": {
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/PostItemsItemIdRecurrenceResult"
                }
              }
            },
            "description": "Create item recurrence response."
          },
          "400": {
            "$ref": "#/components/responses/InvalidRequestError"
          },
          "401": {
            "$ref": "#/components/responses/AuthenticationError"
          },
          "403": {
            "$ref": "#/components/responses/PermissionError"
          },
          "404": {
            "$ref": "#/components/responses/NotFoundError"
          },
          "413": {
            "$ref": "#/components/responses/PayloadTooLargeError"
          },
          "415": {
            "$ref": "#/components/responses/UnsupportedMediaTypeError"
          },
          "429": {
            "$ref": "#/components/responses/RateLimitError"
          },
          "500": {
            "$ref": "#/components/responses/InternalError"
          }
        },
        "security": [
          {
            "BearerAuth": []
          }
        ],
        "summary": "Create item recurrence",
        "tags": [
          "Work items"
        ],
        "x-required-scopes": [
          "items:write"
        ]
      }
    },
    "/items/{item_id}/recurrence/generate": {
      "post": {
        "description": "Generate item recurrence. The server validates resource ownership and command preconditions before persisting changes. Unknown JSON fields are rejected when the operation accepts a body.",
        "operationId": "postItemsItemIdRecurrenceGenerate",
        "parameters": [
          {
            "description": "The item identifier.",
            "in": "path",
            "name": "item_id",
            "required": true,
            "schema": {
              "minimum": 1,
              "type": "integer"
            }
          }
        ],
        "responses": {
          "200": {
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/PostItemsItemIdRecurrenceGenerateResult"
                }
              }
            },
            "description": "Generate item recurrence response."
          },
          "401": {
            "$ref": "#/components/responses/AuthenticationError"
          },
          "403": {
            "$ref": "#/components/responses/PermissionError"
          },
          "404": {
            "$ref": "#/components/responses/NotFoundError"
          },
          "429": {
            "$ref": "#/components/responses/RateLimitError"
          },
          "500": {
            "$ref": "#/components/responses/InternalError"
          }
        },
        "security": [
          {
            "BearerAuth": []
          }
        ],
        "summary": "Generate item recurrence",
        "tags": [
          "Work items"
        ],
        "x-required-scopes": [
          "items:write"
        ]
      }
    },
    "/items/{item_id}/recurrence/instances": {
      "get": {
        "description": "List item recurrence instances. Results include only resources visible to the authenticated caller; collections use their documented stable order and bounds.",
        "operationId": "getItemsItemIdRecurrenceInstances",
        "parameters": [
          {
            "description": "The item identifier.",
            "in": "path",
            "name": "item_id",
            "required": true,
            "schema": {
              "minimum": 1,
              "type": "integer"
            }
          },
          {
            "description": "One-based page number.",
            "in": "query",
            "name": "page",
            "required": false,
            "schema": {
              "default": 1,
              "minimum": 1,
              "type": "integer"
            }
          },
          {
            "description": "Maximum number of resources to return.",
            "in": "query",
            "name": "page_size",
            "required": false,
            "schema": {
              "default": 50,
              "maximum": 100,
              "minimum": 1,
              "type": "integer"
            }
          }
        ],
        "responses": {
          "200": {
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/GetItemsItemIdRecurrenceInstancesResult"
                }
              }
            },
            "description": "List item recurrence instances response."
          },
          "400": {
            "$ref": "#/components/responses/InvalidRequestError"
          },
          "401": {
            "$ref": "#/components/responses/AuthenticationError"
          },
          "403": {
            "$ref": "#/components/responses/PermissionError"
          },
          "404": {
            "$ref": "#/components/responses/NotFoundError"
          },
          "429": {
            "$ref": "#/components/responses/RateLimitError"
          },
          "500": {
            "$ref": "#/components/responses/InternalError"
          }
        },
        "security": [
          {
            "BearerAuth": []
          }
        ],
        "summary": "List item recurrence instances",
        "tags": [
          "Work items"
        ],
        "x-required-scopes": [
          "items:read"
        ]
      }
    },
    "/items/{item_id}/related-work-item": {
      "delete": {
        "description": "Unlink item related work item. The server verifies resource ownership and deletion preconditions before removing the resource.",
        "operationId": "deleteItemsItemIdRelatedWorkItem",
        "parameters": [
          {
            "description": "The item identifier.",
            "in": "path",
            "name": "item_id",
            "required": true,
            "schema": {
              "minimum": 1,
              "type": "integer"
            }
          }
        ],
        "responses": {
          "204": {
            "description": "Request completed successfully with no response body."
          },
          "401": {
            "$ref": "#/components/responses/AuthenticationError"
          },
          "403": {
            "$ref": "#/components/responses/PermissionError"
          },
          "404": {
            "$ref": "#/components/responses/NotFoundError"
          },
          "429": {
            "$ref": "#/components/responses/RateLimitError"
          },
          "500": {
            "$ref": "#/components/responses/InternalError"
          }
        },
        "security": [
          {
            "BearerAuth": []
          }
        ],
        "summary": "Unlink item related work item",
        "tags": [
          "Work items"
        ],
        "x-required-scopes": [
          "items:write"
        ]
      }
    },
    "/items/{item_id}/reparent-children": {
      "post": {
        "description": "Reparent item children. The server validates resource ownership and command preconditions before persisting changes. Unknown JSON fields are rejected when the operation accepts a body.",
        "operationId": "postItemsItemIdReparentChildren",
        "parameters": [
          {
            "description": "The item identifier.",
            "in": "path",
            "name": "item_id",
            "required": true,
            "schema": {
              "minimum": 1,
              "type": "integer"
            }
          }
        ],
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/PostItemsItemIdReparentChildrenPayload"
              }
            }
          },
          "required": true
        },
        "responses": {
          "200": {
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/PostItemsItemIdReparentChildrenResult"
                }
              }
            },
            "description": "Reparent item children response."
          },
          "400": {
            "$ref": "#/components/responses/InvalidRequestError"
          },
          "401": {
            "$ref": "#/components/responses/AuthenticationError"
          },
          "403": {
            "$ref": "#/components/responses/PermissionError"
          },
          "404": {
            "$ref": "#/components/responses/NotFoundError"
          },
          "413": {
            "$ref": "#/components/responses/PayloadTooLargeError"
          },
          "415": {
            "$ref": "#/components/responses/UnsupportedMediaTypeError"
          },
          "429": {
            "$ref": "#/components/responses/RateLimitError"
          },
          "500": {
            "$ref": "#/components/responses/InternalError"
          }
        },
        "security": [
          {
            "BearerAuth": []
          }
        ],
        "summary": "Reparent item children",
        "tags": [
          "Work items"
        ],
        "x-required-scopes": [
          "items:write"
        ]
      }
    },
    "/items/{item_id}/status-durations": {
      "get": {
        "description": "Get item status durations. Results include only resources visible to the authenticated caller; collections use their documented stable order and bounds.",
        "operationId": "getItemsItemIdStatusDurations",
        "parameters": [
          {
            "description": "The item identifier.",
            "in": "path",
            "name": "item_id",
            "required": true,
            "schema": {
              "minimum": 1,
              "type": "integer"
            }
          }
        ],
        "responses": {
          "200": {
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/GetItemsItemIdStatusDurationsResult"
                }
              }
            },
            "description": "Get item status durations response."
          },
          "401": {
            "$ref": "#/components/responses/AuthenticationError"
          },
          "403": {
            "$ref": "#/components/responses/PermissionError"
          },
          "404": {
            "$ref": "#/components/responses/NotFoundError"
          },
          "429": {
            "$ref": "#/components/responses/RateLimitError"
          },
          "500": {
            "$ref": "#/components/responses/InternalError"
          }
        },
        "security": [
          {
            "BearerAuth": []
          }
        ],
        "summary": "Get item status durations",
        "tags": [
          "Work items"
        ],
        "x-required-scopes": [
          "items:read"
        ]
      }
    },
    "/items/{item_id}/time-rollup": {
      "get": {
        "description": "Get item time rollup. Results include only resources visible to the authenticated caller; collections use their documented stable order and bounds.",
        "operationId": "getItemsItemIdTimeRollup",
        "parameters": [
          {
            "description": "The item identifier.",
            "in": "path",
            "name": "item_id",
            "required": true,
            "schema": {
              "minimum": 1,
              "type": "integer"
            }
          },
          {
            "description": "Maximum hierarchy depth included in the time rollup.",
            "in": "query",
            "name": "max_depth",
            "required": false,
            "schema": {
              "default": 10,
              "maximum": 30,
              "minimum": 1,
              "type": "integer"
            }
          }
        ],
        "responses": {
          "200": {
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/GetItemsItemIdTimeRollupResult"
                }
              }
            },
            "description": "Get item time rollup response."
          },
          "400": {
            "$ref": "#/components/responses/InvalidRequestError"
          },
          "401": {
            "$ref": "#/components/responses/AuthenticationError"
          },
          "403": {
            "$ref": "#/components/responses/PermissionError"
          },
          "404": {
            "$ref": "#/components/responses/NotFoundError"
          },
          "429": {
            "$ref": "#/components/responses/RateLimitError"
          },
          "500": {
            "$ref": "#/components/responses/InternalError"
          }
        },
        "security": [
          {
            "BearerAuth": []
          }
        ],
        "summary": "Get item time rollup",
        "tags": [
          "Work items"
        ],
        "x-required-scopes": [
          "items:read"
        ]
      }
    },
    "/items/{item_id}/transition": {
      "post": {
        "description": "Transition item. The server validates resource ownership and command preconditions before persisting changes. Unknown JSON fields are rejected when the operation accepts a body.",
        "operationId": "postItemsItemIdTransition",
        "parameters": [
          {
            "description": "The item identifier.",
            "in": "path",
            "name": "item_id",
            "required": true,
            "schema": {
              "minimum": 1,
              "type": "integer"
            }
          }
        ],
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/PostItemsItemIdTransitionPayload"
              }
            }
          },
          "required": true
        },
        "responses": {
          "200": {
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/PostItemsItemIdTransitionResult"
                }
              }
            },
            "description": "Transition item response."
          },
          "400": {
            "$ref": "#/components/responses/InvalidRequestError"
          },
          "401": {
            "$ref": "#/components/responses/AuthenticationError"
          },
          "403": {
            "$ref": "#/components/responses/PermissionError"
          },
          "404": {
            "$ref": "#/components/responses/NotFoundError"
          },
          "413": {
            "$ref": "#/components/responses/PayloadTooLargeError"
          },
          "415": {
            "$ref": "#/components/responses/UnsupportedMediaTypeError"
          },
          "429": {
            "$ref": "#/components/responses/RateLimitError"
          },
          "500": {
            "$ref": "#/components/responses/InternalError"
          }
        },
        "security": [
          {
            "BearerAuth": []
          }
        ],
        "summary": "Transition item",
        "tags": [
          "Work items"
        ],
        "x-required-scopes": [
          "items:write"
        ]
      }
    },
    "/items/{item_id}/type-change-analysis": {
      "get": {
        "description": "Analyze item type change. Results include only resources visible to the authenticated caller; collections use their documented stable order and bounds.",
        "operationId": "getItemsItemIdTypeChangeAnalysis",
        "parameters": [
          {
            "description": "The item identifier.",
            "in": "path",
            "name": "item_id",
            "required": true,
            "schema": {
              "minimum": 1,
              "type": "integer"
            }
          },
          {
            "description": "Item type to evaluate as the migration target.",
            "in": "query",
            "name": "target_item_type_id",
            "required": true,
            "schema": {
              "minimum": 1,
              "type": "integer"
            }
          }
        ],
        "responses": {
          "200": {
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/GetItemsItemIdTypeChangeAnalysisResult"
                }
              }
            },
            "description": "Analyze item type change response."
          },
          "400": {
            "$ref": "#/components/responses/InvalidRequestError"
          },
          "401": {
            "$ref": "#/components/responses/AuthenticationError"
          },
          "403": {
            "$ref": "#/components/responses/PermissionError"
          },
          "404": {
            "$ref": "#/components/responses/NotFoundError"
          },
          "429": {
            "$ref": "#/components/responses/RateLimitError"
          },
          "500": {
            "$ref": "#/components/responses/InternalError"
          }
        },
        "security": [
          {
            "BearerAuth": []
          }
        ],
        "summary": "Analyze item type change",
        "tags": [
          "Work items"
        ],
        "x-required-scopes": [
          "items:read"
        ]
      }
    },
    "/items/{item_id}/watch": {
      "delete": {
        "description": "Unwatch item. The server verifies resource ownership and deletion preconditions before removing the resource.",
        "operationId": "deleteItemsItemIdWatch",
        "parameters": [
          {
            "description": "The item identifier.",
            "in": "path",
            "name": "item_id",
            "required": true,
            "schema": {
              "minimum": 1,
              "type": "integer"
            }
          }
        ],
        "responses": {
          "200": {
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/DeleteItemsItemIdWatchResult"
                }
              }
            },
            "description": "Unwatch item response."
          },
          "401": {
            "$ref": "#/components/responses/AuthenticationError"
          },
          "403": {
            "$ref": "#/components/responses/PermissionError"
          },
          "404": {
            "$ref": "#/components/responses/NotFoundError"
          },
          "429": {
            "$ref": "#/components/responses/RateLimitError"
          },
          "500": {
            "$ref": "#/components/responses/InternalError"
          }
        },
        "security": [
          {
            "BearerAuth": []
          }
        ],
        "summary": "Unwatch item",
        "tags": [
          "Work items"
        ],
        "x-required-scopes": [
          "items:write"
        ]
      },
      "get": {
        "description": "Get item watch. Results include only resources visible to the authenticated caller; collections use their documented stable order and bounds.",
        "operationId": "getItemsItemIdWatch",
        "parameters": [
          {
            "description": "The item identifier.",
            "in": "path",
            "name": "item_id",
            "required": true,
            "schema": {
              "minimum": 1,
              "type": "integer"
            }
          }
        ],
        "responses": {
          "200": {
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/GetItemsItemIdWatchResult"
                }
              }
            },
            "description": "Get item watch response."
          },
          "401": {
            "$ref": "#/components/responses/AuthenticationError"
          },
          "403": {
            "$ref": "#/components/responses/PermissionError"
          },
          "404": {
            "$ref": "#/components/responses/NotFoundError"
          },
          "429": {
            "$ref": "#/components/responses/RateLimitError"
          },
          "500": {
            "$ref": "#/components/responses/InternalError"
          }
        },
        "security": [
          {
            "BearerAuth": []
          }
        ],
        "summary": "Get item watch",
        "tags": [
          "Work items"
        ],
        "x-required-scopes": [
          "items:read"
        ]
      },
      "put": {
        "description": "Watch item. The server validates resource ownership and command preconditions before persisting changes. Unknown JSON fields are rejected when the operation accepts a body.",
        "operationId": "putItemsItemIdWatch",
        "parameters": [
          {
            "description": "The item identifier.",
            "in": "path",
            "name": "item_id",
            "required": true,
            "schema": {
              "minimum": 1,
              "type": "integer"
            }
          }
        ],
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/PutItemsItemIdWatchPayload"
              }
            }
          },
          "required": true
        },
        "responses": {
          "200": {
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/PutItemsItemIdWatchResult"
                }
              }
            },
            "description": "Watch item response."
          },
          "400": {
            "$ref": "#/components/responses/InvalidRequestError"
          },
          "401": {
            "$ref": "#/components/responses/AuthenticationError"
          },
          "403": {
            "$ref": "#/components/responses/PermissionError"
          },
          "404": {
            "$ref": "#/components/responses/NotFoundError"
          },
          "413": {
            "$ref": "#/components/responses/PayloadTooLargeError"
          },
          "415": {
            "$ref": "#/components/responses/UnsupportedMediaTypeError"
          },
          "429": {
            "$ref": "#/components/responses/RateLimitError"
          },
          "500": {
            "$ref": "#/components/responses/InternalError"
          }
        },
        "security": [
          {
            "BearerAuth": []
          }
        ],
        "summary": "Watch item",
        "tags": [
          "Work items"
        ],
        "x-required-scopes": [
          "items:write"
        ]
      }
    },
    "/items/{item_id}/worklogs": {
      "get": {
        "description": "List item worklogs. Results include only resources visible to the authenticated caller; collections use their documented stable order and bounds.",
        "operationId": "getItemsItemIdWorklogs",
        "parameters": [
          {
            "description": "The item identifier.",
            "in": "path",
            "name": "item_id",
            "required": true,
            "schema": {
              "minimum": 1,
              "type": "integer"
            }
          },
          {
            "description": "One-based page number.",
            "in": "query",
            "name": "page",
            "required": false,
            "schema": {
              "default": 1,
              "minimum": 1,
              "type": "integer"
            }
          },
          {
            "description": "Maximum number of resources to return.",
            "in": "query",
            "name": "page_size",
            "required": false,
            "schema": {
              "default": 50,
              "maximum": 100,
              "minimum": 1,
              "type": "integer"
            }
          },
          {
            "description": "Includes worklogs on or after this civil date.",
            "in": "query",
            "name": "from",
            "required": false,
            "schema": {
              "format": "date",
              "type": "string"
            }
          },
          {
            "description": "Includes worklogs on or before this civil date.",
            "in": "query",
            "name": "to",
            "required": false,
            "schema": {
              "format": "date",
              "type": "string"
            }
          }
        ],
        "responses": {
          "200": {
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/GetItemsItemIdWorklogsResult"
                }
              }
            },
            "description": "List item worklogs response."
          },
          "401": {
            "$ref": "#/components/responses/AuthenticationError"
          },
          "403": {
            "$ref": "#/components/responses/PermissionError"
          },
          "404": {
            "$ref": "#/components/responses/NotFoundError"
          },
          "429": {
            "$ref": "#/components/responses/RateLimitError"
          },
          "500": {
            "$ref": "#/components/responses/InternalError"
          }
        },
        "security": [
          {
            "BearerAuth": []
          }
        ],
        "summary": "List item worklogs",
        "tags": [
          "Time tracking"
        ],
        "x-required-scopes": [
          "time:read"
        ]
      }
    },
    "/iterations": {
      "get": {
        "description": "List global iterations. Results include only resources visible to the authenticated caller; collections use their documented stable order and bounds.",
        "operationId": "getIterations",
        "parameters": [
          {
            "description": "One-based page number.",
            "in": "query",
            "name": "page",
            "required": false,
            "schema": {
              "default": 1,
              "minimum": 1,
              "type": "integer"
            }
          },
          {
            "description": "Maximum number of resources to return.",
            "in": "query",
            "name": "page_size",
            "required": false,
            "schema": {
              "default": 50,
              "maximum": 100,
              "minimum": 1,
              "type": "integer"
            }
          },
          {
            "description": "Restricts results to one iteration type.",
            "in": "query",
            "name": "type_id",
            "required": false,
            "schema": {
              "minimum": 1,
              "type": "integer"
            }
          },
          {
            "description": "Restricts results to an iteration status.",
            "in": "query",
            "name": "status",
            "required": false,
            "schema": {
              "type": "string"
            }
          },
          {
            "description": "Sort field; prefix with '-' for descending order. ID is the stable final tie-breaker.",
            "in": "query",
            "name": "sort",
            "required": false,
            "schema": {
              "enum": [
                "start_date",
                "-start_date",
                "end_date",
                "-end_date",
                "name",
                "-name",
                "status",
                "-status",
                "created_at",
                "-created_at",
                "updated_at",
                "-updated_at"
              ],
              "type": "string"
            }
          }
        ],
        "responses": {
          "200": {
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/GetIterationsResult"
                }
              }
            },
            "description": "List global iterations response."
          },
          "401": {
            "$ref": "#/components/responses/AuthenticationError"
          },
          "403": {
            "$ref": "#/components/responses/PermissionError"
          },
          "429": {
            "$ref": "#/components/responses/RateLimitError"
          },
          "500": {
            "$ref": "#/components/responses/InternalError"
          }
        },
        "security": [
          {
            "BearerAuth": []
          }
        ],
        "summary": "List global iterations",
        "tags": [
          "Planning"
        ],
        "x-required-scopes": [
          "iterations:read"
        ]
      },
      "post": {
        "description": "Create global iteration. The server validates resource ownership and command preconditions before persisting changes. Unknown JSON fields are rejected when the operation accepts a body.",
        "operationId": "postIterations",
        "parameters": [],
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/PostIterationsPayload"
              }
            }
          },
          "required": true
        },
        "responses": {
          "201": {
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/PostIterationsResult"
                }
              }
            },
            "description": "Create global iteration response."
          },
          "400": {
            "$ref": "#/components/responses/InvalidRequestError"
          },
          "401": {
            "$ref": "#/components/responses/AuthenticationError"
          },
          "403": {
            "$ref": "#/components/responses/PermissionError"
          },
          "413": {
            "$ref": "#/components/responses/PayloadTooLargeError"
          },
          "415": {
            "$ref": "#/components/responses/UnsupportedMediaTypeError"
          },
          "429": {
            "$ref": "#/components/responses/RateLimitError"
          },
          "500": {
            "$ref": "#/components/responses/InternalError"
          }
        },
        "security": [
          {
            "BearerAuth": []
          }
        ],
        "summary": "Create global iteration",
        "tags": [
          "Planning"
        ],
        "x-required-scopes": [
          "iterations:write"
        ]
      }
    },
    "/iterations/progress": {
      "post": {
        "description": "Returns a bounded projection for up to 500 IDs. IDs are deduplicated by first occurrence; visible matches preserve request order, and missing or unauthorized resources are omitted without revealing which case applied. Results reflect committed state at request time and are all-or-nothing on computation failure.",
        "operationId": "postIterationsProgress",
        "parameters": [],
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/PostIterationsProgressPayload"
              }
            }
          },
          "required": true
        },
        "responses": {
          "200": {
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/PostIterationsProgressResult"
                }
              }
            },
            "description": "Get iteration progress batch response."
          },
          "400": {
            "$ref": "#/components/responses/InvalidRequestError"
          },
          "401": {
            "$ref": "#/components/responses/AuthenticationError"
          },
          "403": {
            "$ref": "#/components/responses/PermissionError"
          },
          "413": {
            "$ref": "#/components/responses/PayloadTooLargeError"
          },
          "415": {
            "$ref": "#/components/responses/UnsupportedMediaTypeError"
          },
          "429": {
            "$ref": "#/components/responses/RateLimitError"
          },
          "500": {
            "$ref": "#/components/responses/InternalError"
          }
        },
        "security": [
          {
            "BearerAuth": []
          }
        ],
        "summary": "Get iteration progress batch",
        "tags": [
          "Planning"
        ],
        "x-required-scopes": [
          "iterations:read"
        ]
      }
    },
    "/iterations/{iteration_id}": {
      "delete": {
        "description": "Delete iteration. The server verifies resource ownership and deletion preconditions before removing the resource.",
        "operationId": "deleteIterationsIterationId",
        "parameters": [
          {
            "description": "The iteration identifier.",
            "in": "path",
            "name": "iteration_id",
            "required": true,
            "schema": {
              "minimum": 1,
              "type": "integer"
            }
          }
        ],
        "responses": {
          "204": {
            "description": "Request completed successfully with no response body."
          },
          "401": {
            "$ref": "#/components/responses/AuthenticationError"
          },
          "403": {
            "$ref": "#/components/responses/PermissionError"
          },
          "404": {
            "$ref": "#/components/responses/NotFoundError"
          },
          "429": {
            "$ref": "#/components/responses/RateLimitError"
          },
          "500": {
            "$ref": "#/components/responses/InternalError"
          }
        },
        "security": [
          {
            "BearerAuth": []
          }
        ],
        "summary": "Delete iteration",
        "tags": [
          "Planning"
        ],
        "x-required-scopes": [
          "iterations:delete"
        ]
      },
      "get": {
        "description": "Get iteration. Results include only resources visible to the authenticated caller; collections use their documented stable order and bounds.",
        "operationId": "getIterationsIterationId",
        "parameters": [
          {
            "description": "The iteration identifier.",
            "in": "path",
            "name": "iteration_id",
            "required": true,
            "schema": {
              "minimum": 1,
              "type": "integer"
            }
          }
        ],
        "responses": {
          "200": {
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/GetIterationsIterationIdResult"
                }
              }
            },
            "description": "Get iteration response."
          },
          "401": {
            "$ref": "#/components/responses/AuthenticationError"
          },
          "403": {
            "$ref": "#/components/responses/PermissionError"
          },
          "404": {
            "$ref": "#/components/responses/NotFoundError"
          },
          "429": {
            "$ref": "#/components/responses/RateLimitError"
          },
          "500": {
            "$ref": "#/components/responses/InternalError"
          }
        },
        "security": [
          {
            "BearerAuth": []
          }
        ],
        "summary": "Get iteration",
        "tags": [
          "Planning"
        ],
        "x-required-scopes": [
          "iterations:read"
        ]
      },
      "patch": {
        "description": "Update iteration. The operation uses JSON Merge Patch: omitted fields remain unchanged and documented nullable fields accept null. Unknown fields are rejected.",
        "operationId": "patchIterationsIterationId",
        "parameters": [
          {
            "description": "The iteration identifier.",
            "in": "path",
            "name": "iteration_id",
            "required": true,
            "schema": {
              "minimum": 1,
              "type": "integer"
            }
          }
        ],
        "requestBody": {
          "content": {
            "application/merge-patch+json": {
              "schema": {
                "$ref": "#/components/schemas/PatchIterationsIterationIdPayload"
              }
            }
          },
          "required": true
        },
        "responses": {
          "200": {
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/PatchIterationsIterationIdResult"
                }
              }
            },
            "description": "Update iteration response."
          },
          "400": {
            "$ref": "#/components/responses/InvalidRequestError"
          },
          "401": {
            "$ref": "#/components/responses/AuthenticationError"
          },
          "403": {
            "$ref": "#/components/responses/PermissionError"
          },
          "404": {
            "$ref": "#/components/responses/NotFoundError"
          },
          "413": {
            "$ref": "#/components/responses/PayloadTooLargeError"
          },
          "415": {
            "$ref": "#/components/responses/UnsupportedMediaTypeError"
          },
          "429": {
            "$ref": "#/components/responses/RateLimitError"
          },
          "500": {
            "$ref": "#/components/responses/InternalError"
          }
        },
        "security": [
          {
            "BearerAuth": []
          }
        ],
        "summary": "Update iteration",
        "tags": [
          "Planning"
        ],
        "x-required-scopes": [
          "iterations:write"
        ]
      }
    },
    "/iterations/{iteration_id}/burndown": {
      "get": {
        "description": "Get iteration burndown. Results include only resources visible to the authenticated caller; collections use their documented stable order and bounds.",
        "operationId": "getIterationsIterationIdBurndown",
        "parameters": [
          {
            "description": "The iteration identifier.",
            "in": "path",
            "name": "iteration_id",
            "required": true,
            "schema": {
              "minimum": 1,
              "type": "integer"
            }
          }
        ],
        "responses": {
          "200": {
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/GetIterationsIterationIdBurndownResult"
                }
              }
            },
            "description": "Get iteration burndown response."
          },
          "401": {
            "$ref": "#/components/responses/AuthenticationError"
          },
          "403": {
            "$ref": "#/components/responses/PermissionError"
          },
          "404": {
            "$ref": "#/components/responses/NotFoundError"
          },
          "429": {
            "$ref": "#/components/responses/RateLimitError"
          },
          "500": {
            "$ref": "#/components/responses/InternalError"
          }
        },
        "security": [
          {
            "BearerAuth": []
          }
        ],
        "summary": "Get iteration burndown",
        "tags": [
          "Planning"
        ],
        "x-required-scopes": [
          "iterations:read"
        ]
      }
    },
    "/iterations/{iteration_id}/complete": {
      "post": {
        "description": "Complete iteration. The server validates resource ownership and command preconditions before persisting changes. Unknown JSON fields are rejected when the operation accepts a body.",
        "operationId": "postIterationsIterationIdComplete",
        "parameters": [
          {
            "description": "The iteration identifier.",
            "in": "path",
            "name": "iteration_id",
            "required": true,
            "schema": {
              "minimum": 1,
              "type": "integer"
            }
          }
        ],
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/PostIterationsIterationIdCompletePayload"
              }
            }
          },
          "required": true
        },
        "responses": {
          "200": {
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/PostIterationsIterationIdCompleteResult"
                }
              }
            },
            "description": "Complete iteration response."
          },
          "400": {
            "$ref": "#/components/responses/InvalidRequestError"
          },
          "401": {
            "$ref": "#/components/responses/AuthenticationError"
          },
          "403": {
            "$ref": "#/components/responses/PermissionError"
          },
          "404": {
            "$ref": "#/components/responses/NotFoundError"
          },
          "413": {
            "$ref": "#/components/responses/PayloadTooLargeError"
          },
          "415": {
            "$ref": "#/components/responses/UnsupportedMediaTypeError"
          },
          "429": {
            "$ref": "#/components/responses/RateLimitError"
          },
          "500": {
            "$ref": "#/components/responses/InternalError"
          }
        },
        "security": [
          {
            "BearerAuth": []
          }
        ],
        "summary": "Complete iteration",
        "tags": [
          "Planning"
        ],
        "x-required-scopes": [
          "iterations:write"
        ]
      }
    },
    "/iterations/{iteration_id}/progress": {
      "get": {
        "description": "Get iteration progress. Results include only resources visible to the authenticated caller; collections use their documented stable order and bounds.",
        "operationId": "getIterationsIterationIdProgress",
        "parameters": [
          {
            "description": "The iteration identifier.",
            "in": "path",
            "name": "iteration_id",
            "required": true,
            "schema": {
              "minimum": 1,
              "type": "integer"
            }
          }
        ],
        "responses": {
          "200": {
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/GetIterationsIterationIdProgressResult"
                }
              }
            },
            "description": "Get iteration progress response."
          },
          "401": {
            "$ref": "#/components/responses/AuthenticationError"
          },
          "403": {
            "$ref": "#/components/responses/PermissionError"
          },
          "404": {
            "$ref": "#/components/responses/NotFoundError"
          },
          "429": {
            "$ref": "#/components/responses/RateLimitError"
          },
          "500": {
            "$ref": "#/components/responses/InternalError"
          }
        },
        "security": [
          {
            "BearerAuth": []
          }
        ],
        "summary": "Get iteration progress",
        "tags": [
          "Planning"
        ],
        "x-required-scopes": [
          "iterations:read"
        ]
      }
    },
    "/link-types": {
      "get": {
        "description": "List link types. Results include only resources visible to the authenticated caller; collections use their documented stable order and bounds.",
        "operationId": "getLinkTypes",
        "parameters": [
          {
            "description": "Whether inactive link types are included.",
            "in": "query",
            "name": "include_inactive",
            "required": false,
            "schema": {
              "default": false,
              "type": "boolean"
            }
          }
        ],
        "responses": {
          "200": {
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/GetLinkTypesResult"
                }
              }
            },
            "description": "List link types response."
          },
          "401": {
            "$ref": "#/components/responses/AuthenticationError"
          },
          "403": {
            "$ref": "#/components/responses/PermissionError"
          },
          "429": {
            "$ref": "#/components/responses/RateLimitError"
          },
          "500": {
            "$ref": "#/components/responses/InternalError"
          }
        },
        "security": [
          {
            "BearerAuth": []
          }
        ],
        "summary": "List link types",
        "tags": [
          "Links"
        ],
        "x-required-scopes": [
          "links:read"
        ]
      },
      "post": {
        "description": "Create link type. The server validates resource ownership and command preconditions before persisting changes. Unknown JSON fields are rejected when the operation accepts a body.",
        "operationId": "postLinkTypes",
        "parameters": [],
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/PostLinkTypesPayload"
              }
            }
          },
          "required": true
        },
        "responses": {
          "201": {
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/PostLinkTypesResult"
                }
              }
            },
            "description": "Create link type response."
          },
          "400": {
            "$ref": "#/components/responses/InvalidRequestError"
          },
          "401": {
            "$ref": "#/components/responses/AuthenticationError"
          },
          "403": {
            "$ref": "#/components/responses/PermissionError"
          },
          "413": {
            "$ref": "#/components/responses/PayloadTooLargeError"
          },
          "415": {
            "$ref": "#/components/responses/UnsupportedMediaTypeError"
          },
          "429": {
            "$ref": "#/components/responses/RateLimitError"
          },
          "500": {
            "$ref": "#/components/responses/InternalError"
          }
        },
        "security": [
          {
            "BearerAuth": []
          }
        ],
        "summary": "Create link type",
        "tags": [
          "Links"
        ],
        "x-required-scopes": [
          "links:write"
        ]
      }
    },
    "/link-types/{link_type_id}": {
      "delete": {
        "description": "Delete link type. The server verifies resource ownership and deletion preconditions before removing the resource.",
        "operationId": "deleteLinkTypesLinkTypeId",
        "parameters": [
          {
            "description": "The link type identifier.",
            "in": "path",
            "name": "link_type_id",
            "required": true,
            "schema": {
              "minimum": 1,
              "type": "integer"
            }
          }
        ],
        "responses": {
          "204": {
            "description": "Request completed successfully with no response body."
          },
          "401": {
            "$ref": "#/components/responses/AuthenticationError"
          },
          "403": {
            "$ref": "#/components/responses/PermissionError"
          },
          "404": {
            "$ref": "#/components/responses/NotFoundError"
          },
          "429": {
            "$ref": "#/components/responses/RateLimitError"
          },
          "500": {
            "$ref": "#/components/responses/InternalError"
          }
        },
        "security": [
          {
            "BearerAuth": []
          }
        ],
        "summary": "Delete link type",
        "tags": [
          "Links"
        ],
        "x-required-scopes": [
          "links:write"
        ]
      },
      "get": {
        "description": "Get link type. Results include only resources visible to the authenticated caller; collections use their documented stable order and bounds.",
        "operationId": "getLinkTypesLinkTypeId",
        "parameters": [
          {
            "description": "The link type identifier.",
            "in": "path",
            "name": "link_type_id",
            "required": true,
            "schema": {
              "minimum": 1,
              "type": "integer"
            }
          }
        ],
        "responses": {
          "200": {
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/GetLinkTypesLinkTypeIdResult"
                }
              }
            },
            "description": "Get link type response."
          },
          "401": {
            "$ref": "#/components/responses/AuthenticationError"
          },
          "403": {
            "$ref": "#/components/responses/PermissionError"
          },
          "404": {
            "$ref": "#/components/responses/NotFoundError"
          },
          "429": {
            "$ref": "#/components/responses/RateLimitError"
          },
          "500": {
            "$ref": "#/components/responses/InternalError"
          }
        },
        "security": [
          {
            "BearerAuth": []
          }
        ],
        "summary": "Get link type",
        "tags": [
          "Links"
        ],
        "x-required-scopes": [
          "links:read"
        ]
      },
      "patch": {
        "description": "Patch link type. The operation uses JSON Merge Patch: omitted fields remain unchanged and documented nullable fields accept null. Unknown fields are rejected.",
        "operationId": "patchLinkTypesLinkTypeId",
        "parameters": [
          {
            "description": "The link type identifier.",
            "in": "path",
            "name": "link_type_id",
            "required": true,
            "schema": {
              "minimum": 1,
              "type": "integer"
            }
          }
        ],
        "requestBody": {
          "content": {
            "application/merge-patch+json": {
              "schema": {
                "$ref": "#/components/schemas/PatchLinkTypesLinkTypeIdPayload"
              }
            }
          },
          "required": true
        },
        "responses": {
          "200": {
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/PatchLinkTypesLinkTypeIdResult"
                }
              }
            },
            "description": "Patch link type response."
          },
          "400": {
            "$ref": "#/components/responses/InvalidRequestError"
          },
          "401": {
            "$ref": "#/components/responses/AuthenticationError"
          },
          "403": {
            "$ref": "#/components/responses/PermissionError"
          },
          "404": {
            "$ref": "#/components/responses/NotFoundError"
          },
          "413": {
            "$ref": "#/components/responses/PayloadTooLargeError"
          },
          "415": {
            "$ref": "#/components/responses/UnsupportedMediaTypeError"
          },
          "429": {
            "$ref": "#/components/responses/RateLimitError"
          },
          "500": {
            "$ref": "#/components/responses/InternalError"
          }
        },
        "security": [
          {
            "BearerAuth": []
          }
        ],
        "summary": "Patch link type",
        "tags": [
          "Links"
        ],
        "x-required-scopes": [
          "links:write"
        ]
      }
    },
    "/links": {
      "post": {
        "description": "Create link. The server validates resource ownership and command preconditions before persisting changes. Unknown JSON fields are rejected when the operation accepts a body.",
        "operationId": "postLinks",
        "parameters": [],
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/PostLinksPayload"
              }
            }
          },
          "required": true
        },
        "responses": {
          "201": {
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/PostLinksResult"
                }
              }
            },
            "description": "Create link response."
          },
          "400": {
            "$ref": "#/components/responses/InvalidRequestError"
          },
          "401": {
            "$ref": "#/components/responses/AuthenticationError"
          },
          "403": {
            "$ref": "#/components/responses/PermissionError"
          },
          "413": {
            "$ref": "#/components/responses/PayloadTooLargeError"
          },
          "415": {
            "$ref": "#/components/responses/UnsupportedMediaTypeError"
          },
          "429": {
            "$ref": "#/components/responses/RateLimitError"
          },
          "500": {
            "$ref": "#/components/responses/InternalError"
          }
        },
        "security": [
          {
            "BearerAuth": []
          }
        ],
        "summary": "Create link",
        "tags": [
          "Links"
        ],
        "x-required-scopes": [
          "links:write"
        ]
      }
    },
    "/links/batch": {
      "get": {
        "description": "Returns one-hop links for at most 100 explicit item IDs, or for one paged query-language selection. Explicit IDs retain first-occurrence order. Each item is capped independently and exposes an operation-bound next_cursor when more links exist; inaccessible links are omitted.",
        "operationId": "getLinksBatch",
        "parameters": [
          {
            "description": "One-based page number.",
            "in": "query",
            "name": "page",
            "required": false,
            "schema": {
              "default": 1,
              "minimum": 1,
              "type": "integer"
            }
          },
          {
            "description": "Maximum number of resources to return.",
            "in": "query",
            "name": "page_size",
            "required": false,
            "schema": {
              "default": 50,
              "maximum": 100,
              "minimum": 1,
              "type": "integer"
            }
          },
          {
            "description": "Comma-separated item IDs. At most 100 IDs are recommended to remain within common proxy URL limits; duplicates use their first occurrence.",
            "in": "query",
            "name": "ids",
            "required": false,
            "schema": {
              "type": "string"
            }
          },
          {
            "description": "Item query-language selector. Mutually exclusive with ids.",
            "in": "query",
            "name": "ql",
            "required": false,
            "schema": {
              "type": "string"
            }
          },
          {
            "description": "Sort field; prefix with '-' for descending order.",
            "in": "query",
            "name": "sort",
            "required": false,
            "schema": {
              "enum": [
                "key",
                "-key",
                "created_at",
                "-created_at",
                "updated_at",
                "-updated_at"
              ],
              "type": "string"
            }
          },
          {
            "description": "Whether linked item summaries include custom fields.",
            "in": "query",
            "name": "include_custom_fields",
            "required": false,
            "schema": {
              "default": false,
              "type": "boolean"
            }
          },
          {
            "description": "Opaque per-item link cursor from next_cursor. Valid only with the same single explicit item ID and without ql.",
            "in": "query",
            "name": "cursor",
            "required": false,
            "schema": {
              "minLength": 1,
              "type": "string"
            }
          }
        ],
        "responses": {
          "200": {
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/GetLinksBatchResult"
                }
              }
            },
            "description": "List links batch response."
          },
          "401": {
            "$ref": "#/components/responses/AuthenticationError"
          },
          "403": {
            "$ref": "#/components/responses/PermissionError"
          },
          "429": {
            "$ref": "#/components/responses/RateLimitError"
          },
          "500": {
            "$ref": "#/components/responses/InternalError"
          }
        },
        "security": [
          {
            "BearerAuth": []
          }
        ],
        "summary": "List links batch",
        "tags": [
          "Links"
        ],
        "x-required-scopes": [
          "items:read"
        ]
      }
    },
    "/links/search": {
      "get": {
        "description": "Search links. Results include only resources visible to the authenticated caller; collections use their documented stable order and bounds.",
        "operationId": "getLinksSearch",
        "parameters": [
          {
            "description": "Linkable resource search text.",
            "in": "query",
            "name": "q",
            "required": false,
            "schema": {
              "type": "string"
            }
          },
          {
            "description": "Restricts matches to one entity type.",
            "in": "query",
            "name": "type",
            "required": false,
            "schema": {
              "type": "string"
            }
          },
          {
            "description": "Maximum number of matches.",
            "in": "query",
            "name": "limit",
            "required": false,
            "schema": {
              "default": 20,
              "maximum": 100,
              "minimum": 1,
              "type": "integer"
            }
          },
          {
            "description": "Comma-separated positive item-type IDs.",
            "in": "query",
            "name": "item_type_ids",
            "required": false,
            "schema": {
              "type": "string"
            }
          }
        ],
        "responses": {
          "200": {
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/GetLinksSearchResult"
                }
              }
            },
            "description": "Search links response."
          },
          "401": {
            "$ref": "#/components/responses/AuthenticationError"
          },
          "403": {
            "$ref": "#/components/responses/PermissionError"
          },
          "429": {
            "$ref": "#/components/responses/RateLimitError"
          },
          "500": {
            "$ref": "#/components/responses/InternalError"
          }
        },
        "security": [
          {
            "BearerAuth": []
          }
        ],
        "summary": "Search links",
        "tags": [
          "Links"
        ],
        "x-required-scopes": [
          "links:read"
        ]
      }
    },
    "/links/{link_id}": {
      "delete": {
        "description": "Delete link. The server verifies resource ownership and deletion preconditions before removing the resource.",
        "operationId": "deleteLinksLinkId",
        "parameters": [
          {
            "description": "The link identifier.",
            "in": "path",
            "name": "link_id",
            "required": true,
            "schema": {
              "minimum": 1,
              "type": "integer"
            }
          }
        ],
        "responses": {
          "204": {
            "description": "Request completed successfully with no response body."
          },
          "401": {
            "$ref": "#/components/responses/AuthenticationError"
          },
          "403": {
            "$ref": "#/components/responses/PermissionError"
          },
          "404": {
            "$ref": "#/components/responses/NotFoundError"
          },
          "429": {
            "$ref": "#/components/responses/RateLimitError"
          },
          "500": {
            "$ref": "#/components/responses/InternalError"
          }
        },
        "security": [
          {
            "BearerAuth": []
          }
        ],
        "summary": "Delete link",
        "tags": [
          "Links"
        ],
        "x-required-scopes": [
          "links:write"
        ]
      }
    },
    "/milestones": {
      "get": {
        "description": "List global milestones. Results include only resources visible to the authenticated caller; collections use their documented stable order and bounds.",
        "operationId": "getMilestones",
        "parameters": [
          {
            "description": "One-based page number.",
            "in": "query",
            "name": "page",
            "required": false,
            "schema": {
              "default": 1,
              "minimum": 1,
              "type": "integer"
            }
          },
          {
            "description": "Maximum number of resources to return.",
            "in": "query",
            "name": "page_size",
            "required": false,
            "schema": {
              "default": 50,
              "maximum": 100,
              "minimum": 1,
              "type": "integer"
            }
          },
          {
            "description": "Restricts results to one milestone category.",
            "in": "query",
            "name": "category_id",
            "required": false,
            "schema": {
              "minimum": 1,
              "type": "integer"
            }
          },
          {
            "description": "Restricts results to a milestone status.",
            "in": "query",
            "name": "status",
            "required": false,
            "schema": {
              "type": "string"
            }
          },
          {
            "description": "Sort field; prefix with '-' for descending order. ID is the stable final tie-breaker.",
            "in": "query",
            "name": "sort",
            "required": false,
            "schema": {
              "enum": [
                "position",
                "-position",
                "name",
                "-name",
                "target_date",
                "-target_date",
                "status",
                "-status",
                "created_at",
                "-created_at",
                "updated_at",
                "-updated_at"
              ],
              "type": "string"
            }
          }
        ],
        "responses": {
          "200": {
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/GetMilestonesResult"
                }
              }
            },
            "description": "List global milestones response."
          },
          "401": {
            "$ref": "#/components/responses/AuthenticationError"
          },
          "403": {
            "$ref": "#/components/responses/PermissionError"
          },
          "429": {
            "$ref": "#/components/responses/RateLimitError"
          },
          "500": {
            "$ref": "#/components/responses/InternalError"
          }
        },
        "security": [
          {
            "BearerAuth": []
          }
        ],
        "summary": "List global milestones",
        "tags": [
          "Planning"
        ],
        "x-required-scopes": [
          "milestones:read"
        ]
      },
      "post": {
        "description": "Create global milestone. The server validates resource ownership and command preconditions before persisting changes. Unknown JSON fields are rejected when the operation accepts a body.",
        "operationId": "postMilestones",
        "parameters": [],
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/PostMilestonesPayload"
              }
            }
          },
          "required": true
        },
        "responses": {
          "201": {
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/PostMilestonesResult"
                }
              }
            },
            "description": "Create global milestone response."
          },
          "400": {
            "$ref": "#/components/responses/InvalidRequestError"
          },
          "401": {
            "$ref": "#/components/responses/AuthenticationError"
          },
          "403": {
            "$ref": "#/components/responses/PermissionError"
          },
          "413": {
            "$ref": "#/components/responses/PayloadTooLargeError"
          },
          "415": {
            "$ref": "#/components/responses/UnsupportedMediaTypeError"
          },
          "429": {
            "$ref": "#/components/responses/RateLimitError"
          },
          "500": {
            "$ref": "#/components/responses/InternalError"
          }
        },
        "security": [
          {
            "BearerAuth": []
          }
        ],
        "summary": "Create global milestone",
        "tags": [
          "Planning"
        ],
        "x-required-scopes": [
          "milestones:write"
        ]
      }
    },
    "/milestones/reorder": {
      "post": {
        "description": "Reorder global milestones. The server validates resource ownership and command preconditions before persisting changes. Unknown JSON fields are rejected when the operation accepts a body.",
        "operationId": "postMilestonesReorder",
        "parameters": [],
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/PostMilestonesReorderPayload"
              }
            }
          },
          "required": true
        },
        "responses": {
          "200": {
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/PostMilestonesReorderResult"
                }
              }
            },
            "description": "Reorder global milestones response."
          },
          "400": {
            "$ref": "#/components/responses/InvalidRequestError"
          },
          "401": {
            "$ref": "#/components/responses/AuthenticationError"
          },
          "403": {
            "$ref": "#/components/responses/PermissionError"
          },
          "413": {
            "$ref": "#/components/responses/PayloadTooLargeError"
          },
          "415": {
            "$ref": "#/components/responses/UnsupportedMediaTypeError"
          },
          "429": {
            "$ref": "#/components/responses/RateLimitError"
          },
          "500": {
            "$ref": "#/components/responses/InternalError"
          }
        },
        "security": [
          {
            "BearerAuth": []
          }
        ],
        "summary": "Reorder global milestones",
        "tags": [
          "Planning"
        ],
        "x-required-scopes": [
          "milestones:write"
        ]
      }
    },
    "/milestones/test-statistics": {
      "post": {
        "description": "Returns a bounded projection for up to 500 IDs. IDs are deduplicated by first occurrence; visible matches preserve request order, and missing or unauthorized resources are omitted without revealing which case applied. Results reflect committed state at request time and are all-or-nothing on computation failure.",
        "operationId": "postMilestonesTestStatistics",
        "parameters": [],
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/PostMilestonesTestStatisticsPayload"
              }
            }
          },
          "required": true
        },
        "responses": {
          "200": {
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/PostMilestonesTestStatisticsResult"
                }
              }
            },
            "description": "Get milestone test statistics batch response."
          },
          "400": {
            "$ref": "#/components/responses/InvalidRequestError"
          },
          "401": {
            "$ref": "#/components/responses/AuthenticationError"
          },
          "403": {
            "$ref": "#/components/responses/PermissionError"
          },
          "413": {
            "$ref": "#/components/responses/PayloadTooLargeError"
          },
          "415": {
            "$ref": "#/components/responses/UnsupportedMediaTypeError"
          },
          "429": {
            "$ref": "#/components/responses/RateLimitError"
          },
          "500": {
            "$ref": "#/components/responses/InternalError"
          }
        },
        "security": [
          {
            "BearerAuth": []
          }
        ],
        "summary": "Get milestone test statistics batch",
        "tags": [
          "Test management"
        ],
        "x-required-scopes": [
          "milestones:read"
        ]
      }
    },
    "/milestones/{milestone_id}": {
      "delete": {
        "description": "Delete milestone. The server verifies resource ownership and deletion preconditions before removing the resource.",
        "operationId": "deleteMilestonesMilestoneId",
        "parameters": [
          {
            "description": "The milestone identifier.",
            "in": "path",
            "name": "milestone_id",
            "required": true,
            "schema": {
              "minimum": 1,
              "type": "integer"
            }
          }
        ],
        "responses": {
          "204": {
            "description": "Request completed successfully with no response body."
          },
          "401": {
            "$ref": "#/components/responses/AuthenticationError"
          },
          "403": {
            "$ref": "#/components/responses/PermissionError"
          },
          "404": {
            "$ref": "#/components/responses/NotFoundError"
          },
          "429": {
            "$ref": "#/components/responses/RateLimitError"
          },
          "500": {
            "$ref": "#/components/responses/InternalError"
          }
        },
        "security": [
          {
            "BearerAuth": []
          }
        ],
        "summary": "Delete milestone",
        "tags": [
          "Planning"
        ],
        "x-required-scopes": [
          "milestones:delete"
        ]
      },
      "get": {
        "description": "Get milestone. Results include only resources visible to the authenticated caller; collections use their documented stable order and bounds.",
        "operationId": "getMilestonesMilestoneId",
        "parameters": [
          {
            "description": "The milestone identifier.",
            "in": "path",
            "name": "milestone_id",
            "required": true,
            "schema": {
              "minimum": 1,
              "type": "integer"
            }
          }
        ],
        "responses": {
          "200": {
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/GetMilestonesMilestoneIdResult"
                }
              }
            },
            "description": "Get milestone response."
          },
          "401": {
            "$ref": "#/components/responses/AuthenticationError"
          },
          "403": {
            "$ref": "#/components/responses/PermissionError"
          },
          "404": {
            "$ref": "#/components/responses/NotFoundError"
          },
          "429": {
            "$ref": "#/components/responses/RateLimitError"
          },
          "500": {
            "$ref": "#/components/responses/InternalError"
          }
        },
        "security": [
          {
            "BearerAuth": []
          }
        ],
        "summary": "Get milestone",
        "tags": [
          "Planning"
        ],
        "x-required-scopes": [
          "milestones:read"
        ]
      },
      "patch": {
        "description": "Update milestone. The operation uses JSON Merge Patch: omitted fields remain unchanged and documented nullable fields accept null. Unknown fields are rejected.",
        "operationId": "patchMilestonesMilestoneId",
        "parameters": [
          {
            "description": "The milestone identifier.",
            "in": "path",
            "name": "milestone_id",
            "required": true,
            "schema": {
              "minimum": 1,
              "type": "integer"
            }
          }
        ],
        "requestBody": {
          "content": {
            "application/merge-patch+json": {
              "schema": {
                "$ref": "#/components/schemas/PatchMilestonesMilestoneIdPayload"
              }
            }
          },
          "required": true
        },
        "responses": {
          "200": {
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/PatchMilestonesMilestoneIdResult"
                }
              }
            },
            "description": "Update milestone response."
          },
          "400": {
            "$ref": "#/components/responses/InvalidRequestError"
          },
          "401": {
            "$ref": "#/components/responses/AuthenticationError"
          },
          "403": {
            "$ref": "#/components/responses/PermissionError"
          },
          "404": {
            "$ref": "#/components/responses/NotFoundError"
          },
          "413": {
            "$ref": "#/components/responses/PayloadTooLargeError"
          },
          "415": {
            "$ref": "#/components/responses/UnsupportedMediaTypeError"
          },
          "429": {
            "$ref": "#/components/responses/RateLimitError"
          },
          "500": {
            "$ref": "#/components/responses/InternalError"
          }
        },
        "security": [
          {
            "BearerAuth": []
          }
        ],
        "summary": "Update milestone",
        "tags": [
          "Planning"
        ],
        "x-required-scopes": [
          "milestones:write"
        ]
      }
    },
    "/milestones/{milestone_id}/progress": {
      "get": {
        "description": "Get milestone progress. Results include only resources visible to the authenticated caller; collections use their documented stable order and bounds.",
        "operationId": "getMilestonesMilestoneIdProgress",
        "parameters": [
          {
            "description": "The milestone identifier.",
            "in": "path",
            "name": "milestone_id",
            "required": true,
            "schema": {
              "minimum": 1,
              "type": "integer"
            }
          }
        ],
        "responses": {
          "200": {
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/GetMilestonesMilestoneIdProgressResult"
                }
              }
            },
            "description": "Get milestone progress response."
          },
          "401": {
            "$ref": "#/components/responses/AuthenticationError"
          },
          "403": {
            "$ref": "#/components/responses/PermissionError"
          },
          "404": {
            "$ref": "#/components/responses/NotFoundError"
          },
          "429": {
            "$ref": "#/components/responses/RateLimitError"
          },
          "500": {
            "$ref": "#/components/responses/InternalError"
          }
        },
        "security": [
          {
            "BearerAuth": []
          }
        ],
        "summary": "Get milestone progress",
        "tags": [
          "Planning"
        ],
        "x-required-scopes": [
          "milestones:read"
        ]
      }
    },
    "/milestones/{milestone_id}/release": {
      "post": {
        "description": "Release milestone. The server validates resource ownership and command preconditions before persisting changes. Unknown JSON fields are rejected when the operation accepts a body.",
        "operationId": "postMilestonesMilestoneIdRelease",
        "parameters": [
          {
            "description": "The milestone identifier.",
            "in": "path",
            "name": "milestone_id",
            "required": true,
            "schema": {
              "minimum": 1,
              "type": "integer"
            }
          },
          {
            "description": "Caller-generated key that makes retries return the original release result.",
            "in": "header",
            "name": "Idempotency-Key",
            "required": false,
            "schema": {
              "minLength": 1,
              "type": "string"
            }
          }
        ],
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/PostMilestonesMilestoneIdReleasePayload"
              }
            }
          },
          "required": true
        },
        "responses": {
          "200": {
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/PostMilestonesMilestoneIdReleaseResult"
                }
              }
            },
            "description": "Release milestone response."
          },
          "400": {
            "$ref": "#/components/responses/InvalidRequestError"
          },
          "401": {
            "$ref": "#/components/responses/AuthenticationError"
          },
          "403": {
            "$ref": "#/components/responses/PermissionError"
          },
          "404": {
            "$ref": "#/components/responses/NotFoundError"
          },
          "413": {
            "$ref": "#/components/responses/PayloadTooLargeError"
          },
          "415": {
            "$ref": "#/components/responses/UnsupportedMediaTypeError"
          },
          "429": {
            "$ref": "#/components/responses/RateLimitError"
          },
          "500": {
            "$ref": "#/components/responses/InternalError"
          }
        },
        "security": [
          {
            "BearerAuth": []
          }
        ],
        "summary": "Release milestone",
        "tags": [
          "Planning"
        ],
        "x-required-scopes": [
          "milestones:write"
        ]
      }
    },
    "/milestones/{milestone_id}/test-statistics": {
      "get": {
        "description": "Get milestone test statistics. Results include only resources visible to the authenticated caller; collections use their documented stable order and bounds.",
        "operationId": "getMilestonesMilestoneIdTestStatistics",
        "parameters": [
          {
            "description": "The milestone identifier.",
            "in": "path",
            "name": "milestone_id",
            "required": true,
            "schema": {
              "minimum": 1,
              "type": "integer"
            }
          }
        ],
        "responses": {
          "200": {
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/GetMilestonesMilestoneIdTestStatisticsResult"
                }
              }
            },
            "description": "Get milestone test statistics response."
          },
          "401": {
            "$ref": "#/components/responses/AuthenticationError"
          },
          "403": {
            "$ref": "#/components/responses/PermissionError"
          },
          "404": {
            "$ref": "#/components/responses/NotFoundError"
          },
          "429": {
            "$ref": "#/components/responses/RateLimitError"
          },
          "500": {
            "$ref": "#/components/responses/InternalError"
          }
        },
        "security": [
          {
            "BearerAuth": []
          }
        ],
        "summary": "Get milestone test statistics",
        "tags": [
          "Test management"
        ],
        "x-required-scopes": [
          "milestones:read"
        ]
      }
    },
    "/openapi.json": {
      "get": {
        "description": "Get the API v2 OpenAPI document. Results include only resources visible to the authenticated caller; collections use their documented stable order and bounds.",
        "operationId": "getOpenapi.json",
        "parameters": [
          {
            "description": "Returns 304 when this value matches the current specification ETag.",
            "in": "header",
            "name": "If-None-Match",
            "required": false,
            "schema": {
              "type": "string"
            }
          }
        ],
        "responses": {
          "200": {
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/GetOpenapi.jsonResult"
                }
              }
            },
            "description": "Get the API v2 OpenAPI document response."
          },
          "500": {
            "$ref": "#/components/responses/InternalError"
          }
        },
        "summary": "Get the API v2 OpenAPI document",
        "tags": [
          "API"
        ]
      }
    },
    "/pages/{page_id}/links": {
      "get": {
        "description": "List page links. Results include only resources visible to the authenticated caller; collections use their documented stable order and bounds.",
        "operationId": "getPagesPageIdLinks",
        "parameters": [
          {
            "description": "The page identifier.",
            "in": "path",
            "name": "page_id",
            "required": true,
            "schema": {
              "minimum": 1,
              "type": "integer"
            }
          }
        ],
        "responses": {
          "200": {
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/GetPagesPageIdLinksResult"
                }
              }
            },
            "description": "List page links response."
          },
          "401": {
            "$ref": "#/components/responses/AuthenticationError"
          },
          "403": {
            "$ref": "#/components/responses/PermissionError"
          },
          "404": {
            "$ref": "#/components/responses/NotFoundError"
          },
          "429": {
            "$ref": "#/components/responses/RateLimitError"
          },
          "500": {
            "$ref": "#/components/responses/InternalError"
          }
        },
        "security": [
          {
            "BearerAuth": []
          }
        ],
        "summary": "List page links",
        "tags": [
          "Links"
        ],
        "x-required-scopes": [
          "pages:read"
        ]
      }
    },
    "/priorities": {
      "get": {
        "description": "List priorities. Results include only resources visible to the authenticated caller; collections use their documented stable order and bounds.",
        "operationId": "getPriorities",
        "parameters": [],
        "responses": {
          "200": {
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/GetPrioritiesResult"
                }
              }
            },
            "description": "List priorities response."
          },
          "401": {
            "$ref": "#/components/responses/AuthenticationError"
          },
          "403": {
            "$ref": "#/components/responses/PermissionError"
          },
          "429": {
            "$ref": "#/components/responses/RateLimitError"
          },
          "500": {
            "$ref": "#/components/responses/InternalError"
          }
        },
        "security": [
          {
            "BearerAuth": []
          }
        ],
        "summary": "List priorities",
        "tags": [
          "Workspace configuration"
        ],
        "x-required-scopes": [
          "priorities:read"
        ]
      },
      "post": {
        "description": "Create priority. The server validates resource ownership and command preconditions before persisting changes. Unknown JSON fields are rejected when the operation accepts a body.",
        "operationId": "postPriorities",
        "parameters": [],
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/PostPrioritiesPayload"
              }
            }
          },
          "required": true
        },
        "responses": {
          "201": {
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/PostPrioritiesResult"
                }
              }
            },
            "description": "Create priority response."
          },
          "400": {
            "$ref": "#/components/responses/InvalidRequestError"
          },
          "401": {
            "$ref": "#/components/responses/AuthenticationError"
          },
          "403": {
            "$ref": "#/components/responses/PermissionError"
          },
          "413": {
            "$ref": "#/components/responses/PayloadTooLargeError"
          },
          "415": {
            "$ref": "#/components/responses/UnsupportedMediaTypeError"
          },
          "429": {
            "$ref": "#/components/responses/RateLimitError"
          },
          "500": {
            "$ref": "#/components/responses/InternalError"
          }
        },
        "security": [
          {
            "BearerAuth": []
          }
        ],
        "summary": "Create priority",
        "tags": [
          "Workspace configuration"
        ],
        "x-required-scopes": [
          "priorities:write"
        ]
      }
    },
    "/priorities/{priority_id}": {
      "delete": {
        "description": "Delete priority. The server verifies resource ownership and deletion preconditions before removing the resource.",
        "operationId": "deletePrioritiesPriorityId",
        "parameters": [
          {
            "description": "The priority identifier.",
            "in": "path",
            "name": "priority_id",
            "required": true,
            "schema": {
              "minimum": 1,
              "type": "integer"
            }
          }
        ],
        "responses": {
          "204": {
            "description": "Request completed successfully with no response body."
          },
          "401": {
            "$ref": "#/components/responses/AuthenticationError"
          },
          "403": {
            "$ref": "#/components/responses/PermissionError"
          },
          "404": {
            "$ref": "#/components/responses/NotFoundError"
          },
          "429": {
            "$ref": "#/components/responses/RateLimitError"
          },
          "500": {
            "$ref": "#/components/responses/InternalError"
          }
        },
        "security": [
          {
            "BearerAuth": []
          }
        ],
        "summary": "Delete priority",
        "tags": [
          "Workspace configuration"
        ],
        "x-required-scopes": [
          "priorities:write"
        ]
      },
      "get": {
        "description": "Get priority. Results include only resources visible to the authenticated caller; collections use their documented stable order and bounds.",
        "operationId": "getPrioritiesPriorityId",
        "parameters": [
          {
            "description": "The priority identifier.",
            "in": "path",
            "name": "priority_id",
            "required": true,
            "schema": {
              "minimum": 1,
              "type": "integer"
            }
          }
        ],
        "responses": {
          "200": {
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/GetPrioritiesPriorityIdResult"
                }
              }
            },
            "description": "Get priority response."
          },
          "401": {
            "$ref": "#/components/responses/AuthenticationError"
          },
          "403": {
            "$ref": "#/components/responses/PermissionError"
          },
          "404": {
            "$ref": "#/components/responses/NotFoundError"
          },
          "429": {
            "$ref": "#/components/responses/RateLimitError"
          },
          "500": {
            "$ref": "#/components/responses/InternalError"
          }
        },
        "security": [
          {
            "BearerAuth": []
          }
        ],
        "summary": "Get priority",
        "tags": [
          "Workspace configuration"
        ],
        "x-required-scopes": [
          "priorities:read"
        ]
      },
      "patch": {
        "description": "Patch priority. The operation uses JSON Merge Patch: omitted fields remain unchanged and documented nullable fields accept null. Unknown fields are rejected.",
        "operationId": "patchPrioritiesPriorityId",
        "parameters": [
          {
            "description": "The priority identifier.",
            "in": "path",
            "name": "priority_id",
            "required": true,
            "schema": {
              "minimum": 1,
              "type": "integer"
            }
          }
        ],
        "requestBody": {
          "content": {
            "application/merge-patch+json": {
              "schema": {
                "$ref": "#/components/schemas/PatchPrioritiesPriorityIdPayload"
              }
            }
          },
          "required": true
        },
        "responses": {
          "200": {
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/PatchPrioritiesPriorityIdResult"
                }
              }
            },
            "description": "Patch priority response."
          },
          "400": {
            "$ref": "#/components/responses/InvalidRequestError"
          },
          "401": {
            "$ref": "#/components/responses/AuthenticationError"
          },
          "403": {
            "$ref": "#/components/responses/PermissionError"
          },
          "404": {
            "$ref": "#/components/responses/NotFoundError"
          },
          "413": {
            "$ref": "#/components/responses/PayloadTooLargeError"
          },
          "415": {
            "$ref": "#/components/responses/UnsupportedMediaTypeError"
          },
          "429": {
            "$ref": "#/components/responses/RateLimitError"
          },
          "500": {
            "$ref": "#/components/responses/InternalError"
          }
        },
        "security": [
          {
            "BearerAuth": []
          }
        ],
        "summary": "Patch priority",
        "tags": [
          "Workspace configuration"
        ],
        "x-required-scopes": [
          "priorities:write"
        ]
      }
    },
    "/query-language/catalog": {
      "get": {
        "description": "Get the query language completion catalog. Results include only resources visible to the authenticated caller; collections use their documented stable order and bounds.",
        "operationId": "getQueryLanguageCatalog",
        "parameters": [],
        "responses": {
          "200": {
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/GetQueryLanguageCatalogResult"
                }
              }
            },
            "description": "Get the query language completion catalog response."
          },
          "401": {
            "$ref": "#/components/responses/AuthenticationError"
          },
          "403": {
            "$ref": "#/components/responses/PermissionError"
          },
          "429": {
            "$ref": "#/components/responses/RateLimitError"
          },
          "500": {
            "$ref": "#/components/responses/InternalError"
          }
        },
        "security": [
          {
            "BearerAuth": []
          }
        ],
        "summary": "Get the query language completion catalog",
        "tags": [
          "Work items"
        ],
        "x-required-scopes": [
          "items:read"
        ]
      }
    },
    "/query-language/values": {
      "get": {
        "description": "Search query language completion values. Results include only resources visible to the authenticated caller; collections use their documented stable order and bounds.",
        "operationId": "getQueryLanguageValues",
        "parameters": [
          {
            "description": "Completion value catalog to search.",
            "in": "query",
            "name": "source",
            "required": true,
            "schema": {
              "enum": [
                "workspaces",
                "statuses",
                "status_categories",
                "priorities",
                "users",
                "milestones",
                "iterations",
                "projects",
                "item_types",
                "labels"
              ],
              "type": "string"
            }
          },
          {
            "description": "Resource field returned as the query-language value.",
            "in": "query",
            "name": "value_field",
            "required": true,
            "schema": {
              "enum": [
                "id",
                "name",
                "key"
              ],
              "type": "string"
            }
          },
          {
            "description": "Case-insensitive value-label search text.",
            "in": "query",
            "name": "q",
            "required": false,
            "schema": {
              "type": "string"
            }
          },
          {
            "description": "Maximum number of completion values to return.",
            "in": "query",
            "name": "limit",
            "required": false,
            "schema": {
              "default": 50,
              "maximum": 100,
              "minimum": 1,
              "type": "integer"
            }
          }
        ],
        "responses": {
          "200": {
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/GetQueryLanguageValuesResult"
                }
              }
            },
            "description": "Search query language completion values response."
          },
          "400": {
            "$ref": "#/components/responses/InvalidRequestError"
          },
          "401": {
            "$ref": "#/components/responses/AuthenticationError"
          },
          "403": {
            "$ref": "#/components/responses/PermissionError"
          },
          "429": {
            "$ref": "#/components/responses/RateLimitError"
          },
          "500": {
            "$ref": "#/components/responses/InternalError"
          }
        },
        "security": [
          {
            "BearerAuth": []
          }
        ],
        "summary": "Search query language completion values",
        "tags": [
          "Work items"
        ],
        "x-required-scopes": [
          "items:read"
        ]
      }
    },
    "/recurrence-rules/preview": {
      "post": {
        "description": "Preview recurrence rule. The server validates resource ownership and command preconditions before persisting changes. Unknown JSON fields are rejected when the operation accepts a body.",
        "operationId": "postRecurrenceRulesPreview",
        "parameters": [],
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/PostRecurrenceRulesPreviewPayload"
              }
            }
          },
          "required": true
        },
        "responses": {
          "200": {
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/PostRecurrenceRulesPreviewResult"
                }
              }
            },
            "description": "Preview recurrence rule response."
          },
          "400": {
            "$ref": "#/components/responses/InvalidRequestError"
          },
          "401": {
            "$ref": "#/components/responses/AuthenticationError"
          },
          "403": {
            "$ref": "#/components/responses/PermissionError"
          },
          "413": {
            "$ref": "#/components/responses/PayloadTooLargeError"
          },
          "415": {
            "$ref": "#/components/responses/UnsupportedMediaTypeError"
          },
          "429": {
            "$ref": "#/components/responses/RateLimitError"
          },
          "500": {
            "$ref": "#/components/responses/InternalError"
          }
        },
        "security": [
          {
            "BearerAuth": []
          }
        ],
        "summary": "Preview recurrence rule",
        "tags": [
          "Work items"
        ],
        "x-required-scopes": [
          "items:read"
        ]
      }
    },
    "/status-categories": {
      "get": {
        "description": "List status categories. Results include only resources visible to the authenticated caller; collections use their documented stable order and bounds.",
        "operationId": "getStatusCategories",
        "parameters": [],
        "responses": {
          "200": {
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/GetStatusCategoriesResult"
                }
              }
            },
            "description": "List status categories response."
          },
          "401": {
            "$ref": "#/components/responses/AuthenticationError"
          },
          "403": {
            "$ref": "#/components/responses/PermissionError"
          },
          "429": {
            "$ref": "#/components/responses/RateLimitError"
          },
          "500": {
            "$ref": "#/components/responses/InternalError"
          }
        },
        "security": [
          {
            "BearerAuth": []
          }
        ],
        "summary": "List status categories",
        "tags": [
          "Workspace configuration"
        ],
        "x-required-scopes": [
          "statuses:read"
        ]
      },
      "post": {
        "description": "Create status category. The server validates resource ownership and command preconditions before persisting changes. Unknown JSON fields are rejected when the operation accepts a body.",
        "operationId": "postStatusCategories",
        "parameters": [],
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/PostStatusCategoriesPayload"
              }
            }
          },
          "required": true
        },
        "responses": {
          "201": {
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/PostStatusCategoriesResult"
                }
              }
            },
            "description": "Create status category response."
          },
          "400": {
            "$ref": "#/components/responses/InvalidRequestError"
          },
          "401": {
            "$ref": "#/components/responses/AuthenticationError"
          },
          "403": {
            "$ref": "#/components/responses/PermissionError"
          },
          "413": {
            "$ref": "#/components/responses/PayloadTooLargeError"
          },
          "415": {
            "$ref": "#/components/responses/UnsupportedMediaTypeError"
          },
          "429": {
            "$ref": "#/components/responses/RateLimitError"
          },
          "500": {
            "$ref": "#/components/responses/InternalError"
          }
        },
        "security": [
          {
            "BearerAuth": []
          }
        ],
        "summary": "Create status category",
        "tags": [
          "Workspace configuration"
        ],
        "x-required-scopes": [
          "statuses:write"
        ]
      }
    },
    "/status-categories/{category_id}": {
      "delete": {
        "description": "Delete status category. The server verifies resource ownership and deletion preconditions before removing the resource.",
        "operationId": "deleteStatusCategoriesCategoryId",
        "parameters": [
          {
            "description": "The category identifier.",
            "in": "path",
            "name": "category_id",
            "required": true,
            "schema": {
              "minimum": 1,
              "type": "integer"
            }
          }
        ],
        "responses": {
          "204": {
            "description": "Request completed successfully with no response body."
          },
          "401": {
            "$ref": "#/components/responses/AuthenticationError"
          },
          "403": {
            "$ref": "#/components/responses/PermissionError"
          },
          "404": {
            "$ref": "#/components/responses/NotFoundError"
          },
          "429": {
            "$ref": "#/components/responses/RateLimitError"
          },
          "500": {
            "$ref": "#/components/responses/InternalError"
          }
        },
        "security": [
          {
            "BearerAuth": []
          }
        ],
        "summary": "Delete status category",
        "tags": [
          "Workspace configuration"
        ],
        "x-required-scopes": [
          "statuses:write"
        ]
      },
      "get": {
        "description": "Get status category. Results include only resources visible to the authenticated caller; collections use their documented stable order and bounds.",
        "operationId": "getStatusCategoriesCategoryId",
        "parameters": [
          {
            "description": "The category identifier.",
            "in": "path",
            "name": "category_id",
            "required": true,
            "schema": {
              "minimum": 1,
              "type": "integer"
            }
          }
        ],
        "responses": {
          "200": {
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/GetStatusCategoriesCategoryIdResult"
                }
              }
            },
            "description": "Get status category response."
          },
          "401": {
            "$ref": "#/components/responses/AuthenticationError"
          },
          "403": {
            "$ref": "#/components/responses/PermissionError"
          },
          "404": {
            "$ref": "#/components/responses/NotFoundError"
          },
          "429": {
            "$ref": "#/components/responses/RateLimitError"
          },
          "500": {
            "$ref": "#/components/responses/InternalError"
          }
        },
        "security": [
          {
            "BearerAuth": []
          }
        ],
        "summary": "Get status category",
        "tags": [
          "Workspace configuration"
        ],
        "x-required-scopes": [
          "statuses:read"
        ]
      },
      "patch": {
        "description": "Patch status category. The operation uses JSON Merge Patch: omitted fields remain unchanged and documented nullable fields accept null. Unknown fields are rejected.",
        "operationId": "patchStatusCategoriesCategoryId",
        "parameters": [
          {
            "description": "The category identifier.",
            "in": "path",
            "name": "category_id",
            "required": true,
            "schema": {
              "minimum": 1,
              "type": "integer"
            }
          }
        ],
        "requestBody": {
          "content": {
            "application/merge-patch+json": {
              "schema": {
                "$ref": "#/components/schemas/PatchStatusCategoriesCategoryIdPayload"
              }
            }
          },
          "required": true
        },
        "responses": {
          "200": {
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/PatchStatusCategoriesCategoryIdResult"
                }
              }
            },
            "description": "Patch status category response."
          },
          "400": {
            "$ref": "#/components/responses/InvalidRequestError"
          },
          "401": {
            "$ref": "#/components/responses/AuthenticationError"
          },
          "403": {
            "$ref": "#/components/responses/PermissionError"
          },
          "404": {
            "$ref": "#/components/responses/NotFoundError"
          },
          "413": {
            "$ref": "#/components/responses/PayloadTooLargeError"
          },
          "415": {
            "$ref": "#/components/responses/UnsupportedMediaTypeError"
          },
          "429": {
            "$ref": "#/components/responses/RateLimitError"
          },
          "500": {
            "$ref": "#/components/responses/InternalError"
          }
        },
        "security": [
          {
            "BearerAuth": []
          }
        ],
        "summary": "Patch status category",
        "tags": [
          "Workspace configuration"
        ],
        "x-required-scopes": [
          "statuses:write"
        ]
      }
    },
    "/statuses": {
      "get": {
        "description": "List statuses. Results include only resources visible to the authenticated caller; collections use their documented stable order and bounds.",
        "operationId": "getStatuses",
        "parameters": [],
        "responses": {
          "200": {
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/GetStatusesResult"
                }
              }
            },
            "description": "List statuses response."
          },
          "401": {
            "$ref": "#/components/responses/AuthenticationError"
          },
          "403": {
            "$ref": "#/components/responses/PermissionError"
          },
          "429": {
            "$ref": "#/components/responses/RateLimitError"
          },
          "500": {
            "$ref": "#/components/responses/InternalError"
          }
        },
        "security": [
          {
            "BearerAuth": []
          }
        ],
        "summary": "List statuses",
        "tags": [
          "Workspace configuration"
        ],
        "x-required-scopes": [
          "statuses:read"
        ]
      },
      "post": {
        "description": "Create status. The server validates resource ownership and command preconditions before persisting changes. Unknown JSON fields are rejected when the operation accepts a body.",
        "operationId": "postStatuses",
        "parameters": [],
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/PostStatusesPayload"
              }
            }
          },
          "required": true
        },
        "responses": {
          "201": {
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/PostStatusesResult"
                }
              }
            },
            "description": "Create status response."
          },
          "400": {
            "$ref": "#/components/responses/InvalidRequestError"
          },
          "401": {
            "$ref": "#/components/responses/AuthenticationError"
          },
          "403": {
            "$ref": "#/components/responses/PermissionError"
          },
          "413": {
            "$ref": "#/components/responses/PayloadTooLargeError"
          },
          "415": {
            "$ref": "#/components/responses/UnsupportedMediaTypeError"
          },
          "429": {
            "$ref": "#/components/responses/RateLimitError"
          },
          "500": {
            "$ref": "#/components/responses/InternalError"
          }
        },
        "security": [
          {
            "BearerAuth": []
          }
        ],
        "summary": "Create status",
        "tags": [
          "Workspace configuration"
        ],
        "x-required-scopes": [
          "statuses:write"
        ]
      }
    },
    "/statuses/{status_id}": {
      "delete": {
        "description": "Delete status. The server verifies resource ownership and deletion preconditions before removing the resource.",
        "operationId": "deleteStatusesStatusId",
        "parameters": [
          {
            "description": "The status identifier.",
            "in": "path",
            "name": "status_id",
            "required": true,
            "schema": {
              "minimum": 1,
              "type": "integer"
            }
          }
        ],
        "responses": {
          "204": {
            "description": "Request completed successfully with no response body."
          },
          "401": {
            "$ref": "#/components/responses/AuthenticationError"
          },
          "403": {
            "$ref": "#/components/responses/PermissionError"
          },
          "404": {
            "$ref": "#/components/responses/NotFoundError"
          },
          "429": {
            "$ref": "#/components/responses/RateLimitError"
          },
          "500": {
            "$ref": "#/components/responses/InternalError"
          }
        },
        "security": [
          {
            "BearerAuth": []
          }
        ],
        "summary": "Delete status",
        "tags": [
          "Workspace configuration"
        ],
        "x-required-scopes": [
          "statuses:write"
        ]
      },
      "get": {
        "description": "Get status. Results include only resources visible to the authenticated caller; collections use their documented stable order and bounds.",
        "operationId": "getStatusesStatusId",
        "parameters": [
          {
            "description": "The status identifier.",
            "in": "path",
            "name": "status_id",
            "required": true,
            "schema": {
              "minimum": 1,
              "type": "integer"
            }
          }
        ],
        "responses": {
          "200": {
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/GetStatusesStatusIdResult"
                }
              }
            },
            "description": "Get status response."
          },
          "401": {
            "$ref": "#/components/responses/AuthenticationError"
          },
          "403": {
            "$ref": "#/components/responses/PermissionError"
          },
          "404": {
            "$ref": "#/components/responses/NotFoundError"
          },
          "429": {
            "$ref": "#/components/responses/RateLimitError"
          },
          "500": {
            "$ref": "#/components/responses/InternalError"
          }
        },
        "security": [
          {
            "BearerAuth": []
          }
        ],
        "summary": "Get status",
        "tags": [
          "Workspace configuration"
        ],
        "x-required-scopes": [
          "statuses:read"
        ]
      },
      "patch": {
        "description": "Patch status. The operation uses JSON Merge Patch: omitted fields remain unchanged and documented nullable fields accept null. Unknown fields are rejected.",
        "operationId": "patchStatusesStatusId",
        "parameters": [
          {
            "description": "The status identifier.",
            "in": "path",
            "name": "status_id",
            "required": true,
            "schema": {
              "minimum": 1,
              "type": "integer"
            }
          }
        ],
        "requestBody": {
          "content": {
            "application/merge-patch+json": {
              "schema": {
                "$ref": "#/components/schemas/PatchStatusesStatusIdPayload"
              }
            }
          },
          "required": true
        },
        "responses": {
          "200": {
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/PatchStatusesStatusIdResult"
                }
              }
            },
            "description": "Patch status response."
          },
          "400": {
            "$ref": "#/components/responses/InvalidRequestError"
          },
          "401": {
            "$ref": "#/components/responses/AuthenticationError"
          },
          "403": {
            "$ref": "#/components/responses/PermissionError"
          },
          "404": {
            "$ref": "#/components/responses/NotFoundError"
          },
          "413": {
            "$ref": "#/components/responses/PayloadTooLargeError"
          },
          "415": {
            "$ref": "#/components/responses/UnsupportedMediaTypeError"
          },
          "429": {
            "$ref": "#/components/responses/RateLimitError"
          },
          "500": {
            "$ref": "#/components/responses/InternalError"
          }
        },
        "security": [
          {
            "BearerAuth": []
          }
        ],
        "summary": "Patch status",
        "tags": [
          "Workspace configuration"
        ],
        "x-required-scopes": [
          "statuses:write"
        ]
      }
    },
    "/test-cases/{test_case_id}/links": {
      "get": {
        "description": "List test case links. Results include only resources visible to the authenticated caller; collections use their documented stable order and bounds.",
        "operationId": "getTestCasesTestCaseIdLinks",
        "parameters": [
          {
            "description": "The test case identifier.",
            "in": "path",
            "name": "test_case_id",
            "required": true,
            "schema": {
              "minimum": 1,
              "type": "integer"
            }
          }
        ],
        "responses": {
          "200": {
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/GetTestCasesTestCaseIdLinksResult"
                }
              }
            },
            "description": "List test case links response."
          },
          "401": {
            "$ref": "#/components/responses/AuthenticationError"
          },
          "403": {
            "$ref": "#/components/responses/PermissionError"
          },
          "404": {
            "$ref": "#/components/responses/NotFoundError"
          },
          "429": {
            "$ref": "#/components/responses/RateLimitError"
          },
          "500": {
            "$ref": "#/components/responses/InternalError"
          }
        },
        "security": [
          {
            "BearerAuth": []
          }
        ],
        "summary": "List test case links",
        "tags": [
          "Test management"
        ],
        "x-required-scopes": [
          "tests:read"
        ]
      }
    },
    "/time/project-categories": {
      "get": {
        "description": "List time project categories. Results include only resources visible to the authenticated caller; collections use their documented stable order and bounds.",
        "operationId": "getTimeProjectCategories",
        "parameters": [],
        "responses": {
          "200": {
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/GetTimeProjectCategoriesResult"
                }
              }
            },
            "description": "List time project categories response."
          },
          "401": {
            "$ref": "#/components/responses/AuthenticationError"
          },
          "403": {
            "$ref": "#/components/responses/PermissionError"
          },
          "429": {
            "$ref": "#/components/responses/RateLimitError"
          },
          "500": {
            "$ref": "#/components/responses/InternalError"
          }
        },
        "security": [
          {
            "BearerAuth": []
          }
        ],
        "summary": "List time project categories",
        "tags": [
          "Time tracking"
        ],
        "x-required-scopes": [
          "time:read"
        ]
      },
      "post": {
        "description": "Create time project category. The server validates resource ownership and command preconditions before persisting changes. Unknown JSON fields are rejected when the operation accepts a body.",
        "operationId": "postTimeProjectCategories",
        "parameters": [],
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/PostTimeProjectCategoriesPayload"
              }
            }
          },
          "required": true
        },
        "responses": {
          "201": {
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/PostTimeProjectCategoriesResult"
                }
              }
            },
            "description": "Create time project category response."
          },
          "400": {
            "$ref": "#/components/responses/InvalidRequestError"
          },
          "401": {
            "$ref": "#/components/responses/AuthenticationError"
          },
          "403": {
            "$ref": "#/components/responses/PermissionError"
          },
          "413": {
            "$ref": "#/components/responses/PayloadTooLargeError"
          },
          "415": {
            "$ref": "#/components/responses/UnsupportedMediaTypeError"
          },
          "429": {
            "$ref": "#/components/responses/RateLimitError"
          },
          "500": {
            "$ref": "#/components/responses/InternalError"
          }
        },
        "security": [
          {
            "BearerAuth": []
          }
        ],
        "summary": "Create time project category",
        "tags": [
          "Time tracking"
        ],
        "x-required-scopes": [
          "time:write"
        ]
      }
    },
    "/time/project-categories/order": {
      "put": {
        "description": "Reorder time project categories. The server validates resource ownership and command preconditions before persisting changes. Unknown JSON fields are rejected when the operation accepts a body.",
        "operationId": "putTimeProjectCategoriesOrder",
        "parameters": [],
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/PutTimeProjectCategoriesOrderPayload"
              }
            }
          },
          "required": true
        },
        "responses": {
          "200": {
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/PutTimeProjectCategoriesOrderResult"
                }
              }
            },
            "description": "Reorder time project categories response."
          },
          "400": {
            "$ref": "#/components/responses/InvalidRequestError"
          },
          "401": {
            "$ref": "#/components/responses/AuthenticationError"
          },
          "403": {
            "$ref": "#/components/responses/PermissionError"
          },
          "413": {
            "$ref": "#/components/responses/PayloadTooLargeError"
          },
          "415": {
            "$ref": "#/components/responses/UnsupportedMediaTypeError"
          },
          "429": {
            "$ref": "#/components/responses/RateLimitError"
          },
          "500": {
            "$ref": "#/components/responses/InternalError"
          }
        },
        "security": [
          {
            "BearerAuth": []
          }
        ],
        "summary": "Reorder time project categories",
        "tags": [
          "Time tracking"
        ],
        "x-required-scopes": [
          "time:write"
        ]
      }
    },
    "/time/project-categories/{category_id}": {
      "delete": {
        "description": "Delete time project category. The server verifies resource ownership and deletion preconditions before removing the resource.",
        "operationId": "deleteTimeProjectCategoriesCategoryId",
        "parameters": [
          {
            "description": "The category identifier.",
            "in": "path",
            "name": "category_id",
            "required": true,
            "schema": {
              "minimum": 1,
              "type": "integer"
            }
          }
        ],
        "responses": {
          "204": {
            "description": "Request completed successfully with no response body."
          },
          "401": {
            "$ref": "#/components/responses/AuthenticationError"
          },
          "403": {
            "$ref": "#/components/responses/PermissionError"
          },
          "404": {
            "$ref": "#/components/responses/NotFoundError"
          },
          "429": {
            "$ref": "#/components/responses/RateLimitError"
          },
          "500": {
            "$ref": "#/components/responses/InternalError"
          }
        },
        "security": [
          {
            "BearerAuth": []
          }
        ],
        "summary": "Delete time project category",
        "tags": [
          "Time tracking"
        ],
        "x-required-scopes": [
          "time:write"
        ]
      },
      "get": {
        "description": "Get time project category. Results include only resources visible to the authenticated caller; collections use their documented stable order and bounds.",
        "operationId": "getTimeProjectCategoriesCategoryId",
        "parameters": [
          {
            "description": "The category identifier.",
            "in": "path",
            "name": "category_id",
            "required": true,
            "schema": {
              "minimum": 1,
              "type": "integer"
            }
          }
        ],
        "responses": {
          "200": {
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/GetTimeProjectCategoriesCategoryIdResult"
                }
              }
            },
            "description": "Get time project category response."
          },
          "401": {
            "$ref": "#/components/responses/AuthenticationError"
          },
          "403": {
            "$ref": "#/components/responses/PermissionError"
          },
          "404": {
            "$ref": "#/components/responses/NotFoundError"
          },
          "429": {
            "$ref": "#/components/responses/RateLimitError"
          },
          "500": {
            "$ref": "#/components/responses/InternalError"
          }
        },
        "security": [
          {
            "BearerAuth": []
          }
        ],
        "summary": "Get time project category",
        "tags": [
          "Time tracking"
        ],
        "x-required-scopes": [
          "time:read"
        ]
      },
      "patch": {
        "description": "Patch time project category. The operation uses JSON Merge Patch: omitted fields remain unchanged and documented nullable fields accept null. Unknown fields are rejected.",
        "operationId": "patchTimeProjectCategoriesCategoryId",
        "parameters": [
          {
            "description": "The category identifier.",
            "in": "path",
            "name": "category_id",
            "required": true,
            "schema": {
              "minimum": 1,
              "type": "integer"
            }
          }
        ],
        "requestBody": {
          "content": {
            "application/merge-patch+json": {
              "schema": {
                "$ref": "#/components/schemas/PatchTimeProjectCategoriesCategoryIdPayload"
              }
            }
          },
          "required": true
        },
        "responses": {
          "200": {
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/PatchTimeProjectCategoriesCategoryIdResult"
                }
              }
            },
            "description": "Patch time project category response."
          },
          "400": {
            "$ref": "#/components/responses/InvalidRequestError"
          },
          "401": {
            "$ref": "#/components/responses/AuthenticationError"
          },
          "403": {
            "$ref": "#/components/responses/PermissionError"
          },
          "404": {
            "$ref": "#/components/responses/NotFoundError"
          },
          "413": {
            "$ref": "#/components/responses/PayloadTooLargeError"
          },
          "415": {
            "$ref": "#/components/responses/UnsupportedMediaTypeError"
          },
          "429": {
            "$ref": "#/components/responses/RateLimitError"
          },
          "500": {
            "$ref": "#/components/responses/InternalError"
          }
        },
        "security": [
          {
            "BearerAuth": []
          }
        ],
        "summary": "Patch time project category",
        "tags": [
          "Time tracking"
        ],
        "x-required-scopes": [
          "time:write"
        ]
      }
    },
    "/time/projects": {
      "get": {
        "description": "List time projects. Results include only resources visible to the authenticated caller; collections use their documented stable order and bounds.",
        "operationId": "getTimeProjects",
        "parameters": [
          {
            "description": "Restricts time projects to one status.",
            "in": "query",
            "name": "status",
            "required": false,
            "schema": {
              "type": "string"
            }
          }
        ],
        "responses": {
          "200": {
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/GetTimeProjectsResult"
                }
              }
            },
            "description": "List time projects response."
          },
          "401": {
            "$ref": "#/components/responses/AuthenticationError"
          },
          "403": {
            "$ref": "#/components/responses/PermissionError"
          },
          "429": {
            "$ref": "#/components/responses/RateLimitError"
          },
          "500": {
            "$ref": "#/components/responses/InternalError"
          }
        },
        "security": [
          {
            "BearerAuth": []
          }
        ],
        "summary": "List time projects",
        "tags": [
          "Time tracking"
        ],
        "x-required-scopes": [
          "time:read"
        ]
      },
      "post": {
        "description": "Create time project. The server validates resource ownership and command preconditions before persisting changes. Unknown JSON fields are rejected when the operation accepts a body.",
        "operationId": "postTimeProjects",
        "parameters": [],
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/PostTimeProjectsPayload"
              }
            }
          },
          "required": true
        },
        "responses": {
          "201": {
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/PostTimeProjectsResult"
                }
              }
            },
            "description": "Create time project response."
          },
          "400": {
            "$ref": "#/components/responses/InvalidRequestError"
          },
          "401": {
            "$ref": "#/components/responses/AuthenticationError"
          },
          "403": {
            "$ref": "#/components/responses/PermissionError"
          },
          "413": {
            "$ref": "#/components/responses/PayloadTooLargeError"
          },
          "415": {
            "$ref": "#/components/responses/UnsupportedMediaTypeError"
          },
          "429": {
            "$ref": "#/components/responses/RateLimitError"
          },
          "500": {
            "$ref": "#/components/responses/InternalError"
          }
        },
        "security": [
          {
            "BearerAuth": []
          }
        ],
        "summary": "Create time project",
        "tags": [
          "Time tracking"
        ],
        "x-required-scopes": [
          "time:write"
        ]
      }
    },
    "/time/projects/{project_id}": {
      "delete": {
        "description": "Delete time project. The server verifies resource ownership and deletion preconditions before removing the resource.",
        "operationId": "deleteTimeProjectsProjectId",
        "parameters": [
          {
            "description": "The project identifier.",
            "in": "path",
            "name": "project_id",
            "required": true,
            "schema": {
              "minimum": 1,
              "type": "integer"
            }
          }
        ],
        "responses": {
          "204": {
            "description": "Request completed successfully with no response body."
          },
          "401": {
            "$ref": "#/components/responses/AuthenticationError"
          },
          "403": {
            "$ref": "#/components/responses/PermissionError"
          },
          "404": {
            "$ref": "#/components/responses/NotFoundError"
          },
          "429": {
            "$ref": "#/components/responses/RateLimitError"
          },
          "500": {
            "$ref": "#/components/responses/InternalError"
          }
        },
        "security": [
          {
            "BearerAuth": []
          }
        ],
        "summary": "Delete time project",
        "tags": [
          "Time tracking"
        ],
        "x-required-scopes": [
          "time:write"
        ]
      },
      "get": {
        "description": "Get time project. Results include only resources visible to the authenticated caller; collections use their documented stable order and bounds.",
        "operationId": "getTimeProjectsProjectId",
        "parameters": [
          {
            "description": "The project identifier.",
            "in": "path",
            "name": "project_id",
            "required": true,
            "schema": {
              "minimum": 1,
              "type": "integer"
            }
          }
        ],
        "responses": {
          "200": {
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/GetTimeProjectsProjectIdResult"
                }
              }
            },
            "description": "Get time project response."
          },
          "401": {
            "$ref": "#/components/responses/AuthenticationError"
          },
          "403": {
            "$ref": "#/components/responses/PermissionError"
          },
          "404": {
            "$ref": "#/components/responses/NotFoundError"
          },
          "429": {
            "$ref": "#/components/responses/RateLimitError"
          },
          "500": {
            "$ref": "#/components/responses/InternalError"
          }
        },
        "security": [
          {
            "BearerAuth": []
          }
        ],
        "summary": "Get time project",
        "tags": [
          "Time tracking"
        ],
        "x-required-scopes": [
          "time:read"
        ]
      },
      "patch": {
        "description": "Patch time project. The operation uses JSON Merge Patch: omitted fields remain unchanged and documented nullable fields accept null. Unknown fields are rejected.",
        "operationId": "patchTimeProjectsProjectId",
        "parameters": [
          {
            "description": "The project identifier.",
            "in": "path",
            "name": "project_id",
            "required": true,
            "schema": {
              "minimum": 1,
              "type": "integer"
            }
          }
        ],
        "requestBody": {
          "content": {
            "application/merge-patch+json": {
              "schema": {
                "$ref": "#/components/schemas/PatchTimeProjectsProjectIdPayload"
              }
            }
          },
          "required": true
        },
        "responses": {
          "200": {
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/PatchTimeProjectsProjectIdResult"
                }
              }
            },
            "description": "Patch time project response."
          },
          "400": {
            "$ref": "#/components/responses/InvalidRequestError"
          },
          "401": {
            "$ref": "#/components/responses/AuthenticationError"
          },
          "403": {
            "$ref": "#/components/responses/PermissionError"
          },
          "404": {
            "$ref": "#/components/responses/NotFoundError"
          },
          "413": {
            "$ref": "#/components/responses/PayloadTooLargeError"
          },
          "415": {
            "$ref": "#/components/responses/UnsupportedMediaTypeError"
          },
          "429": {
            "$ref": "#/components/responses/RateLimitError"
          },
          "500": {
            "$ref": "#/components/responses/InternalError"
          }
        },
        "security": [
          {
            "BearerAuth": []
          }
        ],
        "summary": "Patch time project",
        "tags": [
          "Time tracking"
        ],
        "x-required-scopes": [
          "time:write"
        ]
      }
    },
    "/time/projects/{project_id}/managers": {
      "get": {
        "description": "List time project managers. Results include only resources visible to the authenticated caller; collections use their documented stable order and bounds.",
        "operationId": "getTimeProjectsProjectIdManagers",
        "parameters": [
          {
            "description": "The project identifier.",
            "in": "path",
            "name": "project_id",
            "required": true,
            "schema": {
              "minimum": 1,
              "type": "integer"
            }
          }
        ],
        "responses": {
          "200": {
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/GetTimeProjectsProjectIdManagersResult"
                }
              }
            },
            "description": "List time project managers response."
          },
          "401": {
            "$ref": "#/components/responses/AuthenticationError"
          },
          "403": {
            "$ref": "#/components/responses/PermissionError"
          },
          "404": {
            "$ref": "#/components/responses/NotFoundError"
          },
          "429": {
            "$ref": "#/components/responses/RateLimitError"
          },
          "500": {
            "$ref": "#/components/responses/InternalError"
          }
        },
        "security": [
          {
            "BearerAuth": []
          }
        ],
        "summary": "List time project managers",
        "tags": [
          "Time tracking"
        ],
        "x-required-scopes": [
          "time:read"
        ]
      },
      "post": {
        "description": "Add time project manager. The server validates resource ownership and command preconditions before persisting changes. Unknown JSON fields are rejected when the operation accepts a body.",
        "operationId": "postTimeProjectsProjectIdManagers",
        "parameters": [
          {
            "description": "The project identifier.",
            "in": "path",
            "name": "project_id",
            "required": true,
            "schema": {
              "minimum": 1,
              "type": "integer"
            }
          }
        ],
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/PostTimeProjectsProjectIdManagersPayload"
              }
            }
          },
          "required": true
        },
        "responses": {
          "201": {
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/PostTimeProjectsProjectIdManagersResult"
                }
              }
            },
            "description": "Add time project manager response."
          },
          "400": {
            "$ref": "#/components/responses/InvalidRequestError"
          },
          "401": {
            "$ref": "#/components/responses/AuthenticationError"
          },
          "403": {
            "$ref": "#/components/responses/PermissionError"
          },
          "404": {
            "$ref": "#/components/responses/NotFoundError"
          },
          "413": {
            "$ref": "#/components/responses/PayloadTooLargeError"
          },
          "415": {
            "$ref": "#/components/responses/UnsupportedMediaTypeError"
          },
          "429": {
            "$ref": "#/components/responses/RateLimitError"
          },
          "500": {
            "$ref": "#/components/responses/InternalError"
          }
        },
        "security": [
          {
            "BearerAuth": []
          }
        ],
        "summary": "Add time project manager",
        "tags": [
          "Time tracking"
        ],
        "x-required-scopes": [
          "time:write"
        ]
      }
    },
    "/time/projects/{project_id}/managers/{assignment_id}": {
      "delete": {
        "description": "Remove time project manager. The server verifies resource ownership and deletion preconditions before removing the resource.",
        "operationId": "deleteTimeProjectsProjectIdManagersAssignmentId",
        "parameters": [
          {
            "description": "The project identifier.",
            "in": "path",
            "name": "project_id",
            "required": true,
            "schema": {
              "minimum": 1,
              "type": "integer"
            }
          },
          {
            "description": "The assignment identifier.",
            "in": "path",
            "name": "assignment_id",
            "required": true,
            "schema": {
              "minimum": 1,
              "type": "integer"
            }
          }
        ],
        "responses": {
          "204": {
            "description": "Request completed successfully with no response body."
          },
          "401": {
            "$ref": "#/components/responses/AuthenticationError"
          },
          "403": {
            "$ref": "#/components/responses/PermissionError"
          },
          "404": {
            "$ref": "#/components/responses/NotFoundError"
          },
          "429": {
            "$ref": "#/components/responses/RateLimitError"
          },
          "500": {
            "$ref": "#/components/responses/InternalError"
          }
        },
        "security": [
          {
            "BearerAuth": []
          }
        ],
        "summary": "Remove time project manager",
        "tags": [
          "Time tracking"
        ],
        "x-required-scopes": [
          "time:write"
        ]
      }
    },
    "/time/projects/{project_id}/members": {
      "get": {
        "description": "List time project members. Results include only resources visible to the authenticated caller; collections use their documented stable order and bounds.",
        "operationId": "getTimeProjectsProjectIdMembers",
        "parameters": [
          {
            "description": "The project identifier.",
            "in": "path",
            "name": "project_id",
            "required": true,
            "schema": {
              "minimum": 1,
              "type": "integer"
            }
          }
        ],
        "responses": {
          "200": {
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/GetTimeProjectsProjectIdMembersResult"
                }
              }
            },
            "description": "List time project members response."
          },
          "401": {
            "$ref": "#/components/responses/AuthenticationError"
          },
          "403": {
            "$ref": "#/components/responses/PermissionError"
          },
          "404": {
            "$ref": "#/components/responses/NotFoundError"
          },
          "429": {
            "$ref": "#/components/responses/RateLimitError"
          },
          "500": {
            "$ref": "#/components/responses/InternalError"
          }
        },
        "security": [
          {
            "BearerAuth": []
          }
        ],
        "summary": "List time project members",
        "tags": [
          "Time tracking"
        ],
        "x-required-scopes": [
          "time:read"
        ]
      },
      "post": {
        "description": "Add time project member. The server validates resource ownership and command preconditions before persisting changes. Unknown JSON fields are rejected when the operation accepts a body.",
        "operationId": "postTimeProjectsProjectIdMembers",
        "parameters": [
          {
            "description": "The project identifier.",
            "in": "path",
            "name": "project_id",
            "required": true,
            "schema": {
              "minimum": 1,
              "type": "integer"
            }
          }
        ],
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/PostTimeProjectsProjectIdMembersPayload"
              }
            }
          },
          "required": true
        },
        "responses": {
          "201": {
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/PostTimeProjectsProjectIdMembersResult"
                }
              }
            },
            "description": "Add time project member response."
          },
          "400": {
            "$ref": "#/components/responses/InvalidRequestError"
          },
          "401": {
            "$ref": "#/components/responses/AuthenticationError"
          },
          "403": {
            "$ref": "#/components/responses/PermissionError"
          },
          "404": {
            "$ref": "#/components/responses/NotFoundError"
          },
          "413": {
            "$ref": "#/components/responses/PayloadTooLargeError"
          },
          "415": {
            "$ref": "#/components/responses/UnsupportedMediaTypeError"
          },
          "429": {
            "$ref": "#/components/responses/RateLimitError"
          },
          "500": {
            "$ref": "#/components/responses/InternalError"
          }
        },
        "security": [
          {
            "BearerAuth": []
          }
        ],
        "summary": "Add time project member",
        "tags": [
          "Time tracking"
        ],
        "x-required-scopes": [
          "time:write"
        ]
      }
    },
    "/time/projects/{project_id}/members/{assignment_id}": {
      "delete": {
        "description": "Remove time project member. The server verifies resource ownership and deletion preconditions before removing the resource.",
        "operationId": "deleteTimeProjectsProjectIdMembersAssignmentId",
        "parameters": [
          {
            "description": "The project identifier.",
            "in": "path",
            "name": "project_id",
            "required": true,
            "schema": {
              "minimum": 1,
              "type": "integer"
            }
          },
          {
            "description": "The assignment identifier.",
            "in": "path",
            "name": "assignment_id",
            "required": true,
            "schema": {
              "minimum": 1,
              "type": "integer"
            }
          }
        ],
        "responses": {
          "204": {
            "description": "Request completed successfully with no response body."
          },
          "401": {
            "$ref": "#/components/responses/AuthenticationError"
          },
          "403": {
            "$ref": "#/components/responses/PermissionError"
          },
          "404": {
            "$ref": "#/components/responses/NotFoundError"
          },
          "429": {
            "$ref": "#/components/responses/RateLimitError"
          },
          "500": {
            "$ref": "#/components/responses/InternalError"
          }
        },
        "security": [
          {
            "BearerAuth": []
          }
        ],
        "summary": "Remove time project member",
        "tags": [
          "Time tracking"
        ],
        "x-required-scopes": [
          "time:write"
        ]
      }
    },
    "/time/projects/{project_id}/worklogs": {
      "get": {
        "description": "List project worklogs. Results include only resources visible to the authenticated caller; collections use their documented stable order and bounds.",
        "operationId": "getTimeProjectsProjectIdWorklogs",
        "parameters": [
          {
            "description": "The project identifier.",
            "in": "path",
            "name": "project_id",
            "required": true,
            "schema": {
              "minimum": 1,
              "type": "integer"
            }
          },
          {
            "description": "One-based page number.",
            "in": "query",
            "name": "page",
            "required": false,
            "schema": {
              "default": 1,
              "minimum": 1,
              "type": "integer"
            }
          },
          {
            "description": "Maximum number of resources to return.",
            "in": "query",
            "name": "page_size",
            "required": false,
            "schema": {
              "default": 50,
              "maximum": 100,
              "minimum": 1,
              "type": "integer"
            }
          },
          {
            "description": "Includes worklogs on or after this civil date.",
            "in": "query",
            "name": "from",
            "required": false,
            "schema": {
              "format": "date",
              "type": "string"
            }
          },
          {
            "description": "Includes worklogs on or before this civil date.",
            "in": "query",
            "name": "to",
            "required": false,
            "schema": {
              "format": "date",
              "type": "string"
            }
          }
        ],
        "responses": {
          "200": {
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/GetTimeProjectsProjectIdWorklogsResult"
                }
              }
            },
            "description": "List project worklogs response."
          },
          "400": {
            "$ref": "#/components/responses/InvalidRequestError"
          },
          "401": {
            "$ref": "#/components/responses/AuthenticationError"
          },
          "403": {
            "$ref": "#/components/responses/PermissionError"
          },
          "404": {
            "$ref": "#/components/responses/NotFoundError"
          },
          "429": {
            "$ref": "#/components/responses/RateLimitError"
          },
          "500": {
            "$ref": "#/components/responses/InternalError"
          }
        },
        "security": [
          {
            "BearerAuth": []
          }
        ],
        "summary": "List project worklogs",
        "tags": [
          "Time tracking"
        ],
        "x-required-scopes": [
          "time:read"
        ]
      }
    },
    "/time/timers": {
      "post": {
        "description": "Start timer. The server validates resource ownership and command preconditions before persisting changes. Unknown JSON fields are rejected when the operation accepts a body.",
        "operationId": "postTimeTimers",
        "parameters": [],
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/PostTimeTimersPayload"
              }
            }
          },
          "required": true
        },
        "responses": {
          "201": {
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/PostTimeTimersResult"
                }
              }
            },
            "description": "Start timer response."
          },
          "400": {
            "$ref": "#/components/responses/InvalidRequestError"
          },
          "401": {
            "$ref": "#/components/responses/AuthenticationError"
          },
          "403": {
            "$ref": "#/components/responses/PermissionError"
          },
          "413": {
            "$ref": "#/components/responses/PayloadTooLargeError"
          },
          "415": {
            "$ref": "#/components/responses/UnsupportedMediaTypeError"
          },
          "429": {
            "$ref": "#/components/responses/RateLimitError"
          },
          "500": {
            "$ref": "#/components/responses/InternalError"
          }
        },
        "security": [
          {
            "BearerAuth": []
          }
        ],
        "summary": "Start timer",
        "tags": [
          "Time tracking"
        ],
        "x-required-scopes": [
          "time:write"
        ]
      }
    },
    "/time/timers/active": {
      "get": {
        "description": "Get active timer. Results include only resources visible to the authenticated caller; collections use their documented stable order and bounds.",
        "operationId": "getTimeTimersActive",
        "parameters": [],
        "responses": {
          "200": {
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/GetTimeTimersActiveResult"
                }
              }
            },
            "description": "Get active timer response."
          },
          "401": {
            "$ref": "#/components/responses/AuthenticationError"
          },
          "403": {
            "$ref": "#/components/responses/PermissionError"
          },
          "429": {
            "$ref": "#/components/responses/RateLimitError"
          },
          "500": {
            "$ref": "#/components/responses/InternalError"
          }
        },
        "security": [
          {
            "BearerAuth": []
          }
        ],
        "summary": "Get active timer",
        "tags": [
          "Time tracking"
        ],
        "x-required-scopes": [
          "time:read"
        ]
      }
    },
    "/time/timers/active/stop": {
      "post": {
        "description": "Stop timer. The server validates resource ownership and command preconditions before persisting changes. Unknown JSON fields are rejected when the operation accepts a body.",
        "operationId": "postTimeTimersActiveStop",
        "parameters": [],
        "responses": {
          "200": {
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/PostTimeTimersActiveStopResult"
                }
              }
            },
            "description": "Stop timer response."
          },
          "401": {
            "$ref": "#/components/responses/AuthenticationError"
          },
          "403": {
            "$ref": "#/components/responses/PermissionError"
          },
          "404": {
            "$ref": "#/components/responses/NotFoundError"
          },
          "429": {
            "$ref": "#/components/responses/RateLimitError"
          },
          "500": {
            "$ref": "#/components/responses/InternalError"
          }
        },
        "security": [
          {
            "BearerAuth": []
          }
        ],
        "summary": "Stop timer",
        "tags": [
          "Time tracking"
        ],
        "x-required-scopes": [
          "time:write"
        ]
      }
    },
    "/time/worklogs": {
      "get": {
        "description": "List worklogs. Results include only resources visible to the authenticated caller; collections use their documented stable order and bounds.",
        "operationId": "getTimeWorklogs",
        "parameters": [
          {
            "description": "One-based page number.",
            "in": "query",
            "name": "page",
            "required": false,
            "schema": {
              "default": 1,
              "minimum": 1,
              "type": "integer"
            }
          },
          {
            "description": "Maximum number of resources to return.",
            "in": "query",
            "name": "page_size",
            "required": false,
            "schema": {
              "default": 50,
              "maximum": 100,
              "minimum": 1,
              "type": "integer"
            }
          },
          {
            "description": "Restricts worklogs to one time project.",
            "in": "query",
            "name": "project_id",
            "required": false,
            "schema": {
              "minimum": 1,
              "type": "integer"
            }
          },
          {
            "description": "Includes worklogs on or after this civil date.",
            "in": "query",
            "name": "from",
            "required": false,
            "schema": {
              "format": "date",
              "type": "string"
            }
          },
          {
            "description": "Includes worklogs on or before this civil date.",
            "in": "query",
            "name": "to",
            "required": false,
            "schema": {
              "format": "date",
              "type": "string"
            }
          }
        ],
        "responses": {
          "200": {
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/GetTimeWorklogsResult"
                }
              }
            },
            "description": "List worklogs response."
          },
          "400": {
            "$ref": "#/components/responses/InvalidRequestError"
          },
          "401": {
            "$ref": "#/components/responses/AuthenticationError"
          },
          "403": {
            "$ref": "#/components/responses/PermissionError"
          },
          "429": {
            "$ref": "#/components/responses/RateLimitError"
          },
          "500": {
            "$ref": "#/components/responses/InternalError"
          }
        },
        "security": [
          {
            "BearerAuth": []
          }
        ],
        "summary": "List worklogs",
        "tags": [
          "Time tracking"
        ],
        "x-required-scopes": [
          "time:read"
        ]
      },
      "post": {
        "description": "Create worklog. The server validates resource ownership and command preconditions before persisting changes. Unknown JSON fields are rejected when the operation accepts a body.",
        "operationId": "postTimeWorklogs",
        "parameters": [],
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/PostTimeWorklogsPayload"
              }
            }
          },
          "required": true
        },
        "responses": {
          "201": {
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/PostTimeWorklogsResult"
                }
              }
            },
            "description": "Create worklog response."
          },
          "400": {
            "$ref": "#/components/responses/InvalidRequestError"
          },
          "401": {
            "$ref": "#/components/responses/AuthenticationError"
          },
          "403": {
            "$ref": "#/components/responses/PermissionError"
          },
          "404": {
            "$ref": "#/components/responses/NotFoundError"
          },
          "413": {
            "$ref": "#/components/responses/PayloadTooLargeError"
          },
          "415": {
            "$ref": "#/components/responses/UnsupportedMediaTypeError"
          },
          "429": {
            "$ref": "#/components/responses/RateLimitError"
          },
          "500": {
            "$ref": "#/components/responses/InternalError"
          }
        },
        "security": [
          {
            "BearerAuth": []
          }
        ],
        "summary": "Create worklog",
        "tags": [
          "Time tracking"
        ],
        "x-required-scopes": [
          "time:write"
        ]
      }
    },
    "/time/worklogs/{worklog_id}": {
      "delete": {
        "description": "Delete worklog. The server verifies resource ownership and deletion preconditions before removing the resource.",
        "operationId": "deleteTimeWorklogsWorklogId",
        "parameters": [
          {
            "description": "The worklog identifier.",
            "in": "path",
            "name": "worklog_id",
            "required": true,
            "schema": {
              "minimum": 1,
              "type": "integer"
            }
          }
        ],
        "responses": {
          "204": {
            "description": "Request completed successfully with no response body."
          },
          "401": {
            "$ref": "#/components/responses/AuthenticationError"
          },
          "403": {
            "$ref": "#/components/responses/PermissionError"
          },
          "404": {
            "$ref": "#/components/responses/NotFoundError"
          },
          "429": {
            "$ref": "#/components/responses/RateLimitError"
          },
          "500": {
            "$ref": "#/components/responses/InternalError"
          }
        },
        "security": [
          {
            "BearerAuth": []
          }
        ],
        "summary": "Delete worklog",
        "tags": [
          "Time tracking"
        ],
        "x-required-scopes": [
          "time:delete"
        ]
      },
      "get": {
        "description": "Get worklog. Results include only resources visible to the authenticated caller; collections use their documented stable order and bounds.",
        "operationId": "getTimeWorklogsWorklogId",
        "parameters": [
          {
            "description": "The worklog identifier.",
            "in": "path",
            "name": "worklog_id",
            "required": true,
            "schema": {
              "minimum": 1,
              "type": "integer"
            }
          }
        ],
        "responses": {
          "200": {
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/GetTimeWorklogsWorklogIdResult"
                }
              }
            },
            "description": "Get worklog response."
          },
          "401": {
            "$ref": "#/components/responses/AuthenticationError"
          },
          "403": {
            "$ref": "#/components/responses/PermissionError"
          },
          "404": {
            "$ref": "#/components/responses/NotFoundError"
          },
          "429": {
            "$ref": "#/components/responses/RateLimitError"
          },
          "500": {
            "$ref": "#/components/responses/InternalError"
          }
        },
        "security": [
          {
            "BearerAuth": []
          }
        ],
        "summary": "Get worklog",
        "tags": [
          "Time tracking"
        ],
        "x-required-scopes": [
          "time:read"
        ]
      },
      "patch": {
        "description": "Update worklog. The operation uses JSON Merge Patch: omitted fields remain unchanged and documented nullable fields accept null. Unknown fields are rejected.",
        "operationId": "patchTimeWorklogsWorklogId",
        "parameters": [
          {
            "description": "The worklog identifier.",
            "in": "path",
            "name": "worklog_id",
            "required": true,
            "schema": {
              "minimum": 1,
              "type": "integer"
            }
          }
        ],
        "requestBody": {
          "content": {
            "application/merge-patch+json": {
              "schema": {
                "$ref": "#/components/schemas/PatchTimeWorklogsWorklogIdPayload"
              }
            }
          },
          "required": true
        },
        "responses": {
          "200": {
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/PatchTimeWorklogsWorklogIdResult"
                }
              }
            },
            "description": "Update worklog response."
          },
          "400": {
            "$ref": "#/components/responses/InvalidRequestError"
          },
          "401": {
            "$ref": "#/components/responses/AuthenticationError"
          },
          "403": {
            "$ref": "#/components/responses/PermissionError"
          },
          "404": {
            "$ref": "#/components/responses/NotFoundError"
          },
          "413": {
            "$ref": "#/components/responses/PayloadTooLargeError"
          },
          "415": {
            "$ref": "#/components/responses/UnsupportedMediaTypeError"
          },
          "429": {
            "$ref": "#/components/responses/RateLimitError"
          },
          "500": {
            "$ref": "#/components/responses/InternalError"
          }
        },
        "security": [
          {
            "BearerAuth": []
          }
        ],
        "summary": "Update worklog",
        "tags": [
          "Time tracking"
        ],
        "x-required-scopes": [
          "time:write"
        ]
      }
    },
    "/transitions/{transition_id}/governance": {
      "get": {
        "description": "Get transition governance. Results include only resources visible to the authenticated caller; collections use their documented stable order and bounds.",
        "operationId": "getTransitionsTransitionIdGovernance",
        "parameters": [
          {
            "description": "The transition identifier.",
            "in": "path",
            "name": "transition_id",
            "required": true,
            "schema": {
              "minimum": 1,
              "type": "integer"
            }
          }
        ],
        "responses": {
          "200": {
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/GetTransitionsTransitionIdGovernanceResult"
                }
              }
            },
            "description": "Get transition governance response."
          },
          "401": {
            "$ref": "#/components/responses/AuthenticationError"
          },
          "403": {
            "$ref": "#/components/responses/PermissionError"
          },
          "404": {
            "$ref": "#/components/responses/NotFoundError"
          },
          "429": {
            "$ref": "#/components/responses/RateLimitError"
          },
          "500": {
            "$ref": "#/components/responses/InternalError"
          }
        },
        "security": [
          {
            "BearerAuth": []
          }
        ],
        "summary": "Get transition governance",
        "tags": [
          "Governance"
        ],
        "x-required-scopes": [
          "workflows:read"
        ]
      }
    },
    "/users": {
      "get": {
        "description": "List users. Results include only resources visible to the authenticated caller; collections use their documented stable order and bounds.",
        "operationId": "getUsers",
        "parameters": [
          {
            "description": "One-based page number.",
            "in": "query",
            "name": "page",
            "required": false,
            "schema": {
              "default": 1,
              "minimum": 1,
              "type": "integer"
            }
          },
          {
            "description": "Maximum number of resources to return.",
            "in": "query",
            "name": "page_size",
            "required": false,
            "schema": {
              "default": 50,
              "maximum": 100,
              "minimum": 1,
              "type": "integer"
            }
          },
          {
            "description": "Sort expression. Prefix a field with - for descending order.",
            "in": "query",
            "name": "sort",
            "required": false,
            "schema": {
              "enum": [
                "username",
                "-username",
                "full_name",
                "-full_name",
                "created_at",
                "-created_at"
              ],
              "type": "string"
            }
          }
        ],
        "responses": {
          "200": {
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/GetUsersResult"
                }
              }
            },
            "description": "List users response."
          },
          "401": {
            "$ref": "#/components/responses/AuthenticationError"
          },
          "403": {
            "$ref": "#/components/responses/PermissionError"
          },
          "429": {
            "$ref": "#/components/responses/RateLimitError"
          },
          "500": {
            "$ref": "#/components/responses/InternalError"
          }
        },
        "security": [
          {
            "BearerAuth": []
          }
        ],
        "summary": "List users",
        "tags": [
          "People"
        ],
        "x-required-scopes": [
          "users:read"
        ]
      }
    },
    "/users/me": {
      "get": {
        "description": "Get the authenticated user. Results include only resources visible to the authenticated caller; collections use their documented stable order and bounds.",
        "operationId": "getUsersMe",
        "parameters": [],
        "responses": {
          "200": {
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/GetUsersMeResult"
                }
              }
            },
            "description": "Get the authenticated user response."
          },
          "401": {
            "$ref": "#/components/responses/AuthenticationError"
          },
          "403": {
            "$ref": "#/components/responses/PermissionError"
          },
          "429": {
            "$ref": "#/components/responses/RateLimitError"
          },
          "500": {
            "$ref": "#/components/responses/InternalError"
          }
        },
        "security": [
          {
            "BearerAuth": []
          }
        ],
        "summary": "Get the authenticated user",
        "tags": [
          "People"
        ],
        "x-required-scopes": [
          "users:read"
        ]
      }
    },
    "/users/me/preferences": {
      "get": {
        "description": "Get current user preferences. Results include only resources visible to the authenticated caller; collections use their documented stable order and bounds.",
        "operationId": "getUsersMePreferences",
        "parameters": [],
        "responses": {
          "200": {
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/GetUsersMePreferencesResult"
                }
              }
            },
            "description": "Get current user preferences response."
          },
          "401": {
            "$ref": "#/components/responses/AuthenticationError"
          },
          "403": {
            "$ref": "#/components/responses/PermissionError"
          },
          "429": {
            "$ref": "#/components/responses/RateLimitError"
          },
          "500": {
            "$ref": "#/components/responses/InternalError"
          }
        },
        "security": [
          {
            "BearerAuth": []
          }
        ],
        "summary": "Get current user preferences",
        "tags": [
          "People"
        ],
        "x-required-scopes": [
          "user-preferences:read"
        ]
      },
      "patch": {
        "description": "Update current user preferences. The operation uses JSON Merge Patch: omitted fields remain unchanged and documented nullable fields accept null. Unknown fields are rejected.",
        "operationId": "patchUsersMePreferences",
        "parameters": [],
        "requestBody": {
          "content": {
            "application/merge-patch+json": {
              "schema": {
                "$ref": "#/components/schemas/PatchUsersMePreferencesPayload"
              }
            }
          },
          "required": true
        },
        "responses": {
          "200": {
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/PatchUsersMePreferencesResult"
                }
              }
            },
            "description": "Update current user preferences response."
          },
          "400": {
            "$ref": "#/components/responses/InvalidRequestError"
          },
          "401": {
            "$ref": "#/components/responses/AuthenticationError"
          },
          "403": {
            "$ref": "#/components/responses/PermissionError"
          },
          "404": {
            "$ref": "#/components/responses/NotFoundError"
          },
          "413": {
            "$ref": "#/components/responses/PayloadTooLargeError"
          },
          "415": {
            "$ref": "#/components/responses/UnsupportedMediaTypeError"
          },
          "429": {
            "$ref": "#/components/responses/RateLimitError"
          },
          "500": {
            "$ref": "#/components/responses/InternalError"
          }
        },
        "security": [
          {
            "BearerAuth": []
          }
        ],
        "summary": "Update current user preferences",
        "tags": [
          "People"
        ],
        "x-required-scopes": [
          "user-preferences:write"
        ]
      }
    },
    "/users/{user_id}": {
      "get": {
        "description": "Get user. Results include only resources visible to the authenticated caller; collections use their documented stable order and bounds.",
        "operationId": "getUsersUserId",
        "parameters": [
          {
            "description": "The user identifier.",
            "in": "path",
            "name": "user_id",
            "required": true,
            "schema": {
              "minimum": 1,
              "type": "integer"
            }
          }
        ],
        "responses": {
          "200": {
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/GetUsersUserIdResult"
                }
              }
            },
            "description": "Get user response."
          },
          "401": {
            "$ref": "#/components/responses/AuthenticationError"
          },
          "403": {
            "$ref": "#/components/responses/PermissionError"
          },
          "404": {
            "$ref": "#/components/responses/NotFoundError"
          },
          "429": {
            "$ref": "#/components/responses/RateLimitError"
          },
          "500": {
            "$ref": "#/components/responses/InternalError"
          }
        },
        "security": [
          {
            "BearerAuth": []
          }
        ],
        "summary": "Get user",
        "tags": [
          "People"
        ],
        "x-required-scopes": [
          "users:read"
        ]
      }
    },
    "/workflows": {
      "get": {
        "description": "List workflows. Results include only resources visible to the authenticated caller; collections use their documented stable order and bounds.",
        "operationId": "getWorkflows",
        "parameters": [],
        "responses": {
          "200": {
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/GetWorkflowsResult"
                }
              }
            },
            "description": "List workflows response."
          },
          "401": {
            "$ref": "#/components/responses/AuthenticationError"
          },
          "403": {
            "$ref": "#/components/responses/PermissionError"
          },
          "429": {
            "$ref": "#/components/responses/RateLimitError"
          },
          "500": {
            "$ref": "#/components/responses/InternalError"
          }
        },
        "security": [
          {
            "BearerAuth": []
          }
        ],
        "summary": "List workflows",
        "tags": [
          "Workspace configuration"
        ],
        "x-required-scopes": [
          "workflows:read"
        ]
      },
      "post": {
        "description": "Create workflow. The server validates resource ownership and command preconditions before persisting changes. Unknown JSON fields are rejected when the operation accepts a body.",
        "operationId": "postWorkflows",
        "parameters": [],
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/PostWorkflowsPayload"
              }
            }
          },
          "required": true
        },
        "responses": {
          "201": {
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/PostWorkflowsResult"
                }
              }
            },
            "description": "Create workflow response."
          },
          "400": {
            "$ref": "#/components/responses/InvalidRequestError"
          },
          "401": {
            "$ref": "#/components/responses/AuthenticationError"
          },
          "403": {
            "$ref": "#/components/responses/PermissionError"
          },
          "413": {
            "$ref": "#/components/responses/PayloadTooLargeError"
          },
          "415": {
            "$ref": "#/components/responses/UnsupportedMediaTypeError"
          },
          "429": {
            "$ref": "#/components/responses/RateLimitError"
          },
          "500": {
            "$ref": "#/components/responses/InternalError"
          }
        },
        "security": [
          {
            "BearerAuth": []
          }
        ],
        "summary": "Create workflow",
        "tags": [
          "Workspace configuration"
        ],
        "x-required-scopes": [
          "workflows:write"
        ]
      }
    },
    "/workflows/{workflow_id}": {
      "delete": {
        "description": "Delete workflow. The server verifies resource ownership and deletion preconditions before removing the resource.",
        "operationId": "deleteWorkflowsWorkflowId",
        "parameters": [
          {
            "description": "The workflow identifier.",
            "in": "path",
            "name": "workflow_id",
            "required": true,
            "schema": {
              "minimum": 1,
              "type": "integer"
            }
          }
        ],
        "responses": {
          "204": {
            "description": "Request completed successfully with no response body."
          },
          "401": {
            "$ref": "#/components/responses/AuthenticationError"
          },
          "403": {
            "$ref": "#/components/responses/PermissionError"
          },
          "404": {
            "$ref": "#/components/responses/NotFoundError"
          },
          "429": {
            "$ref": "#/components/responses/RateLimitError"
          },
          "500": {
            "$ref": "#/components/responses/InternalError"
          }
        },
        "security": [
          {
            "BearerAuth": []
          }
        ],
        "summary": "Delete workflow",
        "tags": [
          "Workspace configuration"
        ],
        "x-required-scopes": [
          "workflows:write"
        ]
      },
      "get": {
        "description": "Get workflow. Results include only resources visible to the authenticated caller; collections use their documented stable order and bounds.",
        "operationId": "getWorkflowsWorkflowId",
        "parameters": [
          {
            "description": "The workflow identifier.",
            "in": "path",
            "name": "workflow_id",
            "required": true,
            "schema": {
              "minimum": 1,
              "type": "integer"
            }
          }
        ],
        "responses": {
          "200": {
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/GetWorkflowsWorkflowIdResult"
                }
              }
            },
            "description": "Get workflow response."
          },
          "401": {
            "$ref": "#/components/responses/AuthenticationError"
          },
          "403": {
            "$ref": "#/components/responses/PermissionError"
          },
          "404": {
            "$ref": "#/components/responses/NotFoundError"
          },
          "429": {
            "$ref": "#/components/responses/RateLimitError"
          },
          "500": {
            "$ref": "#/components/responses/InternalError"
          }
        },
        "security": [
          {
            "BearerAuth": []
          }
        ],
        "summary": "Get workflow",
        "tags": [
          "Workspace configuration"
        ],
        "x-required-scopes": [
          "workflows:read"
        ]
      },
      "patch": {
        "description": "Patch workflow. The operation uses JSON Merge Patch: omitted fields remain unchanged and documented nullable fields accept null. Unknown fields are rejected.",
        "operationId": "patchWorkflowsWorkflowId",
        "parameters": [
          {
            "description": "The workflow identifier.",
            "in": "path",
            "name": "workflow_id",
            "required": true,
            "schema": {
              "minimum": 1,
              "type": "integer"
            }
          }
        ],
        "requestBody": {
          "content": {
            "application/merge-patch+json": {
              "schema": {
                "$ref": "#/components/schemas/PatchWorkflowsWorkflowIdPayload"
              }
            }
          },
          "required": true
        },
        "responses": {
          "200": {
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/PatchWorkflowsWorkflowIdResult"
                }
              }
            },
            "description": "Patch workflow response."
          },
          "400": {
            "$ref": "#/components/responses/InvalidRequestError"
          },
          "401": {
            "$ref": "#/components/responses/AuthenticationError"
          },
          "403": {
            "$ref": "#/components/responses/PermissionError"
          },
          "404": {
            "$ref": "#/components/responses/NotFoundError"
          },
          "413": {
            "$ref": "#/components/responses/PayloadTooLargeError"
          },
          "415": {
            "$ref": "#/components/responses/UnsupportedMediaTypeError"
          },
          "429": {
            "$ref": "#/components/responses/RateLimitError"
          },
          "500": {
            "$ref": "#/components/responses/InternalError"
          }
        },
        "security": [
          {
            "BearerAuth": []
          }
        ],
        "summary": "Patch workflow",
        "tags": [
          "Workspace configuration"
        ],
        "x-required-scopes": [
          "workflows:write"
        ]
      }
    },
    "/workflows/{workflow_id}/approval-sets": {
      "get": {
        "description": "List workflow approval sets. Results include only resources visible to the authenticated caller; collections use their documented stable order and bounds.",
        "operationId": "getWorkflowsWorkflowIdApprovalSets",
        "parameters": [
          {
            "description": "The workflow identifier.",
            "in": "path",
            "name": "workflow_id",
            "required": true,
            "schema": {
              "minimum": 1,
              "type": "integer"
            }
          }
        ],
        "responses": {
          "200": {
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/GetWorkflowsWorkflowIdApprovalSetsResult"
                }
              }
            },
            "description": "List workflow approval sets response."
          },
          "401": {
            "$ref": "#/components/responses/AuthenticationError"
          },
          "403": {
            "$ref": "#/components/responses/PermissionError"
          },
          "404": {
            "$ref": "#/components/responses/NotFoundError"
          },
          "429": {
            "$ref": "#/components/responses/RateLimitError"
          },
          "500": {
            "$ref": "#/components/responses/InternalError"
          }
        },
        "security": [
          {
            "BearerAuth": []
          }
        ],
        "summary": "List workflow approval sets",
        "tags": [
          "Governance"
        ],
        "x-required-scopes": [
          "workflows:read"
        ]
      }
    },
    "/workflows/{workflow_id}/condition-sets": {
      "get": {
        "description": "List workflow condition sets. Results include only resources visible to the authenticated caller; collections use their documented stable order and bounds.",
        "operationId": "getWorkflowsWorkflowIdConditionSets",
        "parameters": [
          {
            "description": "The workflow identifier.",
            "in": "path",
            "name": "workflow_id",
            "required": true,
            "schema": {
              "minimum": 1,
              "type": "integer"
            }
          }
        ],
        "responses": {
          "200": {
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/GetWorkflowsWorkflowIdConditionSetsResult"
                }
              }
            },
            "description": "List workflow condition sets response."
          },
          "401": {
            "$ref": "#/components/responses/AuthenticationError"
          },
          "403": {
            "$ref": "#/components/responses/PermissionError"
          },
          "404": {
            "$ref": "#/components/responses/NotFoundError"
          },
          "429": {
            "$ref": "#/components/responses/RateLimitError"
          },
          "500": {
            "$ref": "#/components/responses/InternalError"
          }
        },
        "security": [
          {
            "BearerAuth": []
          }
        ],
        "summary": "List workflow condition sets",
        "tags": [
          "Governance"
        ],
        "x-required-scopes": [
          "workflows:read"
        ]
      }
    },
    "/workflows/{workflow_id}/transitions": {
      "get": {
        "description": "List workflow transitions. Results include only resources visible to the authenticated caller; collections use their documented stable order and bounds.",
        "operationId": "getWorkflowsWorkflowIdTransitions",
        "parameters": [
          {
            "description": "The workflow identifier.",
            "in": "path",
            "name": "workflow_id",
            "required": true,
            "schema": {
              "minimum": 1,
              "type": "integer"
            }
          }
        ],
        "responses": {
          "200": {
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/GetWorkflowsWorkflowIdTransitionsResult"
                }
              }
            },
            "description": "List workflow transitions response."
          },
          "401": {
            "$ref": "#/components/responses/AuthenticationError"
          },
          "403": {
            "$ref": "#/components/responses/PermissionError"
          },
          "404": {
            "$ref": "#/components/responses/NotFoundError"
          },
          "429": {
            "$ref": "#/components/responses/RateLimitError"
          },
          "500": {
            "$ref": "#/components/responses/InternalError"
          }
        },
        "security": [
          {
            "BearerAuth": []
          }
        ],
        "summary": "List workflow transitions",
        "tags": [
          "Workspace configuration"
        ],
        "x-required-scopes": [
          "workflows:read"
        ]
      },
      "put": {
        "description": "Replace workflow transitions. The server validates resource ownership and command preconditions before persisting changes. Unknown JSON fields are rejected when the operation accepts a body.",
        "operationId": "putWorkflowsWorkflowIdTransitions",
        "parameters": [
          {
            "description": "The workflow identifier.",
            "in": "path",
            "name": "workflow_id",
            "required": true,
            "schema": {
              "minimum": 1,
              "type": "integer"
            }
          }
        ],
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/PutWorkflowsWorkflowIdTransitionsPayload"
              }
            }
          },
          "required": true
        },
        "responses": {
          "200": {
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/PutWorkflowsWorkflowIdTransitionsResult"
                }
              }
            },
            "description": "Replace workflow transitions response."
          },
          "400": {
            "$ref": "#/components/responses/InvalidRequestError"
          },
          "401": {
            "$ref": "#/components/responses/AuthenticationError"
          },
          "403": {
            "$ref": "#/components/responses/PermissionError"
          },
          "404": {
            "$ref": "#/components/responses/NotFoundError"
          },
          "413": {
            "$ref": "#/components/responses/PayloadTooLargeError"
          },
          "415": {
            "$ref": "#/components/responses/UnsupportedMediaTypeError"
          },
          "429": {
            "$ref": "#/components/responses/RateLimitError"
          },
          "500": {
            "$ref": "#/components/responses/InternalError"
          }
        },
        "security": [
          {
            "BearerAuth": []
          }
        ],
        "summary": "Replace workflow transitions",
        "tags": [
          "Workspace configuration"
        ],
        "x-required-scopes": [
          "workflows:write"
        ]
      }
    },
    "/workspace-templates": {
      "get": {
        "description": "List workspace templates. Results include only resources visible to the authenticated caller; collections use their documented stable order and bounds.",
        "operationId": "getWorkspaceTemplates",
        "parameters": [],
        "responses": {
          "200": {
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/GetWorkspaceTemplatesResult"
                }
              }
            },
            "description": "List workspace templates response."
          },
          "401": {
            "$ref": "#/components/responses/AuthenticationError"
          },
          "403": {
            "$ref": "#/components/responses/PermissionError"
          },
          "429": {
            "$ref": "#/components/responses/RateLimitError"
          },
          "500": {
            "$ref": "#/components/responses/InternalError"
          }
        },
        "security": [
          {
            "BearerAuth": []
          }
        ],
        "summary": "List workspace templates",
        "tags": [
          "Workspace configuration"
        ],
        "x-required-scopes": [
          "workspaces:read"
        ]
      }
    },
    "/workspaces": {
      "get": {
        "description": "List workspaces. Results include only resources visible to the authenticated caller; collections use their documented stable order and bounds.",
        "operationId": "getWorkspaces",
        "parameters": [
          {
            "description": "One-based page number.",
            "in": "query",
            "name": "page",
            "required": false,
            "schema": {
              "default": 1,
              "minimum": 1,
              "type": "integer"
            }
          },
          {
            "description": "Maximum number of resources to return.",
            "in": "query",
            "name": "page_size",
            "required": false,
            "schema": {
              "default": 50,
              "maximum": 100,
              "minimum": 1,
              "type": "integer"
            }
          },
          {
            "description": "Sort expression. Prefix a field with - for descending order.",
            "in": "query",
            "name": "sort",
            "required": false,
            "schema": {
              "enum": [
                "name",
                "-name",
                "key",
                "-key",
                "created_at",
                "-created_at"
              ],
              "type": "string"
            }
          }
        ],
        "responses": {
          "200": {
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/GetWorkspacesResult"
                }
              }
            },
            "description": "List workspaces response."
          },
          "401": {
            "$ref": "#/components/responses/AuthenticationError"
          },
          "403": {
            "$ref": "#/components/responses/PermissionError"
          },
          "429": {
            "$ref": "#/components/responses/RateLimitError"
          },
          "500": {
            "$ref": "#/components/responses/InternalError"
          }
        },
        "security": [
          {
            "BearerAuth": []
          }
        ],
        "summary": "List workspaces",
        "tags": [
          "Workspaces"
        ],
        "x-required-scopes": [
          "workspaces:read"
        ]
      },
      "post": {
        "description": "Create workspace. The server validates resource ownership and command preconditions before persisting changes. Unknown JSON fields are rejected when the operation accepts a body.",
        "operationId": "postWorkspaces",
        "parameters": [],
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/PostWorkspacesPayload"
              }
            }
          },
          "required": true
        },
        "responses": {
          "201": {
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/PostWorkspacesResult"
                }
              }
            },
            "description": "Create workspace response."
          },
          "400": {
            "$ref": "#/components/responses/InvalidRequestError"
          },
          "401": {
            "$ref": "#/components/responses/AuthenticationError"
          },
          "403": {
            "$ref": "#/components/responses/PermissionError"
          },
          "413": {
            "$ref": "#/components/responses/PayloadTooLargeError"
          },
          "415": {
            "$ref": "#/components/responses/UnsupportedMediaTypeError"
          },
          "429": {
            "$ref": "#/components/responses/RateLimitError"
          },
          "500": {
            "$ref": "#/components/responses/InternalError"
          }
        },
        "security": [
          {
            "BearerAuth": []
          }
        ],
        "summary": "Create workspace",
        "tags": [
          "Workspaces"
        ],
        "x-required-scopes": [
          "workspaces:write"
        ]
      }
    },
    "/workspaces/{workspace_id}": {
      "delete": {
        "description": "Delete workspace. The server verifies resource ownership and deletion preconditions before removing the resource.",
        "operationId": "deleteWorkspacesWorkspaceId",
        "parameters": [
          {
            "description": "The workspace identifier.",
            "in": "path",
            "name": "workspace_id",
            "required": true,
            "schema": {
              "minimum": 1,
              "type": "integer"
            }
          }
        ],
        "responses": {
          "204": {
            "description": "Request completed successfully with no response body."
          },
          "401": {
            "$ref": "#/components/responses/AuthenticationError"
          },
          "403": {
            "$ref": "#/components/responses/PermissionError"
          },
          "404": {
            "$ref": "#/components/responses/NotFoundError"
          },
          "429": {
            "$ref": "#/components/responses/RateLimitError"
          },
          "500": {
            "$ref": "#/components/responses/InternalError"
          }
        },
        "security": [
          {
            "BearerAuth": []
          }
        ],
        "summary": "Delete workspace",
        "tags": [
          "Workspaces"
        ],
        "x-required-scopes": [
          "workspaces:delete"
        ]
      },
      "get": {
        "description": "Get workspace. Results include only resources visible to the authenticated caller; collections use their documented stable order and bounds.",
        "operationId": "getWorkspacesWorkspaceId",
        "parameters": [
          {
            "description": "The workspace identifier.",
            "in": "path",
            "name": "workspace_id",
            "required": true,
            "schema": {
              "minimum": 1,
              "type": "integer"
            }
          }
        ],
        "responses": {
          "200": {
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/GetWorkspacesWorkspaceIdResult"
                }
              }
            },
            "description": "Get workspace response."
          },
          "401": {
            "$ref": "#/components/responses/AuthenticationError"
          },
          "403": {
            "$ref": "#/components/responses/PermissionError"
          },
          "404": {
            "$ref": "#/components/responses/NotFoundError"
          },
          "429": {
            "$ref": "#/components/responses/RateLimitError"
          },
          "500": {
            "$ref": "#/components/responses/InternalError"
          }
        },
        "security": [
          {
            "BearerAuth": []
          }
        ],
        "summary": "Get workspace",
        "tags": [
          "Workspaces"
        ],
        "x-required-scopes": [
          "workspaces:read"
        ]
      },
      "patch": {
        "description": "Update workspace. The operation uses JSON Merge Patch: omitted fields remain unchanged and documented nullable fields accept null. Unknown fields are rejected.",
        "operationId": "patchWorkspacesWorkspaceId",
        "parameters": [
          {
            "description": "The workspace identifier.",
            "in": "path",
            "name": "workspace_id",
            "required": true,
            "schema": {
              "minimum": 1,
              "type": "integer"
            }
          }
        ],
        "requestBody": {
          "content": {
            "application/merge-patch+json": {
              "schema": {
                "$ref": "#/components/schemas/PatchWorkspacesWorkspaceIdPayload"
              }
            }
          },
          "required": true
        },
        "responses": {
          "200": {
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/PatchWorkspacesWorkspaceIdResult"
                }
              }
            },
            "description": "Update workspace response."
          },
          "400": {
            "$ref": "#/components/responses/InvalidRequestError"
          },
          "401": {
            "$ref": "#/components/responses/AuthenticationError"
          },
          "403": {
            "$ref": "#/components/responses/PermissionError"
          },
          "404": {
            "$ref": "#/components/responses/NotFoundError"
          },
          "413": {
            "$ref": "#/components/responses/PayloadTooLargeError"
          },
          "415": {
            "$ref": "#/components/responses/UnsupportedMediaTypeError"
          },
          "429": {
            "$ref": "#/components/responses/RateLimitError"
          },
          "500": {
            "$ref": "#/components/responses/InternalError"
          }
        },
        "security": [
          {
            "BearerAuth": []
          }
        ],
        "summary": "Update workspace",
        "tags": [
          "Workspaces"
        ],
        "x-required-scopes": [
          "workspaces:write"
        ]
      }
    },
    "/workspaces/{workspace_id}/action-catalog": {
      "get": {
        "description": "Get action catalog. Results include only resources visible to the authenticated caller; collections use their documented stable order and bounds.",
        "operationId": "getWorkspacesWorkspaceIdActionCatalog",
        "parameters": [
          {
            "description": "The workspace identifier.",
            "in": "path",
            "name": "workspace_id",
            "required": true,
            "schema": {
              "minimum": 1,
              "type": "integer"
            }
          }
        ],
        "responses": {
          "200": {
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/GetWorkspacesWorkspaceIdActionCatalogResult"
                }
              }
            },
            "description": "Get action catalog response."
          },
          "401": {
            "$ref": "#/components/responses/AuthenticationError"
          },
          "403": {
            "$ref": "#/components/responses/PermissionError"
          },
          "404": {
            "$ref": "#/components/responses/NotFoundError"
          },
          "429": {
            "$ref": "#/components/responses/RateLimitError"
          },
          "500": {
            "$ref": "#/components/responses/InternalError"
          }
        },
        "security": [
          {
            "BearerAuth": []
          }
        ],
        "summary": "Get action catalog",
        "tags": [
          "Automation"
        ],
        "x-required-scopes": [
          "actions:read"
        ]
      }
    },
    "/workspaces/{workspace_id}/action-templates/{template_key}/apply": {
      "post": {
        "description": "Apply action template. The server validates resource ownership and command preconditions before persisting changes. Unknown JSON fields are rejected when the operation accepts a body.",
        "operationId": "postWorkspacesWorkspaceIdActionTemplatesTemplateKeyApply",
        "parameters": [
          {
            "description": "The workspace identifier.",
            "in": "path",
            "name": "workspace_id",
            "required": true,
            "schema": {
              "minimum": 1,
              "type": "integer"
            }
          },
          {
            "description": "The action template key.",
            "in": "path",
            "name": "template_key",
            "required": true,
            "schema": {
              "minLength": 1,
              "type": "string"
            }
          }
        ],
        "responses": {
          "201": {
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/PostWorkspacesWorkspaceIdActionTemplatesTemplateKeyApplyResult"
                }
              }
            },
            "description": "Apply action template response."
          },
          "401": {
            "$ref": "#/components/responses/AuthenticationError"
          },
          "403": {
            "$ref": "#/components/responses/PermissionError"
          },
          "404": {
            "$ref": "#/components/responses/NotFoundError"
          },
          "429": {
            "$ref": "#/components/responses/RateLimitError"
          },
          "500": {
            "$ref": "#/components/responses/InternalError"
          }
        },
        "security": [
          {
            "BearerAuth": []
          }
        ],
        "summary": "Apply action template",
        "tags": [
          "Automation"
        ],
        "x-required-scopes": [
          "actions:write"
        ]
      }
    },
    "/workspaces/{workspace_id}/actions": {
      "get": {
        "description": "List actions. Results include only resources visible to the authenticated caller; collections use their documented stable order and bounds.",
        "operationId": "getWorkspacesWorkspaceIdActions",
        "parameters": [
          {
            "description": "The workspace identifier.",
            "in": "path",
            "name": "workspace_id",
            "required": true,
            "schema": {
              "minimum": 1,
              "type": "integer"
            }
          }
        ],
        "responses": {
          "200": {
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/GetWorkspacesWorkspaceIdActionsResult"
                }
              }
            },
            "description": "List actions response."
          },
          "401": {
            "$ref": "#/components/responses/AuthenticationError"
          },
          "403": {
            "$ref": "#/components/responses/PermissionError"
          },
          "404": {
            "$ref": "#/components/responses/NotFoundError"
          },
          "429": {
            "$ref": "#/components/responses/RateLimitError"
          },
          "500": {
            "$ref": "#/components/responses/InternalError"
          }
        },
        "security": [
          {
            "BearerAuth": []
          }
        ],
        "summary": "List actions",
        "tags": [
          "Automation"
        ],
        "x-required-scopes": [
          "actions:read"
        ]
      },
      "post": {
        "description": "Create action. The server validates resource ownership and command preconditions before persisting changes. Unknown JSON fields are rejected when the operation accepts a body.",
        "operationId": "postWorkspacesWorkspaceIdActions",
        "parameters": [
          {
            "description": "The workspace identifier.",
            "in": "path",
            "name": "workspace_id",
            "required": true,
            "schema": {
              "minimum": 1,
              "type": "integer"
            }
          }
        ],
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/PostWorkspacesWorkspaceIdActionsPayload"
              }
            }
          },
          "required": true
        },
        "responses": {
          "201": {
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/PostWorkspacesWorkspaceIdActionsResult"
                }
              }
            },
            "description": "Create action response."
          },
          "400": {
            "$ref": "#/components/responses/InvalidRequestError"
          },
          "401": {
            "$ref": "#/components/responses/AuthenticationError"
          },
          "403": {
            "$ref": "#/components/responses/PermissionError"
          },
          "404": {
            "$ref": "#/components/responses/NotFoundError"
          },
          "413": {
            "$ref": "#/components/responses/PayloadTooLargeError"
          },
          "415": {
            "$ref": "#/components/responses/UnsupportedMediaTypeError"
          },
          "429": {
            "$ref": "#/components/responses/RateLimitError"
          },
          "500": {
            "$ref": "#/components/responses/InternalError"
          }
        },
        "security": [
          {
            "BearerAuth": []
          }
        ],
        "summary": "Create action",
        "tags": [
          "Automation"
        ],
        "x-required-scopes": [
          "actions:write"
        ]
      }
    },
    "/workspaces/{workspace_id}/actions/{action_id}": {
      "delete": {
        "description": "Delete action. The server verifies resource ownership and deletion preconditions before removing the resource.",
        "operationId": "deleteWorkspacesWorkspaceIdActionsActionId",
        "parameters": [
          {
            "description": "The workspace identifier.",
            "in": "path",
            "name": "workspace_id",
            "required": true,
            "schema": {
              "minimum": 1,
              "type": "integer"
            }
          },
          {
            "description": "The action identifier.",
            "in": "path",
            "name": "action_id",
            "required": true,
            "schema": {
              "minimum": 1,
              "type": "integer"
            }
          }
        ],
        "responses": {
          "204": {
            "description": "Request completed successfully with no response body."
          },
          "401": {
            "$ref": "#/components/responses/AuthenticationError"
          },
          "403": {
            "$ref": "#/components/responses/PermissionError"
          },
          "404": {
            "$ref": "#/components/responses/NotFoundError"
          },
          "429": {
            "$ref": "#/components/responses/RateLimitError"
          },
          "500": {
            "$ref": "#/components/responses/InternalError"
          }
        },
        "security": [
          {
            "BearerAuth": []
          }
        ],
        "summary": "Delete action",
        "tags": [
          "Automation"
        ],
        "x-required-scopes": [
          "actions:write"
        ]
      },
      "get": {
        "description": "Get action. Results include only resources visible to the authenticated caller; collections use their documented stable order and bounds.",
        "operationId": "getWorkspacesWorkspaceIdActionsActionId",
        "parameters": [
          {
            "description": "The workspace identifier.",
            "in": "path",
            "name": "workspace_id",
            "required": true,
            "schema": {
              "minimum": 1,
              "type": "integer"
            }
          },
          {
            "description": "The action identifier.",
            "in": "path",
            "name": "action_id",
            "required": true,
            "schema": {
              "minimum": 1,
              "type": "integer"
            }
          }
        ],
        "responses": {
          "200": {
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/GetWorkspacesWorkspaceIdActionsActionIdResult"
                }
              }
            },
            "description": "Get action response."
          },
          "401": {
            "$ref": "#/components/responses/AuthenticationError"
          },
          "403": {
            "$ref": "#/components/responses/PermissionError"
          },
          "404": {
            "$ref": "#/components/responses/NotFoundError"
          },
          "429": {
            "$ref": "#/components/responses/RateLimitError"
          },
          "500": {
            "$ref": "#/components/responses/InternalError"
          }
        },
        "security": [
          {
            "BearerAuth": []
          }
        ],
        "summary": "Get action",
        "tags": [
          "Automation"
        ],
        "x-required-scopes": [
          "actions:read"
        ]
      },
      "patch": {
        "description": "Update action. The operation uses JSON Merge Patch: omitted fields remain unchanged and documented nullable fields accept null. Unknown fields are rejected.",
        "operationId": "patchWorkspacesWorkspaceIdActionsActionId",
        "parameters": [
          {
            "description": "The workspace identifier.",
            "in": "path",
            "name": "workspace_id",
            "required": true,
            "schema": {
              "minimum": 1,
              "type": "integer"
            }
          },
          {
            "description": "The action identifier.",
            "in": "path",
            "name": "action_id",
            "required": true,
            "schema": {
              "minimum": 1,
              "type": "integer"
            }
          }
        ],
        "requestBody": {
          "content": {
            "application/merge-patch+json": {
              "schema": {
                "$ref": "#/components/schemas/PatchWorkspacesWorkspaceIdActionsActionIdPayload"
              }
            }
          },
          "required": true
        },
        "responses": {
          "200": {
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/PatchWorkspacesWorkspaceIdActionsActionIdResult"
                }
              }
            },
            "description": "Update action response."
          },
          "400": {
            "$ref": "#/components/responses/InvalidRequestError"
          },
          "401": {
            "$ref": "#/components/responses/AuthenticationError"
          },
          "403": {
            "$ref": "#/components/responses/PermissionError"
          },
          "404": {
            "$ref": "#/components/responses/NotFoundError"
          },
          "413": {
            "$ref": "#/components/responses/PayloadTooLargeError"
          },
          "415": {
            "$ref": "#/components/responses/UnsupportedMediaTypeError"
          },
          "429": {
            "$ref": "#/components/responses/RateLimitError"
          },
          "500": {
            "$ref": "#/components/responses/InternalError"
          }
        },
        "security": [
          {
            "BearerAuth": []
          }
        ],
        "summary": "Update action",
        "tags": [
          "Automation"
        ],
        "x-required-scopes": [
          "actions:write"
        ]
      }
    },
    "/workspaces/{workspace_id}/actions/{action_id}/execute": {
      "post": {
        "description": "Execute action. The server validates resource ownership and command preconditions before persisting changes. Unknown JSON fields are rejected when the operation accepts a body.",
        "operationId": "postWorkspacesWorkspaceIdActionsActionIdExecute",
        "parameters": [
          {
            "description": "The workspace identifier.",
            "in": "path",
            "name": "workspace_id",
            "required": true,
            "schema": {
              "minimum": 1,
              "type": "integer"
            }
          },
          {
            "description": "The action identifier.",
            "in": "path",
            "name": "action_id",
            "required": true,
            "schema": {
              "minimum": 1,
              "type": "integer"
            }
          }
        ],
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/PostWorkspacesWorkspaceIdActionsActionIdExecutePayload"
              }
            }
          },
          "required": true
        },
        "responses": {
          "200": {
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/PostWorkspacesWorkspaceIdActionsActionIdExecuteResult"
                }
              }
            },
            "description": "Execute action response."
          },
          "400": {
            "$ref": "#/components/responses/InvalidRequestError"
          },
          "401": {
            "$ref": "#/components/responses/AuthenticationError"
          },
          "403": {
            "$ref": "#/components/responses/PermissionError"
          },
          "404": {
            "$ref": "#/components/responses/NotFoundError"
          },
          "413": {
            "$ref": "#/components/responses/PayloadTooLargeError"
          },
          "415": {
            "$ref": "#/components/responses/UnsupportedMediaTypeError"
          },
          "429": {
            "$ref": "#/components/responses/RateLimitError"
          },
          "500": {
            "$ref": "#/components/responses/InternalError"
          }
        },
        "security": [
          {
            "BearerAuth": []
          }
        ],
        "summary": "Execute action",
        "tags": [
          "Automation"
        ],
        "x-required-scopes": [
          "actions:write"
        ]
      }
    },
    "/workspaces/{workspace_id}/actions/{action_id}/logs": {
      "get": {
        "description": "List action logs. Results include only resources visible to the authenticated caller; collections use their documented stable order and bounds.",
        "operationId": "getWorkspacesWorkspaceIdActionsActionIdLogs",
        "parameters": [
          {
            "description": "The workspace identifier.",
            "in": "path",
            "name": "workspace_id",
            "required": true,
            "schema": {
              "minimum": 1,
              "type": "integer"
            }
          },
          {
            "description": "The action identifier.",
            "in": "path",
            "name": "action_id",
            "required": true,
            "schema": {
              "minimum": 1,
              "type": "integer"
            }
          },
          {
            "description": "One-based page number.",
            "in": "query",
            "name": "page",
            "required": false,
            "schema": {
              "default": 1,
              "minimum": 1,
              "type": "integer"
            }
          },
          {
            "description": "Maximum number of resources to return.",
            "in": "query",
            "name": "page_size",
            "required": false,
            "schema": {
              "default": 50,
              "maximum": 100,
              "minimum": 1,
              "type": "integer"
            }
          }
        ],
        "responses": {
          "200": {
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/GetWorkspacesWorkspaceIdActionsActionIdLogsResult"
                }
              }
            },
            "description": "List action logs response."
          },
          "401": {
            "$ref": "#/components/responses/AuthenticationError"
          },
          "403": {
            "$ref": "#/components/responses/PermissionError"
          },
          "404": {
            "$ref": "#/components/responses/NotFoundError"
          },
          "429": {
            "$ref": "#/components/responses/RateLimitError"
          },
          "500": {
            "$ref": "#/components/responses/InternalError"
          }
        },
        "security": [
          {
            "BearerAuth": []
          }
        ],
        "summary": "List action logs",
        "tags": [
          "Automation"
        ],
        "x-required-scopes": [
          "actions:read"
        ]
      }
    },
    "/workspaces/{workspace_id}/agent-runs": {
      "get": {
        "description": "Returns at most 200 visible agent runs in stable newest-first ID order. next_cursor resumes exclusively before the final returned run; private verification runs and unauthorized runs are omitted.",
        "operationId": "getWorkspacesWorkspaceIdAgentRuns",
        "parameters": [
          {
            "description": "The workspace identifier.",
            "in": "path",
            "name": "workspace_id",
            "required": true,
            "schema": {
              "minimum": 1,
              "type": "integer"
            }
          },
          {
            "description": "Opaque continuation cursor returned by the preceding response. Cursors are operation-specific and cannot be combined with removed timestamp or ID boundaries.",
            "in": "query",
            "name": "cursor",
            "required": false,
            "schema": {
              "minLength": 1,
              "type": "string"
            }
          },
          {
            "description": "Maximum number of resources to return.",
            "in": "query",
            "name": "page_size",
            "required": false,
            "schema": {
              "default": 50,
              "maximum": 200,
              "minimum": 1,
              "type": "integer"
            }
          }
        ],
        "responses": {
          "200": {
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/GetWorkspacesWorkspaceIdAgentRunsResult"
                }
              }
            },
            "description": "List workspace agent runs response."
          },
          "401": {
            "$ref": "#/components/responses/AuthenticationError"
          },
          "403": {
            "$ref": "#/components/responses/PermissionError"
          },
          "404": {
            "$ref": "#/components/responses/NotFoundError"
          },
          "429": {
            "$ref": "#/components/responses/RateLimitError"
          },
          "500": {
            "$ref": "#/components/responses/InternalError"
          }
        },
        "security": [
          {
            "BearerAuth": []
          }
        ],
        "summary": "List workspace agent runs",
        "tags": [
          "Agents"
        ],
        "x-required-scopes": [
          "items:read"
        ]
      }
    },
    "/workspaces/{workspace_id}/agent-skills": {
      "get": {
        "description": "List agent skills. Results include only resources visible to the authenticated caller; collections use their documented stable order and bounds.",
        "operationId": "getWorkspacesWorkspaceIdAgentSkills",
        "parameters": [
          {
            "description": "The workspace identifier.",
            "in": "path",
            "name": "workspace_id",
            "required": true,
            "schema": {
              "minimum": 1,
              "type": "integer"
            }
          }
        ],
        "responses": {
          "200": {
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/GetWorkspacesWorkspaceIdAgentSkillsResult"
                }
              }
            },
            "description": "List agent skills response."
          },
          "401": {
            "$ref": "#/components/responses/AuthenticationError"
          },
          "403": {
            "$ref": "#/components/responses/PermissionError"
          },
          "404": {
            "$ref": "#/components/responses/NotFoundError"
          },
          "429": {
            "$ref": "#/components/responses/RateLimitError"
          },
          "500": {
            "$ref": "#/components/responses/InternalError"
          }
        },
        "security": [
          {
            "BearerAuth": []
          }
        ],
        "summary": "List agent skills",
        "tags": [
          "Agents"
        ],
        "x-required-scopes": [
          "agent-skills:read"
        ]
      },
      "post": {
        "description": "Create agent skill. The server validates resource ownership and command preconditions before persisting changes. Unknown JSON fields are rejected when the operation accepts a body.",
        "operationId": "postWorkspacesWorkspaceIdAgentSkills",
        "parameters": [
          {
            "description": "The workspace identifier.",
            "in": "path",
            "name": "workspace_id",
            "required": true,
            "schema": {
              "minimum": 1,
              "type": "integer"
            }
          }
        ],
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/PostWorkspacesWorkspaceIdAgentSkillsPayload"
              }
            }
          },
          "required": true
        },
        "responses": {
          "201": {
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/PostWorkspacesWorkspaceIdAgentSkillsResult"
                }
              }
            },
            "description": "Create agent skill response."
          },
          "400": {
            "$ref": "#/components/responses/InvalidRequestError"
          },
          "401": {
            "$ref": "#/components/responses/AuthenticationError"
          },
          "403": {
            "$ref": "#/components/responses/PermissionError"
          },
          "404": {
            "$ref": "#/components/responses/NotFoundError"
          },
          "413": {
            "$ref": "#/components/responses/PayloadTooLargeError"
          },
          "415": {
            "$ref": "#/components/responses/UnsupportedMediaTypeError"
          },
          "429": {
            "$ref": "#/components/responses/RateLimitError"
          },
          "500": {
            "$ref": "#/components/responses/InternalError"
          }
        },
        "security": [
          {
            "BearerAuth": []
          }
        ],
        "summary": "Create agent skill",
        "tags": [
          "Agents"
        ],
        "x-required-scopes": [
          "agent-skills:write"
        ]
      }
    },
    "/workspaces/{workspace_id}/agent-skills/{skill_id}": {
      "delete": {
        "description": "Delete agent skill. The server verifies resource ownership and deletion preconditions before removing the resource.",
        "operationId": "deleteWorkspacesWorkspaceIdAgentSkillsSkillId",
        "parameters": [
          {
            "description": "The workspace identifier.",
            "in": "path",
            "name": "workspace_id",
            "required": true,
            "schema": {
              "minimum": 1,
              "type": "integer"
            }
          },
          {
            "description": "The skill identifier.",
            "in": "path",
            "name": "skill_id",
            "required": true,
            "schema": {
              "minimum": 1,
              "type": "integer"
            }
          }
        ],
        "responses": {
          "204": {
            "description": "Request completed successfully with no response body."
          },
          "401": {
            "$ref": "#/components/responses/AuthenticationError"
          },
          "403": {
            "$ref": "#/components/responses/PermissionError"
          },
          "404": {
            "$ref": "#/components/responses/NotFoundError"
          },
          "429": {
            "$ref": "#/components/responses/RateLimitError"
          },
          "500": {
            "$ref": "#/components/responses/InternalError"
          }
        },
        "security": [
          {
            "BearerAuth": []
          }
        ],
        "summary": "Delete agent skill",
        "tags": [
          "Agents"
        ],
        "x-required-scopes": [
          "agent-skills:write"
        ]
      },
      "get": {
        "description": "Get agent skill. Results include only resources visible to the authenticated caller; collections use their documented stable order and bounds.",
        "operationId": "getWorkspacesWorkspaceIdAgentSkillsSkillId",
        "parameters": [
          {
            "description": "The workspace identifier.",
            "in": "path",
            "name": "workspace_id",
            "required": true,
            "schema": {
              "minimum": 1,
              "type": "integer"
            }
          },
          {
            "description": "The skill identifier.",
            "in": "path",
            "name": "skill_id",
            "required": true,
            "schema": {
              "minimum": 1,
              "type": "integer"
            }
          }
        ],
        "responses": {
          "200": {
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/GetWorkspacesWorkspaceIdAgentSkillsSkillIdResult"
                }
              }
            },
            "description": "Get agent skill response."
          },
          "401": {
            "$ref": "#/components/responses/AuthenticationError"
          },
          "403": {
            "$ref": "#/components/responses/PermissionError"
          },
          "404": {
            "$ref": "#/components/responses/NotFoundError"
          },
          "429": {
            "$ref": "#/components/responses/RateLimitError"
          },
          "500": {
            "$ref": "#/components/responses/InternalError"
          }
        },
        "security": [
          {
            "BearerAuth": []
          }
        ],
        "summary": "Get agent skill",
        "tags": [
          "Agents"
        ],
        "x-required-scopes": [
          "agent-skills:read"
        ]
      },
      "patch": {
        "description": "Patch agent skill. The operation uses JSON Merge Patch: omitted fields remain unchanged and documented nullable fields accept null. Unknown fields are rejected.",
        "operationId": "patchWorkspacesWorkspaceIdAgentSkillsSkillId",
        "parameters": [
          {
            "description": "The workspace identifier.",
            "in": "path",
            "name": "workspace_id",
            "required": true,
            "schema": {
              "minimum": 1,
              "type": "integer"
            }
          },
          {
            "description": "The skill identifier.",
            "in": "path",
            "name": "skill_id",
            "required": true,
            "schema": {
              "minimum": 1,
              "type": "integer"
            }
          }
        ],
        "requestBody": {
          "content": {
            "application/merge-patch+json": {
              "schema": {
                "$ref": "#/components/schemas/PatchWorkspacesWorkspaceIdAgentSkillsSkillIdPayload"
              }
            }
          },
          "required": true
        },
        "responses": {
          "200": {
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/PatchWorkspacesWorkspaceIdAgentSkillsSkillIdResult"
                }
              }
            },
            "description": "Patch agent skill response."
          },
          "400": {
            "$ref": "#/components/responses/InvalidRequestError"
          },
          "401": {
            "$ref": "#/components/responses/AuthenticationError"
          },
          "403": {
            "$ref": "#/components/responses/PermissionError"
          },
          "404": {
            "$ref": "#/components/responses/NotFoundError"
          },
          "413": {
            "$ref": "#/components/responses/PayloadTooLargeError"
          },
          "415": {
            "$ref": "#/components/responses/UnsupportedMediaTypeError"
          },
          "429": {
            "$ref": "#/components/responses/RateLimitError"
          },
          "500": {
            "$ref": "#/components/responses/InternalError"
          }
        },
        "security": [
          {
            "BearerAuth": []
          }
        ],
        "summary": "Patch agent skill",
        "tags": [
          "Agents"
        ],
        "x-required-scopes": [
          "agent-skills:write"
        ]
      }
    },
    "/workspaces/{workspace_id}/assignable-users": {
      "get": {
        "description": "List assignable users. Results include only resources visible to the authenticated caller; collections use their documented stable order and bounds.",
        "operationId": "getWorkspacesWorkspaceIdAssignableUsers",
        "parameters": [
          {
            "description": "The workspace identifier.",
            "in": "path",
            "name": "workspace_id",
            "required": true,
            "schema": {
              "minimum": 1,
              "type": "integer"
            }
          }
        ],
        "responses": {
          "200": {
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/GetWorkspacesWorkspaceIdAssignableUsersResult"
                }
              }
            },
            "description": "List assignable users response."
          },
          "401": {
            "$ref": "#/components/responses/AuthenticationError"
          },
          "403": {
            "$ref": "#/components/responses/PermissionError"
          },
          "404": {
            "$ref": "#/components/responses/NotFoundError"
          },
          "429": {
            "$ref": "#/components/responses/RateLimitError"
          },
          "500": {
            "$ref": "#/components/responses/InternalError"
          }
        },
        "security": [
          {
            "BearerAuth": []
          }
        ],
        "summary": "List assignable users",
        "tags": [
          "People"
        ],
        "x-required-scopes": [
          "users:read"
        ]
      }
    },
    "/workspaces/{workspace_id}/board-configuration": {
      "delete": {
        "description": "Delete workspace board configuration. The server verifies resource ownership and deletion preconditions before removing the resource.",
        "operationId": "deleteWorkspacesWorkspaceIdBoardConfiguration",
        "parameters": [
          {
            "description": "The workspace identifier.",
            "in": "path",
            "name": "workspace_id",
            "required": true,
            "schema": {
              "minimum": 1,
              "type": "integer"
            }
          }
        ],
        "responses": {
          "204": {
            "description": "Request completed successfully with no response body."
          },
          "401": {
            "$ref": "#/components/responses/AuthenticationError"
          },
          "403": {
            "$ref": "#/components/responses/PermissionError"
          },
          "404": {
            "$ref": "#/components/responses/NotFoundError"
          },
          "429": {
            "$ref": "#/components/responses/RateLimitError"
          },
          "500": {
            "$ref": "#/components/responses/InternalError"
          }
        },
        "security": [
          {
            "BearerAuth": []
          }
        ],
        "summary": "Delete workspace board configuration",
        "tags": [
          "Planning"
        ],
        "x-required-scopes": [
          "collections:delete"
        ]
      },
      "get": {
        "description": "Get workspace board configuration. Results include only resources visible to the authenticated caller; collections use their documented stable order and bounds.",
        "operationId": "getWorkspacesWorkspaceIdBoardConfiguration",
        "parameters": [
          {
            "description": "The workspace identifier.",
            "in": "path",
            "name": "workspace_id",
            "required": true,
            "schema": {
              "minimum": 1,
              "type": "integer"
            }
          }
        ],
        "responses": {
          "200": {
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/GetWorkspacesWorkspaceIdBoardConfigurationResult"
                }
              }
            },
            "description": "Get workspace board configuration response."
          },
          "401": {
            "$ref": "#/components/responses/AuthenticationError"
          },
          "403": {
            "$ref": "#/components/responses/PermissionError"
          },
          "404": {
            "$ref": "#/components/responses/NotFoundError"
          },
          "429": {
            "$ref": "#/components/responses/RateLimitError"
          },
          "500": {
            "$ref": "#/components/responses/InternalError"
          }
        },
        "security": [
          {
            "BearerAuth": []
          }
        ],
        "summary": "Get workspace board configuration",
        "tags": [
          "Planning"
        ],
        "x-required-scopes": [
          "collections:read"
        ]
      },
      "put": {
        "description": "Put workspace board configuration. The server validates resource ownership and command preconditions before persisting changes. Unknown JSON fields are rejected when the operation accepts a body.",
        "operationId": "putWorkspacesWorkspaceIdBoardConfiguration",
        "parameters": [
          {
            "description": "The workspace identifier.",
            "in": "path",
            "name": "workspace_id",
            "required": true,
            "schema": {
              "minimum": 1,
              "type": "integer"
            }
          }
        ],
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/PutWorkspacesWorkspaceIdBoardConfigurationPayload"
              }
            }
          },
          "required": true
        },
        "responses": {
          "200": {
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/PutWorkspacesWorkspaceIdBoardConfigurationResult"
                }
              }
            },
            "description": "Put workspace board configuration response."
          },
          "400": {
            "$ref": "#/components/responses/InvalidRequestError"
          },
          "401": {
            "$ref": "#/components/responses/AuthenticationError"
          },
          "403": {
            "$ref": "#/components/responses/PermissionError"
          },
          "404": {
            "$ref": "#/components/responses/NotFoundError"
          },
          "413": {
            "$ref": "#/components/responses/PayloadTooLargeError"
          },
          "415": {
            "$ref": "#/components/responses/UnsupportedMediaTypeError"
          },
          "429": {
            "$ref": "#/components/responses/RateLimitError"
          },
          "500": {
            "$ref": "#/components/responses/InternalError"
          }
        },
        "security": [
          {
            "BearerAuth": []
          }
        ],
        "summary": "Put workspace board configuration",
        "tags": [
          "Planning"
        ],
        "x-required-scopes": [
          "collections:write"
        ]
      }
    },
    "/workspaces/{workspace_id}/board-configuration/bootstrap": {
      "get": {
        "description": "Get workspace board configuration bootstrap. Results include only resources visible to the authenticated caller; collections use their documented stable order and bounds.",
        "operationId": "getWorkspacesWorkspaceIdBoardConfigurationBootstrap",
        "parameters": [
          {
            "description": "The workspace identifier.",
            "in": "path",
            "name": "workspace_id",
            "required": true,
            "schema": {
              "minimum": 1,
              "type": "integer"
            }
          }
        ],
        "responses": {
          "200": {
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/GetWorkspacesWorkspaceIdBoardConfigurationBootstrapResult"
                }
              }
            },
            "description": "Get workspace board configuration bootstrap response."
          },
          "401": {
            "$ref": "#/components/responses/AuthenticationError"
          },
          "403": {
            "$ref": "#/components/responses/PermissionError"
          },
          "404": {
            "$ref": "#/components/responses/NotFoundError"
          },
          "429": {
            "$ref": "#/components/responses/RateLimitError"
          },
          "500": {
            "$ref": "#/components/responses/InternalError"
          }
        },
        "security": [
          {
            "BearerAuth": []
          }
        ],
        "summary": "Get workspace board configuration bootstrap",
        "tags": [
          "Planning"
        ],
        "x-required-scopes": [
          "collections:read"
        ]
      }
    },
    "/workspaces/{workspace_id}/item-templates": {
      "get": {
        "description": "List workspace item templates. Results include only resources visible to the authenticated caller; collections use their documented stable order and bounds.",
        "operationId": "getWorkspacesWorkspaceIdItemTemplates",
        "parameters": [
          {
            "description": "The workspace identifier.",
            "in": "path",
            "name": "workspace_id",
            "required": true,
            "schema": {
              "minimum": 1,
              "type": "integer"
            }
          },
          {
            "description": "Filter by item type identifier.",
            "in": "query",
            "name": "item_type_id",
            "required": false,
            "schema": {
              "minimum": 1,
              "type": "integer"
            }
          }
        ],
        "responses": {
          "200": {
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/GetWorkspacesWorkspaceIdItemTemplatesResult"
                }
              }
            },
            "description": "List workspace item templates response."
          },
          "401": {
            "$ref": "#/components/responses/AuthenticationError"
          },
          "403": {
            "$ref": "#/components/responses/PermissionError"
          },
          "404": {
            "$ref": "#/components/responses/NotFoundError"
          },
          "429": {
            "$ref": "#/components/responses/RateLimitError"
          },
          "500": {
            "$ref": "#/components/responses/InternalError"
          }
        },
        "security": [
          {
            "BearerAuth": []
          }
        ],
        "summary": "List workspace item templates",
        "tags": [
          "Workspace configuration"
        ],
        "x-required-scopes": [
          "item-templates:read"
        ]
      },
      "post": {
        "description": "Create workspace item template. The server validates resource ownership and command preconditions before persisting changes. Unknown JSON fields are rejected when the operation accepts a body.",
        "operationId": "postWorkspacesWorkspaceIdItemTemplates",
        "parameters": [
          {
            "description": "The workspace identifier.",
            "in": "path",
            "name": "workspace_id",
            "required": true,
            "schema": {
              "minimum": 1,
              "type": "integer"
            }
          }
        ],
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/PostWorkspacesWorkspaceIdItemTemplatesPayload"
              }
            }
          },
          "required": true
        },
        "responses": {
          "201": {
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/PostWorkspacesWorkspaceIdItemTemplatesResult"
                }
              }
            },
            "description": "Create workspace item template response."
          },
          "400": {
            "$ref": "#/components/responses/InvalidRequestError"
          },
          "401": {
            "$ref": "#/components/responses/AuthenticationError"
          },
          "403": {
            "$ref": "#/components/responses/PermissionError"
          },
          "404": {
            "$ref": "#/components/responses/NotFoundError"
          },
          "413": {
            "$ref": "#/components/responses/PayloadTooLargeError"
          },
          "415": {
            "$ref": "#/components/responses/UnsupportedMediaTypeError"
          },
          "429": {
            "$ref": "#/components/responses/RateLimitError"
          },
          "500": {
            "$ref": "#/components/responses/InternalError"
          }
        },
        "security": [
          {
            "BearerAuth": []
          }
        ],
        "summary": "Create workspace item template",
        "tags": [
          "Workspace configuration"
        ],
        "x-required-scopes": [
          "item-templates:write"
        ]
      }
    },
    "/workspaces/{workspace_id}/item-templates/{template_id}": {
      "delete": {
        "description": "Delete workspace item template. The server verifies resource ownership and deletion preconditions before removing the resource.",
        "operationId": "deleteWorkspacesWorkspaceIdItemTemplatesTemplateId",
        "parameters": [
          {
            "description": "The workspace identifier.",
            "in": "path",
            "name": "workspace_id",
            "required": true,
            "schema": {
              "minimum": 1,
              "type": "integer"
            }
          },
          {
            "description": "The template identifier.",
            "in": "path",
            "name": "template_id",
            "required": true,
            "schema": {
              "minimum": 1,
              "type": "integer"
            }
          }
        ],
        "responses": {
          "204": {
            "description": "Request completed successfully with no response body."
          },
          "401": {
            "$ref": "#/components/responses/AuthenticationError"
          },
          "403": {
            "$ref": "#/components/responses/PermissionError"
          },
          "404": {
            "$ref": "#/components/responses/NotFoundError"
          },
          "429": {
            "$ref": "#/components/responses/RateLimitError"
          },
          "500": {
            "$ref": "#/components/responses/InternalError"
          }
        },
        "security": [
          {
            "BearerAuth": []
          }
        ],
        "summary": "Delete workspace item template",
        "tags": [
          "Workspace configuration"
        ],
        "x-required-scopes": [
          "item-templates:write"
        ]
      },
      "get": {
        "description": "Get workspace item template. Results include only resources visible to the authenticated caller; collections use their documented stable order and bounds.",
        "operationId": "getWorkspacesWorkspaceIdItemTemplatesTemplateId",
        "parameters": [
          {
            "description": "The workspace identifier.",
            "in": "path",
            "name": "workspace_id",
            "required": true,
            "schema": {
              "minimum": 1,
              "type": "integer"
            }
          },
          {
            "description": "The template identifier.",
            "in": "path",
            "name": "template_id",
            "required": true,
            "schema": {
              "minimum": 1,
              "type": "integer"
            }
          }
        ],
        "responses": {
          "200": {
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/GetWorkspacesWorkspaceIdItemTemplatesTemplateIdResult"
                }
              }
            },
            "description": "Get workspace item template response."
          },
          "401": {
            "$ref": "#/components/responses/AuthenticationError"
          },
          "403": {
            "$ref": "#/components/responses/PermissionError"
          },
          "404": {
            "$ref": "#/components/responses/NotFoundError"
          },
          "429": {
            "$ref": "#/components/responses/RateLimitError"
          },
          "500": {
            "$ref": "#/components/responses/InternalError"
          }
        },
        "security": [
          {
            "BearerAuth": []
          }
        ],
        "summary": "Get workspace item template",
        "tags": [
          "Workspace configuration"
        ],
        "x-required-scopes": [
          "item-templates:read"
        ]
      },
      "patch": {
        "description": "Update workspace item template. The operation uses JSON Merge Patch: omitted fields remain unchanged and documented nullable fields accept null. Unknown fields are rejected.",
        "operationId": "patchWorkspacesWorkspaceIdItemTemplatesTemplateId",
        "parameters": [
          {
            "description": "The workspace identifier.",
            "in": "path",
            "name": "workspace_id",
            "required": true,
            "schema": {
              "minimum": 1,
              "type": "integer"
            }
          },
          {
            "description": "The template identifier.",
            "in": "path",
            "name": "template_id",
            "required": true,
            "schema": {
              "minimum": 1,
              "type": "integer"
            }
          }
        ],
        "requestBody": {
          "content": {
            "application/merge-patch+json": {
              "schema": {
                "$ref": "#/components/schemas/PatchWorkspacesWorkspaceIdItemTemplatesTemplateIdPayload"
              }
            }
          },
          "required": true
        },
        "responses": {
          "200": {
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/PatchWorkspacesWorkspaceIdItemTemplatesTemplateIdResult"
                }
              }
            },
            "description": "Update workspace item template response."
          },
          "400": {
            "$ref": "#/components/responses/InvalidRequestError"
          },
          "401": {
            "$ref": "#/components/responses/AuthenticationError"
          },
          "403": {
            "$ref": "#/components/responses/PermissionError"
          },
          "404": {
            "$ref": "#/components/responses/NotFoundError"
          },
          "413": {
            "$ref": "#/components/responses/PayloadTooLargeError"
          },
          "415": {
            "$ref": "#/components/responses/UnsupportedMediaTypeError"
          },
          "429": {
            "$ref": "#/components/responses/RateLimitError"
          },
          "500": {
            "$ref": "#/components/responses/InternalError"
          }
        },
        "security": [
          {
            "BearerAuth": []
          }
        ],
        "summary": "Update workspace item template",
        "tags": [
          "Workspace configuration"
        ],
        "x-required-scopes": [
          "item-templates:write"
        ]
      }
    },
    "/workspaces/{workspace_id}/item-types": {
      "get": {
        "description": "List workspace item types. Results include only resources visible to the authenticated caller; collections use their documented stable order and bounds.",
        "operationId": "getWorkspacesWorkspaceIdItemTypes",
        "parameters": [
          {
            "description": "The workspace identifier.",
            "in": "path",
            "name": "workspace_id",
            "required": true,
            "schema": {
              "minimum": 1,
              "type": "integer"
            }
          }
        ],
        "responses": {
          "200": {
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/GetWorkspacesWorkspaceIdItemTypesResult"
                }
              }
            },
            "description": "List workspace item types response."
          },
          "401": {
            "$ref": "#/components/responses/AuthenticationError"
          },
          "403": {
            "$ref": "#/components/responses/PermissionError"
          },
          "404": {
            "$ref": "#/components/responses/NotFoundError"
          },
          "429": {
            "$ref": "#/components/responses/RateLimitError"
          },
          "500": {
            "$ref": "#/components/responses/InternalError"
          }
        },
        "security": [
          {
            "BearerAuth": []
          }
        ],
        "summary": "List workspace item types",
        "tags": [
          "Workspace configuration"
        ],
        "x-required-scopes": [
          "workspaces:read"
        ]
      }
    },
    "/workspaces/{workspace_id}/iterations": {
      "get": {
        "description": "List workspace iterations. Results include only resources visible to the authenticated caller; collections use their documented stable order and bounds.",
        "operationId": "getWorkspacesWorkspaceIdIterations",
        "parameters": [
          {
            "description": "The workspace identifier.",
            "in": "path",
            "name": "workspace_id",
            "required": true,
            "schema": {
              "minimum": 1,
              "type": "integer"
            }
          },
          {
            "description": "One-based page number.",
            "in": "query",
            "name": "page",
            "required": false,
            "schema": {
              "default": 1,
              "minimum": 1,
              "type": "integer"
            }
          },
          {
            "description": "Maximum number of resources to return.",
            "in": "query",
            "name": "page_size",
            "required": false,
            "schema": {
              "default": 50,
              "maximum": 100,
              "minimum": 1,
              "type": "integer"
            }
          },
          {
            "description": "Restricts results to one iteration type.",
            "in": "query",
            "name": "type_id",
            "required": false,
            "schema": {
              "minimum": 1,
              "type": "integer"
            }
          },
          {
            "description": "Restricts results to an iteration status.",
            "in": "query",
            "name": "status",
            "required": false,
            "schema": {
              "type": "string"
            }
          },
          {
            "description": "Sort field; prefix with '-' for descending order. ID is the stable final tie-breaker.",
            "in": "query",
            "name": "sort",
            "required": false,
            "schema": {
              "enum": [
                "start_date",
                "-start_date",
                "end_date",
                "-end_date",
                "name",
                "-name",
                "status",
                "-status",
                "created_at",
                "-created_at",
                "updated_at",
                "-updated_at"
              ],
              "type": "string"
            }
          }
        ],
        "responses": {
          "200": {
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/GetWorkspacesWorkspaceIdIterationsResult"
                }
              }
            },
            "description": "List workspace iterations response."
          },
          "401": {
            "$ref": "#/components/responses/AuthenticationError"
          },
          "403": {
            "$ref": "#/components/responses/PermissionError"
          },
          "404": {
            "$ref": "#/components/responses/NotFoundError"
          },
          "429": {
            "$ref": "#/components/responses/RateLimitError"
          },
          "500": {
            "$ref": "#/components/responses/InternalError"
          }
        },
        "security": [
          {
            "BearerAuth": []
          }
        ],
        "summary": "List workspace iterations",
        "tags": [
          "Planning"
        ],
        "x-required-scopes": [
          "iterations:read"
        ]
      },
      "post": {
        "description": "Create workspace iteration. The server validates resource ownership and command preconditions before persisting changes. Unknown JSON fields are rejected when the operation accepts a body.",
        "operationId": "postWorkspacesWorkspaceIdIterations",
        "parameters": [
          {
            "description": "The workspace identifier.",
            "in": "path",
            "name": "workspace_id",
            "required": true,
            "schema": {
              "minimum": 1,
              "type": "integer"
            }
          }
        ],
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/PostWorkspacesWorkspaceIdIterationsPayload"
              }
            }
          },
          "required": true
        },
        "responses": {
          "201": {
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/PostWorkspacesWorkspaceIdIterationsResult"
                }
              }
            },
            "description": "Create workspace iteration response."
          },
          "400": {
            "$ref": "#/components/responses/InvalidRequestError"
          },
          "401": {
            "$ref": "#/components/responses/AuthenticationError"
          },
          "403": {
            "$ref": "#/components/responses/PermissionError"
          },
          "404": {
            "$ref": "#/components/responses/NotFoundError"
          },
          "413": {
            "$ref": "#/components/responses/PayloadTooLargeError"
          },
          "415": {
            "$ref": "#/components/responses/UnsupportedMediaTypeError"
          },
          "429": {
            "$ref": "#/components/responses/RateLimitError"
          },
          "500": {
            "$ref": "#/components/responses/InternalError"
          }
        },
        "security": [
          {
            "BearerAuth": []
          }
        ],
        "summary": "Create workspace iteration",
        "tags": [
          "Planning"
        ],
        "x-required-scopes": [
          "iterations:write"
        ]
      }
    },
    "/workspaces/{workspace_id}/labels": {
      "get": {
        "description": "List workspace labels. Results include only resources visible to the authenticated caller; collections use their documented stable order and bounds.",
        "operationId": "getWorkspacesWorkspaceIdLabels",
        "parameters": [
          {
            "description": "The workspace identifier.",
            "in": "path",
            "name": "workspace_id",
            "required": true,
            "schema": {
              "minimum": 1,
              "type": "integer"
            }
          }
        ],
        "responses": {
          "200": {
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/GetWorkspacesWorkspaceIdLabelsResult"
                }
              }
            },
            "description": "List workspace labels response."
          },
          "401": {
            "$ref": "#/components/responses/AuthenticationError"
          },
          "403": {
            "$ref": "#/components/responses/PermissionError"
          },
          "404": {
            "$ref": "#/components/responses/NotFoundError"
          },
          "429": {
            "$ref": "#/components/responses/RateLimitError"
          },
          "500": {
            "$ref": "#/components/responses/InternalError"
          }
        },
        "security": [
          {
            "BearerAuth": []
          }
        ],
        "summary": "List workspace labels",
        "tags": [
          "Work items"
        ],
        "x-required-scopes": [
          "items:read"
        ]
      },
      "post": {
        "description": "Create workspace label. The server validates resource ownership and command preconditions before persisting changes. Unknown JSON fields are rejected when the operation accepts a body.",
        "operationId": "postWorkspacesWorkspaceIdLabels",
        "parameters": [
          {
            "description": "The workspace identifier.",
            "in": "path",
            "name": "workspace_id",
            "required": true,
            "schema": {
              "minimum": 1,
              "type": "integer"
            }
          }
        ],
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/PostWorkspacesWorkspaceIdLabelsPayload"
              }
            }
          },
          "required": true
        },
        "responses": {
          "201": {
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/PostWorkspacesWorkspaceIdLabelsResult"
                }
              }
            },
            "description": "Create workspace label response."
          },
          "400": {
            "$ref": "#/components/responses/InvalidRequestError"
          },
          "401": {
            "$ref": "#/components/responses/AuthenticationError"
          },
          "403": {
            "$ref": "#/components/responses/PermissionError"
          },
          "404": {
            "$ref": "#/components/responses/NotFoundError"
          },
          "413": {
            "$ref": "#/components/responses/PayloadTooLargeError"
          },
          "415": {
            "$ref": "#/components/responses/UnsupportedMediaTypeError"
          },
          "429": {
            "$ref": "#/components/responses/RateLimitError"
          },
          "500": {
            "$ref": "#/components/responses/InternalError"
          }
        },
        "security": [
          {
            "BearerAuth": []
          }
        ],
        "summary": "Create workspace label",
        "tags": [
          "Work items"
        ],
        "x-required-scopes": [
          "items:write"
        ]
      }
    },
    "/workspaces/{workspace_id}/labels/{label_id}": {
      "delete": {
        "description": "Delete workspace label. The server verifies resource ownership and deletion preconditions before removing the resource.",
        "operationId": "deleteWorkspacesWorkspaceIdLabelsLabelId",
        "parameters": [
          {
            "description": "The workspace identifier.",
            "in": "path",
            "name": "workspace_id",
            "required": true,
            "schema": {
              "minimum": 1,
              "type": "integer"
            }
          },
          {
            "description": "The label identifier.",
            "in": "path",
            "name": "label_id",
            "required": true,
            "schema": {
              "minimum": 1,
              "type": "integer"
            }
          }
        ],
        "responses": {
          "204": {
            "description": "Request completed successfully with no response body."
          },
          "401": {
            "$ref": "#/components/responses/AuthenticationError"
          },
          "403": {
            "$ref": "#/components/responses/PermissionError"
          },
          "404": {
            "$ref": "#/components/responses/NotFoundError"
          },
          "429": {
            "$ref": "#/components/responses/RateLimitError"
          },
          "500": {
            "$ref": "#/components/responses/InternalError"
          }
        },
        "security": [
          {
            "BearerAuth": []
          }
        ],
        "summary": "Delete workspace label",
        "tags": [
          "Work items"
        ],
        "x-required-scopes": [
          "items:write"
        ]
      },
      "get": {
        "description": "Get workspace label. Results include only resources visible to the authenticated caller; collections use their documented stable order and bounds.",
        "operationId": "getWorkspacesWorkspaceIdLabelsLabelId",
        "parameters": [
          {
            "description": "The workspace identifier.",
            "in": "path",
            "name": "workspace_id",
            "required": true,
            "schema": {
              "minimum": 1,
              "type": "integer"
            }
          },
          {
            "description": "The label identifier.",
            "in": "path",
            "name": "label_id",
            "required": true,
            "schema": {
              "minimum": 1,
              "type": "integer"
            }
          }
        ],
        "responses": {
          "200": {
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/GetWorkspacesWorkspaceIdLabelsLabelIdResult"
                }
              }
            },
            "description": "Get workspace label response."
          },
          "401": {
            "$ref": "#/components/responses/AuthenticationError"
          },
          "403": {
            "$ref": "#/components/responses/PermissionError"
          },
          "404": {
            "$ref": "#/components/responses/NotFoundError"
          },
          "429": {
            "$ref": "#/components/responses/RateLimitError"
          },
          "500": {
            "$ref": "#/components/responses/InternalError"
          }
        },
        "security": [
          {
            "BearerAuth": []
          }
        ],
        "summary": "Get workspace label",
        "tags": [
          "Work items"
        ],
        "x-required-scopes": [
          "items:read"
        ]
      },
      "patch": {
        "description": "Update workspace label. The operation uses JSON Merge Patch: omitted fields remain unchanged and documented nullable fields accept null. Unknown fields are rejected.",
        "operationId": "patchWorkspacesWorkspaceIdLabelsLabelId",
        "parameters": [
          {
            "description": "The workspace identifier.",
            "in": "path",
            "name": "workspace_id",
            "required": true,
            "schema": {
              "minimum": 1,
              "type": "integer"
            }
          },
          {
            "description": "The label identifier.",
            "in": "path",
            "name": "label_id",
            "required": true,
            "schema": {
              "minimum": 1,
              "type": "integer"
            }
          }
        ],
        "requestBody": {
          "content": {
            "application/merge-patch+json": {
              "schema": {
                "$ref": "#/components/schemas/PatchWorkspacesWorkspaceIdLabelsLabelIdPayload"
              }
            }
          },
          "required": true
        },
        "responses": {
          "200": {
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/PatchWorkspacesWorkspaceIdLabelsLabelIdResult"
                }
              }
            },
            "description": "Update workspace label response."
          },
          "400": {
            "$ref": "#/components/responses/InvalidRequestError"
          },
          "401": {
            "$ref": "#/components/responses/AuthenticationError"
          },
          "403": {
            "$ref": "#/components/responses/PermissionError"
          },
          "404": {
            "$ref": "#/components/responses/NotFoundError"
          },
          "413": {
            "$ref": "#/components/responses/PayloadTooLargeError"
          },
          "415": {
            "$ref": "#/components/responses/UnsupportedMediaTypeError"
          },
          "429": {
            "$ref": "#/components/responses/RateLimitError"
          },
          "500": {
            "$ref": "#/components/responses/InternalError"
          }
        },
        "security": [
          {
            "BearerAuth": []
          }
        ],
        "summary": "Update workspace label",
        "tags": [
          "Work items"
        ],
        "x-required-scopes": [
          "items:write"
        ]
      }
    },
    "/workspaces/{workspace_id}/milestones": {
      "get": {
        "description": "List workspace milestones. Results include only resources visible to the authenticated caller; collections use their documented stable order and bounds.",
        "operationId": "getWorkspacesWorkspaceIdMilestones",
        "parameters": [
          {
            "description": "The workspace identifier.",
            "in": "path",
            "name": "workspace_id",
            "required": true,
            "schema": {
              "minimum": 1,
              "type": "integer"
            }
          },
          {
            "description": "One-based page number.",
            "in": "query",
            "name": "page",
            "required": false,
            "schema": {
              "default": 1,
              "minimum": 1,
              "type": "integer"
            }
          },
          {
            "description": "Maximum number of resources to return.",
            "in": "query",
            "name": "page_size",
            "required": false,
            "schema": {
              "default": 50,
              "maximum": 100,
              "minimum": 1,
              "type": "integer"
            }
          },
          {
            "description": "Restricts results to one milestone category.",
            "in": "query",
            "name": "category_id",
            "required": false,
            "schema": {
              "minimum": 1,
              "type": "integer"
            }
          },
          {
            "description": "Restricts results to a milestone status.",
            "in": "query",
            "name": "status",
            "required": false,
            "schema": {
              "type": "string"
            }
          },
          {
            "description": "Sort field; prefix with '-' for descending order. ID is the stable final tie-breaker.",
            "in": "query",
            "name": "sort",
            "required": false,
            "schema": {
              "enum": [
                "position",
                "-position",
                "name",
                "-name",
                "target_date",
                "-target_date",
                "status",
                "-status",
                "created_at",
                "-created_at",
                "updated_at",
                "-updated_at"
              ],
              "type": "string"
            }
          }
        ],
        "responses": {
          "200": {
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/GetWorkspacesWorkspaceIdMilestonesResult"
                }
              }
            },
            "description": "List workspace milestones response."
          },
          "401": {
            "$ref": "#/components/responses/AuthenticationError"
          },
          "403": {
            "$ref": "#/components/responses/PermissionError"
          },
          "404": {
            "$ref": "#/components/responses/NotFoundError"
          },
          "429": {
            "$ref": "#/components/responses/RateLimitError"
          },
          "500": {
            "$ref": "#/components/responses/InternalError"
          }
        },
        "security": [
          {
            "BearerAuth": []
          }
        ],
        "summary": "List workspace milestones",
        "tags": [
          "Planning"
        ],
        "x-required-scopes": [
          "milestones:read"
        ]
      },
      "post": {
        "description": "Create workspace milestone. The server validates resource ownership and command preconditions before persisting changes. Unknown JSON fields are rejected when the operation accepts a body.",
        "operationId": "postWorkspacesWorkspaceIdMilestones",
        "parameters": [
          {
            "description": "The workspace identifier.",
            "in": "path",
            "name": "workspace_id",
            "required": true,
            "schema": {
              "minimum": 1,
              "type": "integer"
            }
          }
        ],
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/PostWorkspacesWorkspaceIdMilestonesPayload"
              }
            }
          },
          "required": true
        },
        "responses": {
          "201": {
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/PostWorkspacesWorkspaceIdMilestonesResult"
                }
              }
            },
            "description": "Create workspace milestone response."
          },
          "400": {
            "$ref": "#/components/responses/InvalidRequestError"
          },
          "401": {
            "$ref": "#/components/responses/AuthenticationError"
          },
          "403": {
            "$ref": "#/components/responses/PermissionError"
          },
          "404": {
            "$ref": "#/components/responses/NotFoundError"
          },
          "413": {
            "$ref": "#/components/responses/PayloadTooLargeError"
          },
          "415": {
            "$ref": "#/components/responses/UnsupportedMediaTypeError"
          },
          "429": {
            "$ref": "#/components/responses/RateLimitError"
          },
          "500": {
            "$ref": "#/components/responses/InternalError"
          }
        },
        "security": [
          {
            "BearerAuth": []
          }
        ],
        "summary": "Create workspace milestone",
        "tags": [
          "Planning"
        ],
        "x-required-scopes": [
          "milestones:write"
        ]
      }
    },
    "/workspaces/{workspace_id}/milestones/reorder": {
      "post": {
        "description": "Reorder workspace milestones. The server validates resource ownership and command preconditions before persisting changes. Unknown JSON fields are rejected when the operation accepts a body.",
        "operationId": "postWorkspacesWorkspaceIdMilestonesReorder",
        "parameters": [
          {
            "description": "The workspace identifier.",
            "in": "path",
            "name": "workspace_id",
            "required": true,
            "schema": {
              "minimum": 1,
              "type": "integer"
            }
          }
        ],
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/PostWorkspacesWorkspaceIdMilestonesReorderPayload"
              }
            }
          },
          "required": true
        },
        "responses": {
          "200": {
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/PostWorkspacesWorkspaceIdMilestonesReorderResult"
                }
              }
            },
            "description": "Reorder workspace milestones response."
          },
          "400": {
            "$ref": "#/components/responses/InvalidRequestError"
          },
          "401": {
            "$ref": "#/components/responses/AuthenticationError"
          },
          "403": {
            "$ref": "#/components/responses/PermissionError"
          },
          "404": {
            "$ref": "#/components/responses/NotFoundError"
          },
          "413": {
            "$ref": "#/components/responses/PayloadTooLargeError"
          },
          "415": {
            "$ref": "#/components/responses/UnsupportedMediaTypeError"
          },
          "429": {
            "$ref": "#/components/responses/RateLimitError"
          },
          "500": {
            "$ref": "#/components/responses/InternalError"
          }
        },
        "security": [
          {
            "BearerAuth": []
          }
        ],
        "summary": "Reorder workspace milestones",
        "tags": [
          "Planning"
        ],
        "x-required-scopes": [
          "milestones:write"
        ]
      }
    },
    "/workspaces/{workspace_id}/page-labels": {
      "get": {
        "description": "List page labels. Results include only resources visible to the authenticated caller; collections use their documented stable order and bounds.",
        "operationId": "getWorkspacesWorkspaceIdPageLabels",
        "parameters": [
          {
            "description": "The workspace identifier.",
            "in": "path",
            "name": "workspace_id",
            "required": true,
            "schema": {
              "minimum": 1,
              "type": "integer"
            }
          }
        ],
        "responses": {
          "200": {
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/GetWorkspacesWorkspaceIdPageLabelsResult"
                }
              }
            },
            "description": "List page labels response."
          },
          "401": {
            "$ref": "#/components/responses/AuthenticationError"
          },
          "403": {
            "$ref": "#/components/responses/PermissionError"
          },
          "404": {
            "$ref": "#/components/responses/NotFoundError"
          },
          "429": {
            "$ref": "#/components/responses/RateLimitError"
          },
          "500": {
            "$ref": "#/components/responses/InternalError"
          }
        },
        "security": [
          {
            "BearerAuth": []
          }
        ],
        "summary": "List page labels",
        "tags": [
          "Knowledge"
        ],
        "x-required-scopes": [
          "pages:read"
        ]
      },
      "post": {
        "description": "Create page label. The server validates resource ownership and command preconditions before persisting changes. Unknown JSON fields are rejected when the operation accepts a body.",
        "operationId": "postWorkspacesWorkspaceIdPageLabels",
        "parameters": [
          {
            "description": "The workspace identifier.",
            "in": "path",
            "name": "workspace_id",
            "required": true,
            "schema": {
              "minimum": 1,
              "type": "integer"
            }
          }
        ],
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/PostWorkspacesWorkspaceIdPageLabelsPayload"
              }
            }
          },
          "required": true
        },
        "responses": {
          "201": {
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/PostWorkspacesWorkspaceIdPageLabelsResult"
                }
              }
            },
            "description": "Create page label response."
          },
          "400": {
            "$ref": "#/components/responses/InvalidRequestError"
          },
          "401": {
            "$ref": "#/components/responses/AuthenticationError"
          },
          "403": {
            "$ref": "#/components/responses/PermissionError"
          },
          "404": {
            "$ref": "#/components/responses/NotFoundError"
          },
          "413": {
            "$ref": "#/components/responses/PayloadTooLargeError"
          },
          "415": {
            "$ref": "#/components/responses/UnsupportedMediaTypeError"
          },
          "429": {
            "$ref": "#/components/responses/RateLimitError"
          },
          "500": {
            "$ref": "#/components/responses/InternalError"
          }
        },
        "security": [
          {
            "BearerAuth": []
          }
        ],
        "summary": "Create page label",
        "tags": [
          "Knowledge"
        ],
        "x-required-scopes": [
          "pages:write"
        ]
      }
    },
    "/workspaces/{workspace_id}/page-labels/{label_id}": {
      "delete": {
        "description": "Delete page label. The server verifies resource ownership and deletion preconditions before removing the resource.",
        "operationId": "deleteWorkspacesWorkspaceIdPageLabelsLabelId",
        "parameters": [
          {
            "description": "The workspace identifier.",
            "in": "path",
            "name": "workspace_id",
            "required": true,
            "schema": {
              "minimum": 1,
              "type": "integer"
            }
          },
          {
            "description": "The label identifier.",
            "in": "path",
            "name": "label_id",
            "required": true,
            "schema": {
              "minimum": 1,
              "type": "integer"
            }
          }
        ],
        "responses": {
          "204": {
            "description": "Request completed successfully with no response body."
          },
          "401": {
            "$ref": "#/components/responses/AuthenticationError"
          },
          "403": {
            "$ref": "#/components/responses/PermissionError"
          },
          "404": {
            "$ref": "#/components/responses/NotFoundError"
          },
          "429": {
            "$ref": "#/components/responses/RateLimitError"
          },
          "500": {
            "$ref": "#/components/responses/InternalError"
          }
        },
        "security": [
          {
            "BearerAuth": []
          }
        ],
        "summary": "Delete page label",
        "tags": [
          "Knowledge"
        ],
        "x-required-scopes": [
          "pages:write"
        ]
      },
      "get": {
        "description": "Get page label. Results include only resources visible to the authenticated caller; collections use their documented stable order and bounds.",
        "operationId": "getWorkspacesWorkspaceIdPageLabelsLabelId",
        "parameters": [
          {
            "description": "The workspace identifier.",
            "in": "path",
            "name": "workspace_id",
            "required": true,
            "schema": {
              "minimum": 1,
              "type": "integer"
            }
          },
          {
            "description": "The label identifier.",
            "in": "path",
            "name": "label_id",
            "required": true,
            "schema": {
              "minimum": 1,
              "type": "integer"
            }
          }
        ],
        "responses": {
          "200": {
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/GetWorkspacesWorkspaceIdPageLabelsLabelIdResult"
                }
              }
            },
            "description": "Get page label response."
          },
          "401": {
            "$ref": "#/components/responses/AuthenticationError"
          },
          "403": {
            "$ref": "#/components/responses/PermissionError"
          },
          "404": {
            "$ref": "#/components/responses/NotFoundError"
          },
          "429": {
            "$ref": "#/components/responses/RateLimitError"
          },
          "500": {
            "$ref": "#/components/responses/InternalError"
          }
        },
        "security": [
          {
            "BearerAuth": []
          }
        ],
        "summary": "Get page label",
        "tags": [
          "Knowledge"
        ],
        "x-required-scopes": [
          "pages:read"
        ]
      },
      "patch": {
        "description": "Update page label. The operation uses JSON Merge Patch: omitted fields remain unchanged and documented nullable fields accept null. Unknown fields are rejected.",
        "operationId": "patchWorkspacesWorkspaceIdPageLabelsLabelId",
        "parameters": [
          {
            "description": "The workspace identifier.",
            "in": "path",
            "name": "workspace_id",
            "required": true,
            "schema": {
              "minimum": 1,
              "type": "integer"
            }
          },
          {
            "description": "The label identifier.",
            "in": "path",
            "name": "label_id",
            "required": true,
            "schema": {
              "minimum": 1,
              "type": "integer"
            }
          }
        ],
        "requestBody": {
          "content": {
            "application/merge-patch+json": {
              "schema": {
                "$ref": "#/components/schemas/PatchWorkspacesWorkspaceIdPageLabelsLabelIdPayload"
              }
            }
          },
          "required": true
        },
        "responses": {
          "200": {
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/PatchWorkspacesWorkspaceIdPageLabelsLabelIdResult"
                }
              }
            },
            "description": "Update page label response."
          },
          "400": {
            "$ref": "#/components/responses/InvalidRequestError"
          },
          "401": {
            "$ref": "#/components/responses/AuthenticationError"
          },
          "403": {
            "$ref": "#/components/responses/PermissionError"
          },
          "404": {
            "$ref": "#/components/responses/NotFoundError"
          },
          "413": {
            "$ref": "#/components/responses/PayloadTooLargeError"
          },
          "415": {
            "$ref": "#/components/responses/UnsupportedMediaTypeError"
          },
          "429": {
            "$ref": "#/components/responses/RateLimitError"
          },
          "500": {
            "$ref": "#/components/responses/InternalError"
          }
        },
        "security": [
          {
            "BearerAuth": []
          }
        ],
        "summary": "Update page label",
        "tags": [
          "Knowledge"
        ],
        "x-required-scopes": [
          "pages:write"
        ]
      }
    },
    "/workspaces/{workspace_id}/pages": {
      "get": {
        "description": "List pages. Results include only resources visible to the authenticated caller; collections use their documented stable order and bounds.",
        "operationId": "getWorkspacesWorkspaceIdPages",
        "parameters": [
          {
            "description": "The workspace identifier.",
            "in": "path",
            "name": "workspace_id",
            "required": true,
            "schema": {
              "minimum": 1,
              "type": "integer"
            }
          }
        ],
        "responses": {
          "200": {
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/GetWorkspacesWorkspaceIdPagesResult"
                }
              }
            },
            "description": "List pages response."
          },
          "401": {
            "$ref": "#/components/responses/AuthenticationError"
          },
          "403": {
            "$ref": "#/components/responses/PermissionError"
          },
          "404": {
            "$ref": "#/components/responses/NotFoundError"
          },
          "429": {
            "$ref": "#/components/responses/RateLimitError"
          },
          "500": {
            "$ref": "#/components/responses/InternalError"
          }
        },
        "security": [
          {
            "BearerAuth": []
          }
        ],
        "summary": "List pages",
        "tags": [
          "Knowledge"
        ],
        "x-required-scopes": [
          "pages:read"
        ]
      },
      "post": {
        "description": "Create page. The server validates resource ownership and command preconditions before persisting changes. Unknown JSON fields are rejected when the operation accepts a body.",
        "operationId": "postWorkspacesWorkspaceIdPages",
        "parameters": [
          {
            "description": "The workspace identifier.",
            "in": "path",
            "name": "workspace_id",
            "required": true,
            "schema": {
              "minimum": 1,
              "type": "integer"
            }
          }
        ],
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/PostWorkspacesWorkspaceIdPagesPayload"
              }
            }
          },
          "required": true
        },
        "responses": {
          "201": {
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/PostWorkspacesWorkspaceIdPagesResult"
                }
              }
            },
            "description": "Create page response."
          },
          "400": {
            "$ref": "#/components/responses/InvalidRequestError"
          },
          "401": {
            "$ref": "#/components/responses/AuthenticationError"
          },
          "403": {
            "$ref": "#/components/responses/PermissionError"
          },
          "404": {
            "$ref": "#/components/responses/NotFoundError"
          },
          "413": {
            "$ref": "#/components/responses/PayloadTooLargeError"
          },
          "415": {
            "$ref": "#/components/responses/UnsupportedMediaTypeError"
          },
          "429": {
            "$ref": "#/components/responses/RateLimitError"
          },
          "500": {
            "$ref": "#/components/responses/InternalError"
          }
        },
        "security": [
          {
            "BearerAuth": []
          }
        ],
        "summary": "Create page",
        "tags": [
          "Knowledge"
        ],
        "x-required-scopes": [
          "pages:write"
        ]
      }
    },
    "/workspaces/{workspace_id}/pages/archived": {
      "get": {
        "description": "List archived pages. Results include only resources visible to the authenticated caller; collections use their documented stable order and bounds.",
        "operationId": "getWorkspacesWorkspaceIdPagesArchived",
        "parameters": [
          {
            "description": "The workspace identifier.",
            "in": "path",
            "name": "workspace_id",
            "required": true,
            "schema": {
              "minimum": 1,
              "type": "integer"
            }
          }
        ],
        "responses": {
          "200": {
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/GetWorkspacesWorkspaceIdPagesArchivedResult"
                }
              }
            },
            "description": "List archived pages response."
          },
          "401": {
            "$ref": "#/components/responses/AuthenticationError"
          },
          "403": {
            "$ref": "#/components/responses/PermissionError"
          },
          "404": {
            "$ref": "#/components/responses/NotFoundError"
          },
          "429": {
            "$ref": "#/components/responses/RateLimitError"
          },
          "500": {
            "$ref": "#/components/responses/InternalError"
          }
        },
        "security": [
          {
            "BearerAuth": []
          }
        ],
        "summary": "List archived pages",
        "tags": [
          "Knowledge"
        ],
        "x-required-scopes": [
          "pages:read"
        ]
      }
    },
    "/workspaces/{workspace_id}/pages/search": {
      "get": {
        "description": "Search pages. Results include only resources visible to the authenticated caller; collections use their documented stable order and bounds.",
        "operationId": "getWorkspacesWorkspaceIdPagesSearch",
        "parameters": [
          {
            "description": "The workspace identifier.",
            "in": "path",
            "name": "workspace_id",
            "required": true,
            "schema": {
              "minimum": 1,
              "type": "integer"
            }
          },
          {
            "description": "Page title and content search text.",
            "in": "query",
            "name": "q",
            "required": false,
            "schema": {
              "type": "string"
            }
          },
          {
            "description": "Maximum number of matches.",
            "in": "query",
            "name": "limit",
            "required": false,
            "schema": {
              "default": 20,
              "maximum": 100,
              "minimum": 1,
              "type": "integer"
            }
          }
        ],
        "responses": {
          "200": {
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/GetWorkspacesWorkspaceIdPagesSearchResult"
                }
              }
            },
            "description": "Search pages response."
          },
          "400": {
            "$ref": "#/components/responses/InvalidRequestError"
          },
          "401": {
            "$ref": "#/components/responses/AuthenticationError"
          },
          "403": {
            "$ref": "#/components/responses/PermissionError"
          },
          "404": {
            "$ref": "#/components/responses/NotFoundError"
          },
          "429": {
            "$ref": "#/components/responses/RateLimitError"
          },
          "500": {
            "$ref": "#/components/responses/InternalError"
          }
        },
        "security": [
          {
            "BearerAuth": []
          }
        ],
        "summary": "Search pages",
        "tags": [
          "Knowledge"
        ],
        "x-required-scopes": [
          "pages:read"
        ]
      }
    },
    "/workspaces/{workspace_id}/pages/{page_id}": {
      "delete": {
        "description": "Archive page. The server verifies resource ownership and deletion preconditions before removing the resource.",
        "operationId": "deleteWorkspacesWorkspaceIdPagesPageId",
        "parameters": [
          {
            "description": "The workspace identifier.",
            "in": "path",
            "name": "workspace_id",
            "required": true,
            "schema": {
              "minimum": 1,
              "type": "integer"
            }
          },
          {
            "description": "The page identifier.",
            "in": "path",
            "name": "page_id",
            "required": true,
            "schema": {
              "minimum": 1,
              "type": "integer"
            }
          }
        ],
        "responses": {
          "204": {
            "description": "Request completed successfully with no response body."
          },
          "401": {
            "$ref": "#/components/responses/AuthenticationError"
          },
          "403": {
            "$ref": "#/components/responses/PermissionError"
          },
          "404": {
            "$ref": "#/components/responses/NotFoundError"
          },
          "429": {
            "$ref": "#/components/responses/RateLimitError"
          },
          "500": {
            "$ref": "#/components/responses/InternalError"
          }
        },
        "security": [
          {
            "BearerAuth": []
          }
        ],
        "summary": "Archive page",
        "tags": [
          "Knowledge"
        ],
        "x-required-scopes": [
          "pages:delete"
        ]
      },
      "get": {
        "description": "Get page. Results include only resources visible to the authenticated caller; collections use their documented stable order and bounds.",
        "operationId": "getWorkspacesWorkspaceIdPagesPageId",
        "parameters": [
          {
            "description": "The workspace identifier.",
            "in": "path",
            "name": "workspace_id",
            "required": true,
            "schema": {
              "minimum": 1,
              "type": "integer"
            }
          },
          {
            "description": "The page identifier.",
            "in": "path",
            "name": "page_id",
            "required": true,
            "schema": {
              "minimum": 1,
              "type": "integer"
            }
          }
        ],
        "responses": {
          "200": {
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/GetWorkspacesWorkspaceIdPagesPageIdResult"
                }
              }
            },
            "description": "Get page response."
          },
          "401": {
            "$ref": "#/components/responses/AuthenticationError"
          },
          "403": {
            "$ref": "#/components/responses/PermissionError"
          },
          "404": {
            "$ref": "#/components/responses/NotFoundError"
          },
          "429": {
            "$ref": "#/components/responses/RateLimitError"
          },
          "500": {
            "$ref": "#/components/responses/InternalError"
          }
        },
        "security": [
          {
            "BearerAuth": []
          }
        ],
        "summary": "Get page",
        "tags": [
          "Knowledge"
        ],
        "x-required-scopes": [
          "pages:read"
        ]
      },
      "patch": {
        "description": "Update page. The operation uses JSON Merge Patch: omitted fields remain unchanged and documented nullable fields accept null. Unknown fields are rejected.",
        "operationId": "patchWorkspacesWorkspaceIdPagesPageId",
        "parameters": [
          {
            "description": "The workspace identifier.",
            "in": "path",
            "name": "workspace_id",
            "required": true,
            "schema": {
              "minimum": 1,
              "type": "integer"
            }
          },
          {
            "description": "The page identifier.",
            "in": "path",
            "name": "page_id",
            "required": true,
            "schema": {
              "minimum": 1,
              "type": "integer"
            }
          }
        ],
        "requestBody": {
          "content": {
            "application/merge-patch+json": {
              "schema": {
                "$ref": "#/components/schemas/PatchWorkspacesWorkspaceIdPagesPageIdPayload"
              }
            }
          },
          "required": true
        },
        "responses": {
          "200": {
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/PatchWorkspacesWorkspaceIdPagesPageIdResult"
                }
              }
            },
            "description": "Update page response."
          },
          "400": {
            "$ref": "#/components/responses/InvalidRequestError"
          },
          "401": {
            "$ref": "#/components/responses/AuthenticationError"
          },
          "403": {
            "$ref": "#/components/responses/PermissionError"
          },
          "404": {
            "$ref": "#/components/responses/NotFoundError"
          },
          "413": {
            "$ref": "#/components/responses/PayloadTooLargeError"
          },
          "415": {
            "$ref": "#/components/responses/UnsupportedMediaTypeError"
          },
          "429": {
            "$ref": "#/components/responses/RateLimitError"
          },
          "500": {
            "$ref": "#/components/responses/InternalError"
          }
        },
        "security": [
          {
            "BearerAuth": []
          }
        ],
        "summary": "Update page",
        "tags": [
          "Knowledge"
        ],
        "x-required-scopes": [
          "pages:write"
        ]
      }
    },
    "/workspaces/{workspace_id}/pages/{page_id}/attachments": {
      "post": {
        "description": "Upload page attachment. The server validates resource ownership and command preconditions before persisting changes. Unknown JSON fields are rejected when the operation accepts a body.",
        "operationId": "postWorkspacesWorkspaceIdPagesPageIdAttachments",
        "parameters": [
          {
            "description": "The workspace identifier.",
            "in": "path",
            "name": "workspace_id",
            "required": true,
            "schema": {
              "minimum": 1,
              "type": "integer"
            }
          },
          {
            "description": "The page identifier.",
            "in": "path",
            "name": "page_id",
            "required": true,
            "schema": {
              "minimum": 1,
              "type": "integer"
            }
          }
        ],
        "requestBody": {
          "content": {
            "multipart/form-data": {
              "schema": {
                "$ref": "#/components/schemas/PostWorkspacesWorkspaceIdPagesPageIdAttachmentsPayload"
              }
            }
          },
          "required": true
        },
        "responses": {
          "201": {
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/PostWorkspacesWorkspaceIdPagesPageIdAttachmentsResult"
                }
              }
            },
            "description": "Upload page attachment response."
          },
          "400": {
            "$ref": "#/components/responses/InvalidRequestError"
          },
          "401": {
            "$ref": "#/components/responses/AuthenticationError"
          },
          "403": {
            "$ref": "#/components/responses/PermissionError"
          },
          "404": {
            "$ref": "#/components/responses/NotFoundError"
          },
          "413": {
            "$ref": "#/components/responses/PayloadTooLargeError"
          },
          "415": {
            "$ref": "#/components/responses/UnsupportedMediaTypeError"
          },
          "429": {
            "$ref": "#/components/responses/RateLimitError"
          },
          "500": {
            "$ref": "#/components/responses/InternalError"
          }
        },
        "security": [
          {
            "BearerAuth": []
          }
        ],
        "summary": "Upload page attachment",
        "tags": [
          "Knowledge"
        ],
        "x-required-scopes": [
          "pages:write"
        ]
      }
    },
    "/workspaces/{workspace_id}/pages/{page_id}/diagrams": {
      "get": {
        "description": "List page diagrams. Results include only resources visible to the authenticated caller; collections use their documented stable order and bounds.",
        "operationId": "getWorkspacesWorkspaceIdPagesPageIdDiagrams",
        "parameters": [
          {
            "description": "The workspace identifier.",
            "in": "path",
            "name": "workspace_id",
            "required": true,
            "schema": {
              "minimum": 1,
              "type": "integer"
            }
          },
          {
            "description": "The page identifier.",
            "in": "path",
            "name": "page_id",
            "required": true,
            "schema": {
              "minimum": 1,
              "type": "integer"
            }
          }
        ],
        "responses": {
          "200": {
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/GetWorkspacesWorkspaceIdPagesPageIdDiagramsResult"
                }
              }
            },
            "description": "List page diagrams response."
          },
          "401": {
            "$ref": "#/components/responses/AuthenticationError"
          },
          "403": {
            "$ref": "#/components/responses/PermissionError"
          },
          "404": {
            "$ref": "#/components/responses/NotFoundError"
          },
          "429": {
            "$ref": "#/components/responses/RateLimitError"
          },
          "500": {
            "$ref": "#/components/responses/InternalError"
          }
        },
        "security": [
          {
            "BearerAuth": []
          }
        ],
        "summary": "List page diagrams",
        "tags": [
          "Knowledge"
        ],
        "x-required-scopes": [
          "pages:read"
        ]
      },
      "post": {
        "description": "Create page diagram. The server validates resource ownership and command preconditions before persisting changes. Unknown JSON fields are rejected when the operation accepts a body.",
        "operationId": "postWorkspacesWorkspaceIdPagesPageIdDiagrams",
        "parameters": [
          {
            "description": "The workspace identifier.",
            "in": "path",
            "name": "workspace_id",
            "required": true,
            "schema": {
              "minimum": 1,
              "type": "integer"
            }
          },
          {
            "description": "The page identifier.",
            "in": "path",
            "name": "page_id",
            "required": true,
            "schema": {
              "minimum": 1,
              "type": "integer"
            }
          }
        ],
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/PostWorkspacesWorkspaceIdPagesPageIdDiagramsPayload"
              }
            }
          },
          "required": true
        },
        "responses": {
          "201": {
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/PostWorkspacesWorkspaceIdPagesPageIdDiagramsResult"
                }
              }
            },
            "description": "Create page diagram response."
          },
          "400": {
            "$ref": "#/components/responses/InvalidRequestError"
          },
          "401": {
            "$ref": "#/components/responses/AuthenticationError"
          },
          "403": {
            "$ref": "#/components/responses/PermissionError"
          },
          "404": {
            "$ref": "#/components/responses/NotFoundError"
          },
          "413": {
            "$ref": "#/components/responses/PayloadTooLargeError"
          },
          "415": {
            "$ref": "#/components/responses/UnsupportedMediaTypeError"
          },
          "429": {
            "$ref": "#/components/responses/RateLimitError"
          },
          "500": {
            "$ref": "#/components/responses/InternalError"
          }
        },
        "security": [
          {
            "BearerAuth": []
          }
        ],
        "summary": "Create page diagram",
        "tags": [
          "Knowledge"
        ],
        "x-required-scopes": [
          "pages:write"
        ]
      }
    },
    "/workspaces/{workspace_id}/pages/{page_id}/diagrams/{attachment_id}": {
      "get": {
        "description": "Get page diagram. Results include only resources visible to the authenticated caller; collections use their documented stable order and bounds.",
        "operationId": "getWorkspacesWorkspaceIdPagesPageIdDiagramsAttachmentId",
        "parameters": [
          {
            "description": "The workspace identifier.",
            "in": "path",
            "name": "workspace_id",
            "required": true,
            "schema": {
              "minimum": 1,
              "type": "integer"
            }
          },
          {
            "description": "The page identifier.",
            "in": "path",
            "name": "page_id",
            "required": true,
            "schema": {
              "minimum": 1,
              "type": "integer"
            }
          },
          {
            "description": "The attachment identifier.",
            "in": "path",
            "name": "attachment_id",
            "required": true,
            "schema": {
              "minimum": 1,
              "type": "integer"
            }
          }
        ],
        "responses": {
          "200": {
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/GetWorkspacesWorkspaceIdPagesPageIdDiagramsAttachmentIdResult"
                }
              }
            },
            "description": "Get page diagram response."
          },
          "401": {
            "$ref": "#/components/responses/AuthenticationError"
          },
          "403": {
            "$ref": "#/components/responses/PermissionError"
          },
          "404": {
            "$ref": "#/components/responses/NotFoundError"
          },
          "429": {
            "$ref": "#/components/responses/RateLimitError"
          },
          "500": {
            "$ref": "#/components/responses/InternalError"
          }
        },
        "security": [
          {
            "BearerAuth": []
          }
        ],
        "summary": "Get page diagram",
        "tags": [
          "Knowledge"
        ],
        "x-required-scopes": [
          "pages:read"
        ]
      },
      "patch": {
        "description": "Update page diagram. The operation uses JSON Merge Patch: omitted fields remain unchanged and documented nullable fields accept null. Unknown fields are rejected.",
        "operationId": "patchWorkspacesWorkspaceIdPagesPageIdDiagramsAttachmentId",
        "parameters": [
          {
            "description": "The workspace identifier.",
            "in": "path",
            "name": "workspace_id",
            "required": true,
            "schema": {
              "minimum": 1,
              "type": "integer"
            }
          },
          {
            "description": "The page identifier.",
            "in": "path",
            "name": "page_id",
            "required": true,
            "schema": {
              "minimum": 1,
              "type": "integer"
            }
          },
          {
            "description": "The attachment identifier.",
            "in": "path",
            "name": "attachment_id",
            "required": true,
            "schema": {
              "minimum": 1,
              "type": "integer"
            }
          }
        ],
        "requestBody": {
          "content": {
            "application/merge-patch+json": {
              "schema": {
                "$ref": "#/components/schemas/PatchWorkspacesWorkspaceIdPagesPageIdDiagramsAttachmentIdPayload"
              }
            }
          },
          "required": true
        },
        "responses": {
          "200": {
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/PatchWorkspacesWorkspaceIdPagesPageIdDiagramsAttachmentIdResult"
                }
              }
            },
            "description": "Update page diagram response."
          },
          "400": {
            "$ref": "#/components/responses/InvalidRequestError"
          },
          "401": {
            "$ref": "#/components/responses/AuthenticationError"
          },
          "403": {
            "$ref": "#/components/responses/PermissionError"
          },
          "404": {
            "$ref": "#/components/responses/NotFoundError"
          },
          "413": {
            "$ref": "#/components/responses/PayloadTooLargeError"
          },
          "415": {
            "$ref": "#/components/responses/UnsupportedMediaTypeError"
          },
          "429": {
            "$ref": "#/components/responses/RateLimitError"
          },
          "500": {
            "$ref": "#/components/responses/InternalError"
          }
        },
        "security": [
          {
            "BearerAuth": []
          }
        ],
        "summary": "Update page diagram",
        "tags": [
          "Knowledge"
        ],
        "x-required-scopes": [
          "pages:write"
        ]
      }
    },
    "/workspaces/{workspace_id}/pages/{page_id}/history": {
      "get": {
        "description": "List page history. Results include only resources visible to the authenticated caller; collections use their documented stable order and bounds.",
        "operationId": "getWorkspacesWorkspaceIdPagesPageIdHistory",
        "parameters": [
          {
            "description": "The workspace identifier.",
            "in": "path",
            "name": "workspace_id",
            "required": true,
            "schema": {
              "minimum": 1,
              "type": "integer"
            }
          },
          {
            "description": "The page identifier.",
            "in": "path",
            "name": "page_id",
            "required": true,
            "schema": {
              "minimum": 1,
              "type": "integer"
            }
          },
          {
            "description": "One-based page number.",
            "in": "query",
            "name": "page",
            "required": false,
            "schema": {
              "default": 1,
              "minimum": 1,
              "type": "integer"
            }
          },
          {
            "description": "Maximum number of resources to return.",
            "in": "query",
            "name": "page_size",
            "required": false,
            "schema": {
              "default": 50,
              "maximum": 100,
              "minimum": 1,
              "type": "integer"
            }
          }
        ],
        "responses": {
          "200": {
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/GetWorkspacesWorkspaceIdPagesPageIdHistoryResult"
                }
              }
            },
            "description": "List page history response."
          },
          "401": {
            "$ref": "#/components/responses/AuthenticationError"
          },
          "403": {
            "$ref": "#/components/responses/PermissionError"
          },
          "404": {
            "$ref": "#/components/responses/NotFoundError"
          },
          "429": {
            "$ref": "#/components/responses/RateLimitError"
          },
          "500": {
            "$ref": "#/components/responses/InternalError"
          }
        },
        "security": [
          {
            "BearerAuth": []
          }
        ],
        "summary": "List page history",
        "tags": [
          "Knowledge"
        ],
        "x-required-scopes": [
          "pages:read"
        ]
      }
    },
    "/workspaces/{workspace_id}/pages/{page_id}/history/{revision_id}": {
      "get": {
        "description": "Get page revision. Results include only resources visible to the authenticated caller; collections use their documented stable order and bounds.",
        "operationId": "getWorkspacesWorkspaceIdPagesPageIdHistoryRevisionId",
        "parameters": [
          {
            "description": "The workspace identifier.",
            "in": "path",
            "name": "workspace_id",
            "required": true,
            "schema": {
              "minimum": 1,
              "type": "integer"
            }
          },
          {
            "description": "The page identifier.",
            "in": "path",
            "name": "page_id",
            "required": true,
            "schema": {
              "minimum": 1,
              "type": "integer"
            }
          },
          {
            "description": "The revision identifier.",
            "in": "path",
            "name": "revision_id",
            "required": true,
            "schema": {
              "minimum": 1,
              "type": "integer"
            }
          }
        ],
        "responses": {
          "200": {
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/GetWorkspacesWorkspaceIdPagesPageIdHistoryRevisionIdResult"
                }
              }
            },
            "description": "Get page revision response."
          },
          "401": {
            "$ref": "#/components/responses/AuthenticationError"
          },
          "403": {
            "$ref": "#/components/responses/PermissionError"
          },
          "404": {
            "$ref": "#/components/responses/NotFoundError"
          },
          "429": {
            "$ref": "#/components/responses/RateLimitError"
          },
          "500": {
            "$ref": "#/components/responses/InternalError"
          }
        },
        "security": [
          {
            "BearerAuth": []
          }
        ],
        "summary": "Get page revision",
        "tags": [
          "Knowledge"
        ],
        "x-required-scopes": [
          "pages:read"
        ]
      }
    },
    "/workspaces/{workspace_id}/pages/{page_id}/history/{revision_id}/restore": {
      "post": {
        "description": "Restore page revision. The server validates resource ownership and command preconditions before persisting changes. Unknown JSON fields are rejected when the operation accepts a body.",
        "operationId": "postWorkspacesWorkspaceIdPagesPageIdHistoryRevisionIdRestore",
        "parameters": [
          {
            "description": "The workspace identifier.",
            "in": "path",
            "name": "workspace_id",
            "required": true,
            "schema": {
              "minimum": 1,
              "type": "integer"
            }
          },
          {
            "description": "The page identifier.",
            "in": "path",
            "name": "page_id",
            "required": true,
            "schema": {
              "minimum": 1,
              "type": "integer"
            }
          },
          {
            "description": "The revision identifier.",
            "in": "path",
            "name": "revision_id",
            "required": true,
            "schema": {
              "minimum": 1,
              "type": "integer"
            }
          }
        ],
        "responses": {
          "200": {
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/PostWorkspacesWorkspaceIdPagesPageIdHistoryRevisionIdRestoreResult"
                }
              }
            },
            "description": "Restore page revision response."
          },
          "400": {
            "$ref": "#/components/responses/InvalidRequestError"
          },
          "401": {
            "$ref": "#/components/responses/AuthenticationError"
          },
          "403": {
            "$ref": "#/components/responses/PermissionError"
          },
          "404": {
            "$ref": "#/components/responses/NotFoundError"
          },
          "429": {
            "$ref": "#/components/responses/RateLimitError"
          },
          "500": {
            "$ref": "#/components/responses/InternalError"
          }
        },
        "security": [
          {
            "BearerAuth": []
          }
        ],
        "summary": "Restore page revision",
        "tags": [
          "Knowledge"
        ],
        "x-required-scopes": [
          "pages:write"
        ]
      }
    },
    "/workspaces/{workspace_id}/pages/{page_id}/inheritance": {
      "patch": {
        "description": "Set page inheritance. The operation uses JSON Merge Patch: omitted fields remain unchanged and documented nullable fields accept null. Unknown fields are rejected.",
        "operationId": "patchWorkspacesWorkspaceIdPagesPageIdInheritance",
        "parameters": [
          {
            "description": "The workspace identifier.",
            "in": "path",
            "name": "workspace_id",
            "required": true,
            "schema": {
              "minimum": 1,
              "type": "integer"
            }
          },
          {
            "description": "The page identifier.",
            "in": "path",
            "name": "page_id",
            "required": true,
            "schema": {
              "minimum": 1,
              "type": "integer"
            }
          }
        ],
        "requestBody": {
          "content": {
            "application/merge-patch+json": {
              "schema": {
                "$ref": "#/components/schemas/PatchWorkspacesWorkspaceIdPagesPageIdInheritancePayload"
              }
            }
          },
          "required": true
        },
        "responses": {
          "200": {
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/PatchWorkspacesWorkspaceIdPagesPageIdInheritanceResult"
                }
              }
            },
            "description": "Set page inheritance response."
          },
          "400": {
            "$ref": "#/components/responses/InvalidRequestError"
          },
          "401": {
            "$ref": "#/components/responses/AuthenticationError"
          },
          "403": {
            "$ref": "#/components/responses/PermissionError"
          },
          "404": {
            "$ref": "#/components/responses/NotFoundError"
          },
          "413": {
            "$ref": "#/components/responses/PayloadTooLargeError"
          },
          "415": {
            "$ref": "#/components/responses/UnsupportedMediaTypeError"
          },
          "429": {
            "$ref": "#/components/responses/RateLimitError"
          },
          "500": {
            "$ref": "#/components/responses/InternalError"
          }
        },
        "security": [
          {
            "BearerAuth": []
          }
        ],
        "summary": "Set page inheritance",
        "tags": [
          "Knowledge"
        ],
        "x-required-scopes": [
          "pages:write"
        ]
      }
    },
    "/workspaces/{workspace_id}/pages/{page_id}/labels": {
      "get": {
        "description": "List labels for page. Results include only resources visible to the authenticated caller; collections use their documented stable order and bounds.",
        "operationId": "getWorkspacesWorkspaceIdPagesPageIdLabels",
        "parameters": [
          {
            "description": "The workspace identifier.",
            "in": "path",
            "name": "workspace_id",
            "required": true,
            "schema": {
              "minimum": 1,
              "type": "integer"
            }
          },
          {
            "description": "The page identifier.",
            "in": "path",
            "name": "page_id",
            "required": true,
            "schema": {
              "minimum": 1,
              "type": "integer"
            }
          }
        ],
        "responses": {
          "200": {
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/GetWorkspacesWorkspaceIdPagesPageIdLabelsResult"
                }
              }
            },
            "description": "List labels for page response."
          },
          "401": {
            "$ref": "#/components/responses/AuthenticationError"
          },
          "403": {
            "$ref": "#/components/responses/PermissionError"
          },
          "404": {
            "$ref": "#/components/responses/NotFoundError"
          },
          "429": {
            "$ref": "#/components/responses/RateLimitError"
          },
          "500": {
            "$ref": "#/components/responses/InternalError"
          }
        },
        "security": [
          {
            "BearerAuth": []
          }
        ],
        "summary": "List labels for page",
        "tags": [
          "Knowledge"
        ],
        "x-required-scopes": [
          "pages:read"
        ]
      },
      "post": {
        "description": "Add label to page. The server validates resource ownership and command preconditions before persisting changes. Unknown JSON fields are rejected when the operation accepts a body.",
        "operationId": "postWorkspacesWorkspaceIdPagesPageIdLabels",
        "parameters": [
          {
            "description": "The workspace identifier.",
            "in": "path",
            "name": "workspace_id",
            "required": true,
            "schema": {
              "minimum": 1,
              "type": "integer"
            }
          },
          {
            "description": "The page identifier.",
            "in": "path",
            "name": "page_id",
            "required": true,
            "schema": {
              "minimum": 1,
              "type": "integer"
            }
          }
        ],
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/PostWorkspacesWorkspaceIdPagesPageIdLabelsPayload"
              }
            }
          },
          "required": true
        },
        "responses": {
          "200": {
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/PostWorkspacesWorkspaceIdPagesPageIdLabelsResult"
                }
              }
            },
            "description": "Add label to page response."
          },
          "400": {
            "$ref": "#/components/responses/InvalidRequestError"
          },
          "401": {
            "$ref": "#/components/responses/AuthenticationError"
          },
          "403": {
            "$ref": "#/components/responses/PermissionError"
          },
          "404": {
            "$ref": "#/components/responses/NotFoundError"
          },
          "413": {
            "$ref": "#/components/responses/PayloadTooLargeError"
          },
          "415": {
            "$ref": "#/components/responses/UnsupportedMediaTypeError"
          },
          "429": {
            "$ref": "#/components/responses/RateLimitError"
          },
          "500": {
            "$ref": "#/components/responses/InternalError"
          }
        },
        "security": [
          {
            "BearerAuth": []
          }
        ],
        "summary": "Add label to page",
        "tags": [
          "Knowledge"
        ],
        "x-required-scopes": [
          "pages:write"
        ]
      },
      "put": {
        "description": "Set labels for page. The server validates resource ownership and command preconditions before persisting changes. Unknown JSON fields are rejected when the operation accepts a body.",
        "operationId": "putWorkspacesWorkspaceIdPagesPageIdLabels",
        "parameters": [
          {
            "description": "The workspace identifier.",
            "in": "path",
            "name": "workspace_id",
            "required": true,
            "schema": {
              "minimum": 1,
              "type": "integer"
            }
          },
          {
            "description": "The page identifier.",
            "in": "path",
            "name": "page_id",
            "required": true,
            "schema": {
              "minimum": 1,
              "type": "integer"
            }
          }
        ],
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/PutWorkspacesWorkspaceIdPagesPageIdLabelsPayload"
              }
            }
          },
          "required": true
        },
        "responses": {
          "200": {
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/PutWorkspacesWorkspaceIdPagesPageIdLabelsResult"
                }
              }
            },
            "description": "Set labels for page response."
          },
          "400": {
            "$ref": "#/components/responses/InvalidRequestError"
          },
          "401": {
            "$ref": "#/components/responses/AuthenticationError"
          },
          "403": {
            "$ref": "#/components/responses/PermissionError"
          },
          "404": {
            "$ref": "#/components/responses/NotFoundError"
          },
          "413": {
            "$ref": "#/components/responses/PayloadTooLargeError"
          },
          "415": {
            "$ref": "#/components/responses/UnsupportedMediaTypeError"
          },
          "429": {
            "$ref": "#/components/responses/RateLimitError"
          },
          "500": {
            "$ref": "#/components/responses/InternalError"
          }
        },
        "security": [
          {
            "BearerAuth": []
          }
        ],
        "summary": "Set labels for page",
        "tags": [
          "Knowledge"
        ],
        "x-required-scopes": [
          "pages:write"
        ]
      }
    },
    "/workspaces/{workspace_id}/pages/{page_id}/labels/{label_id}": {
      "delete": {
        "description": "Remove label from page. The server verifies resource ownership and deletion preconditions before removing the resource.",
        "operationId": "deleteWorkspacesWorkspaceIdPagesPageIdLabelsLabelId",
        "parameters": [
          {
            "description": "The workspace identifier.",
            "in": "path",
            "name": "workspace_id",
            "required": true,
            "schema": {
              "minimum": 1,
              "type": "integer"
            }
          },
          {
            "description": "The page identifier.",
            "in": "path",
            "name": "page_id",
            "required": true,
            "schema": {
              "minimum": 1,
              "type": "integer"
            }
          },
          {
            "description": "The label identifier.",
            "in": "path",
            "name": "label_id",
            "required": true,
            "schema": {
              "minimum": 1,
              "type": "integer"
            }
          }
        ],
        "responses": {
          "204": {
            "description": "Request completed successfully with no response body."
          },
          "401": {
            "$ref": "#/components/responses/AuthenticationError"
          },
          "403": {
            "$ref": "#/components/responses/PermissionError"
          },
          "404": {
            "$ref": "#/components/responses/NotFoundError"
          },
          "429": {
            "$ref": "#/components/responses/RateLimitError"
          },
          "500": {
            "$ref": "#/components/responses/InternalError"
          }
        },
        "security": [
          {
            "BearerAuth": []
          }
        ],
        "summary": "Remove label from page",
        "tags": [
          "Knowledge"
        ],
        "x-required-scopes": [
          "pages:write"
        ]
      }
    },
    "/workspaces/{workspace_id}/pages/{page_id}/move": {
      "post": {
        "description": "Move page. The server validates resource ownership and command preconditions before persisting changes. Unknown JSON fields are rejected when the operation accepts a body.",
        "operationId": "postWorkspacesWorkspaceIdPagesPageIdMove",
        "parameters": [
          {
            "description": "The workspace identifier.",
            "in": "path",
            "name": "workspace_id",
            "required": true,
            "schema": {
              "minimum": 1,
              "type": "integer"
            }
          },
          {
            "description": "The page identifier.",
            "in": "path",
            "name": "page_id",
            "required": true,
            "schema": {
              "minimum": 1,
              "type": "integer"
            }
          }
        ],
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/PostWorkspacesWorkspaceIdPagesPageIdMovePayload"
              }
            }
          },
          "required": true
        },
        "responses": {
          "200": {
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/PostWorkspacesWorkspaceIdPagesPageIdMoveResult"
                }
              }
            },
            "description": "Move page response."
          },
          "400": {
            "$ref": "#/components/responses/InvalidRequestError"
          },
          "401": {
            "$ref": "#/components/responses/AuthenticationError"
          },
          "403": {
            "$ref": "#/components/responses/PermissionError"
          },
          "404": {
            "$ref": "#/components/responses/NotFoundError"
          },
          "413": {
            "$ref": "#/components/responses/PayloadTooLargeError"
          },
          "415": {
            "$ref": "#/components/responses/UnsupportedMediaTypeError"
          },
          "429": {
            "$ref": "#/components/responses/RateLimitError"
          },
          "500": {
            "$ref": "#/components/responses/InternalError"
          }
        },
        "security": [
          {
            "BearerAuth": []
          }
        ],
        "summary": "Move page",
        "tags": [
          "Knowledge"
        ],
        "x-required-scopes": [
          "pages:write"
        ]
      }
    },
    "/workspaces/{workspace_id}/pages/{page_id}/permissions": {
      "get": {
        "description": "Get page permissions. Results include only resources visible to the authenticated caller; collections use their documented stable order and bounds.",
        "operationId": "getWorkspacesWorkspaceIdPagesPageIdPermissions",
        "parameters": [
          {
            "description": "The workspace identifier.",
            "in": "path",
            "name": "workspace_id",
            "required": true,
            "schema": {
              "minimum": 1,
              "type": "integer"
            }
          },
          {
            "description": "The page identifier.",
            "in": "path",
            "name": "page_id",
            "required": true,
            "schema": {
              "minimum": 1,
              "type": "integer"
            }
          }
        ],
        "responses": {
          "200": {
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/GetWorkspacesWorkspaceIdPagesPageIdPermissionsResult"
                }
              }
            },
            "description": "Get page permissions response."
          },
          "401": {
            "$ref": "#/components/responses/AuthenticationError"
          },
          "403": {
            "$ref": "#/components/responses/PermissionError"
          },
          "404": {
            "$ref": "#/components/responses/NotFoundError"
          },
          "429": {
            "$ref": "#/components/responses/RateLimitError"
          },
          "500": {
            "$ref": "#/components/responses/InternalError"
          }
        },
        "security": [
          {
            "BearerAuth": []
          }
        ],
        "summary": "Get page permissions",
        "tags": [
          "Knowledge"
        ],
        "x-required-scopes": [
          "pages:read"
        ]
      },
      "post": {
        "description": "Grant page permission. The server validates resource ownership and command preconditions before persisting changes. Unknown JSON fields are rejected when the operation accepts a body.",
        "operationId": "postWorkspacesWorkspaceIdPagesPageIdPermissions",
        "parameters": [
          {
            "description": "The workspace identifier.",
            "in": "path",
            "name": "workspace_id",
            "required": true,
            "schema": {
              "minimum": 1,
              "type": "integer"
            }
          },
          {
            "description": "The page identifier.",
            "in": "path",
            "name": "page_id",
            "required": true,
            "schema": {
              "minimum": 1,
              "type": "integer"
            }
          }
        ],
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/PostWorkspacesWorkspaceIdPagesPageIdPermissionsPayload"
              }
            }
          },
          "required": true
        },
        "responses": {
          "201": {
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/PostWorkspacesWorkspaceIdPagesPageIdPermissionsResult"
                }
              }
            },
            "description": "Grant page permission response."
          },
          "400": {
            "$ref": "#/components/responses/InvalidRequestError"
          },
          "401": {
            "$ref": "#/components/responses/AuthenticationError"
          },
          "403": {
            "$ref": "#/components/responses/PermissionError"
          },
          "404": {
            "$ref": "#/components/responses/NotFoundError"
          },
          "413": {
            "$ref": "#/components/responses/PayloadTooLargeError"
          },
          "415": {
            "$ref": "#/components/responses/UnsupportedMediaTypeError"
          },
          "429": {
            "$ref": "#/components/responses/RateLimitError"
          },
          "500": {
            "$ref": "#/components/responses/InternalError"
          }
        },
        "security": [
          {
            "BearerAuth": []
          }
        ],
        "summary": "Grant page permission",
        "tags": [
          "Knowledge"
        ],
        "x-required-scopes": [
          "pages:write"
        ]
      }
    },
    "/workspaces/{workspace_id}/pages/{page_id}/permissions/{permission_id}": {
      "delete": {
        "description": "Revoke page permission. The server verifies resource ownership and deletion preconditions before removing the resource.",
        "operationId": "deleteWorkspacesWorkspaceIdPagesPageIdPermissionsPermissionId",
        "parameters": [
          {
            "description": "The workspace identifier.",
            "in": "path",
            "name": "workspace_id",
            "required": true,
            "schema": {
              "minimum": 1,
              "type": "integer"
            }
          },
          {
            "description": "The page identifier.",
            "in": "path",
            "name": "page_id",
            "required": true,
            "schema": {
              "minimum": 1,
              "type": "integer"
            }
          },
          {
            "description": "The permission identifier.",
            "in": "path",
            "name": "permission_id",
            "required": true,
            "schema": {
              "minimum": 1,
              "type": "integer"
            }
          }
        ],
        "responses": {
          "204": {
            "description": "Request completed successfully with no response body."
          },
          "401": {
            "$ref": "#/components/responses/AuthenticationError"
          },
          "403": {
            "$ref": "#/components/responses/PermissionError"
          },
          "404": {
            "$ref": "#/components/responses/NotFoundError"
          },
          "429": {
            "$ref": "#/components/responses/RateLimitError"
          },
          "500": {
            "$ref": "#/components/responses/InternalError"
          }
        },
        "security": [
          {
            "BearerAuth": []
          }
        ],
        "summary": "Revoke page permission",
        "tags": [
          "Knowledge"
        ],
        "x-required-scopes": [
          "pages:write"
        ]
      }
    },
    "/workspaces/{workspace_id}/pages/{page_id}/unarchive": {
      "post": {
        "description": "Unarchive page. The server validates resource ownership and command preconditions before persisting changes. Unknown JSON fields are rejected when the operation accepts a body.",
        "operationId": "postWorkspacesWorkspaceIdPagesPageIdUnarchive",
        "parameters": [
          {
            "description": "The workspace identifier.",
            "in": "path",
            "name": "workspace_id",
            "required": true,
            "schema": {
              "minimum": 1,
              "type": "integer"
            }
          },
          {
            "description": "The page identifier.",
            "in": "path",
            "name": "page_id",
            "required": true,
            "schema": {
              "minimum": 1,
              "type": "integer"
            }
          }
        ],
        "responses": {
          "200": {
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/PostWorkspacesWorkspaceIdPagesPageIdUnarchiveResult"
                }
              }
            },
            "description": "Unarchive page response."
          },
          "401": {
            "$ref": "#/components/responses/AuthenticationError"
          },
          "403": {
            "$ref": "#/components/responses/PermissionError"
          },
          "404": {
            "$ref": "#/components/responses/NotFoundError"
          },
          "429": {
            "$ref": "#/components/responses/RateLimitError"
          },
          "500": {
            "$ref": "#/components/responses/InternalError"
          }
        },
        "security": [
          {
            "BearerAuth": []
          }
        ],
        "summary": "Unarchive page",
        "tags": [
          "Knowledge"
        ],
        "x-required-scopes": [
          "pages:write"
        ]
      }
    },
    "/workspaces/{workspace_id}/priorities": {
      "get": {
        "description": "List workspace priorities. Results include only resources visible to the authenticated caller; collections use their documented stable order and bounds.",
        "operationId": "getWorkspacesWorkspaceIdPriorities",
        "parameters": [
          {
            "description": "The workspace identifier.",
            "in": "path",
            "name": "workspace_id",
            "required": true,
            "schema": {
              "minimum": 1,
              "type": "integer"
            }
          }
        ],
        "responses": {
          "200": {
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/GetWorkspacesWorkspaceIdPrioritiesResult"
                }
              }
            },
            "description": "List workspace priorities response."
          },
          "401": {
            "$ref": "#/components/responses/AuthenticationError"
          },
          "403": {
            "$ref": "#/components/responses/PermissionError"
          },
          "404": {
            "$ref": "#/components/responses/NotFoundError"
          },
          "429": {
            "$ref": "#/components/responses/RateLimitError"
          },
          "500": {
            "$ref": "#/components/responses/InternalError"
          }
        },
        "security": [
          {
            "BearerAuth": []
          }
        ],
        "summary": "List workspace priorities",
        "tags": [
          "Workspace configuration"
        ],
        "x-required-scopes": [
          "workspaces:read"
        ]
      }
    },
    "/workspaces/{workspace_id}/recurrence-rules": {
      "get": {
        "description": "List workspace recurrences. Results include only resources visible to the authenticated caller; collections use their documented stable order and bounds.",
        "operationId": "getWorkspacesWorkspaceIdRecurrenceRules",
        "parameters": [
          {
            "description": "The workspace identifier.",
            "in": "path",
            "name": "workspace_id",
            "required": true,
            "schema": {
              "minimum": 1,
              "type": "integer"
            }
          }
        ],
        "responses": {
          "200": {
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/GetWorkspacesWorkspaceIdRecurrenceRulesResult"
                }
              }
            },
            "description": "List workspace recurrences response."
          },
          "401": {
            "$ref": "#/components/responses/AuthenticationError"
          },
          "403": {
            "$ref": "#/components/responses/PermissionError"
          },
          "404": {
            "$ref": "#/components/responses/NotFoundError"
          },
          "429": {
            "$ref": "#/components/responses/RateLimitError"
          },
          "500": {
            "$ref": "#/components/responses/InternalError"
          }
        },
        "security": [
          {
            "BearerAuth": []
          }
        ],
        "summary": "List workspace recurrences",
        "tags": [
          "Work items"
        ],
        "x-required-scopes": [
          "items:read"
        ]
      }
    },
    "/workspaces/{workspace_id}/statuses": {
      "get": {
        "description": "List workspace statuses. Results include only resources visible to the authenticated caller; collections use their documented stable order and bounds.",
        "operationId": "getWorkspacesWorkspaceIdStatuses",
        "parameters": [
          {
            "description": "The workspace identifier.",
            "in": "path",
            "name": "workspace_id",
            "required": true,
            "schema": {
              "minimum": 1,
              "type": "integer"
            }
          },
          {
            "description": "Filter by item type identifier.",
            "in": "query",
            "name": "item_type_id",
            "required": false,
            "schema": {
              "minimum": 1,
              "type": "integer"
            }
          }
        ],
        "responses": {
          "200": {
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/GetWorkspacesWorkspaceIdStatusesResult"
                }
              }
            },
            "description": "List workspace statuses response."
          },
          "401": {
            "$ref": "#/components/responses/AuthenticationError"
          },
          "403": {
            "$ref": "#/components/responses/PermissionError"
          },
          "404": {
            "$ref": "#/components/responses/NotFoundError"
          },
          "429": {
            "$ref": "#/components/responses/RateLimitError"
          },
          "500": {
            "$ref": "#/components/responses/InternalError"
          }
        },
        "security": [
          {
            "BearerAuth": []
          }
        ],
        "summary": "List workspace statuses",
        "tags": [
          "Workspace configuration"
        ],
        "x-required-scopes": [
          "workspaces:read"
        ]
      }
    },
    "/workspaces/{workspace_id}/test-cases": {
      "get": {
        "description": "List test cases. Results include only resources visible to the authenticated caller; collections use their documented stable order and bounds.",
        "operationId": "getWorkspacesWorkspaceIdTestCases",
        "parameters": [
          {
            "description": "The workspace identifier.",
            "in": "path",
            "name": "workspace_id",
            "required": true,
            "schema": {
              "minimum": 1,
              "type": "integer"
            }
          },
          {
            "description": "One-based page number.",
            "in": "query",
            "name": "page",
            "required": false,
            "schema": {
              "default": 1,
              "minimum": 1,
              "type": "integer"
            }
          },
          {
            "description": "Maximum number of resources to return.",
            "in": "query",
            "name": "page_size",
            "required": false,
            "schema": {
              "default": 50,
              "maximum": 100,
              "minimum": 1,
              "type": "integer"
            }
          },
          {
            "description": "Case-insensitive test-case search.",
            "in": "query",
            "name": "q",
            "required": false,
            "schema": {
              "type": "string"
            }
          },
          {
            "description": "Restricts test cases to one label.",
            "in": "query",
            "name": "label_id",
            "required": false,
            "schema": {
              "minimum": 1,
              "type": "integer"
            }
          },
          {
            "description": "Restricts test cases to one folder; null selects unfiled cases.",
            "in": "query",
            "name": "folder_id",
            "required": false,
            "schema": {
              "minimum": 1,
              "type": "integer"
            }
          },
          {
            "description": "Whether to ignore the folder filter.",
            "in": "query",
            "name": "all",
            "required": false,
            "schema": {
              "default": false,
              "type": "boolean"
            }
          }
        ],
        "responses": {
          "200": {
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/GetWorkspacesWorkspaceIdTestCasesResult"
                }
              }
            },
            "description": "List test cases response."
          },
          "401": {
            "$ref": "#/components/responses/AuthenticationError"
          },
          "403": {
            "$ref": "#/components/responses/PermissionError"
          },
          "404": {
            "$ref": "#/components/responses/NotFoundError"
          },
          "429": {
            "$ref": "#/components/responses/RateLimitError"
          },
          "500": {
            "$ref": "#/components/responses/InternalError"
          }
        },
        "security": [
          {
            "BearerAuth": []
          }
        ],
        "summary": "List test cases",
        "tags": [
          "Test management"
        ],
        "x-required-scopes": [
          "tests:read"
        ]
      },
      "post": {
        "description": "Create test case. The server validates resource ownership and command preconditions before persisting changes. Unknown JSON fields are rejected when the operation accepts a body.",
        "operationId": "postWorkspacesWorkspaceIdTestCases",
        "parameters": [
          {
            "description": "The workspace identifier.",
            "in": "path",
            "name": "workspace_id",
            "required": true,
            "schema": {
              "minimum": 1,
              "type": "integer"
            }
          }
        ],
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/PostWorkspacesWorkspaceIdTestCasesPayload"
              }
            }
          },
          "required": true
        },
        "responses": {
          "201": {
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/PostWorkspacesWorkspaceIdTestCasesResult"
                }
              }
            },
            "description": "Create test case response."
          },
          "400": {
            "$ref": "#/components/responses/InvalidRequestError"
          },
          "401": {
            "$ref": "#/components/responses/AuthenticationError"
          },
          "403": {
            "$ref": "#/components/responses/PermissionError"
          },
          "404": {
            "$ref": "#/components/responses/NotFoundError"
          },
          "413": {
            "$ref": "#/components/responses/PayloadTooLargeError"
          },
          "415": {
            "$ref": "#/components/responses/UnsupportedMediaTypeError"
          },
          "429": {
            "$ref": "#/components/responses/RateLimitError"
          },
          "500": {
            "$ref": "#/components/responses/InternalError"
          }
        },
        "security": [
          {
            "BearerAuth": []
          }
        ],
        "summary": "Create test case",
        "tags": [
          "Test management"
        ],
        "x-required-scopes": [
          "tests:write"
        ]
      }
    },
    "/workspaces/{workspace_id}/test-cases/reorder": {
      "post": {
        "description": "Reorder test cases. The server validates resource ownership and command preconditions before persisting changes. Unknown JSON fields are rejected when the operation accepts a body.",
        "operationId": "postWorkspacesWorkspaceIdTestCasesReorder",
        "parameters": [
          {
            "description": "The workspace identifier.",
            "in": "path",
            "name": "workspace_id",
            "required": true,
            "schema": {
              "minimum": 1,
              "type": "integer"
            }
          }
        ],
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/PostWorkspacesWorkspaceIdTestCasesReorderPayload"
              }
            }
          },
          "required": true
        },
        "responses": {
          "200": {
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/PostWorkspacesWorkspaceIdTestCasesReorderResult"
                }
              }
            },
            "description": "Reorder test cases response."
          },
          "400": {
            "$ref": "#/components/responses/InvalidRequestError"
          },
          "401": {
            "$ref": "#/components/responses/AuthenticationError"
          },
          "403": {
            "$ref": "#/components/responses/PermissionError"
          },
          "404": {
            "$ref": "#/components/responses/NotFoundError"
          },
          "413": {
            "$ref": "#/components/responses/PayloadTooLargeError"
          },
          "415": {
            "$ref": "#/components/responses/UnsupportedMediaTypeError"
          },
          "429": {
            "$ref": "#/components/responses/RateLimitError"
          },
          "500": {
            "$ref": "#/components/responses/InternalError"
          }
        },
        "security": [
          {
            "BearerAuth": []
          }
        ],
        "summary": "Reorder test cases",
        "tags": [
          "Test management"
        ],
        "x-required-scopes": [
          "tests:write"
        ]
      }
    },
    "/workspaces/{workspace_id}/test-cases/{test_case_id}": {
      "delete": {
        "description": "Delete test case. The server verifies resource ownership and deletion preconditions before removing the resource.",
        "operationId": "deleteWorkspacesWorkspaceIdTestCasesTestCaseId",
        "parameters": [
          {
            "description": "The workspace identifier.",
            "in": "path",
            "name": "workspace_id",
            "required": true,
            "schema": {
              "minimum": 1,
              "type": "integer"
            }
          },
          {
            "description": "The test case identifier.",
            "in": "path",
            "name": "test_case_id",
            "required": true,
            "schema": {
              "minimum": 1,
              "type": "integer"
            }
          }
        ],
        "responses": {
          "204": {
            "description": "Request completed successfully with no response body."
          },
          "401": {
            "$ref": "#/components/responses/AuthenticationError"
          },
          "403": {
            "$ref": "#/components/responses/PermissionError"
          },
          "404": {
            "$ref": "#/components/responses/NotFoundError"
          },
          "429": {
            "$ref": "#/components/responses/RateLimitError"
          },
          "500": {
            "$ref": "#/components/responses/InternalError"
          }
        },
        "security": [
          {
            "BearerAuth": []
          }
        ],
        "summary": "Delete test case",
        "tags": [
          "Test management"
        ],
        "x-required-scopes": [
          "tests:write"
        ]
      },
      "get": {
        "description": "Get test case. Results include only resources visible to the authenticated caller; collections use their documented stable order and bounds.",
        "operationId": "getWorkspacesWorkspaceIdTestCasesTestCaseId",
        "parameters": [
          {
            "description": "The workspace identifier.",
            "in": "path",
            "name": "workspace_id",
            "required": true,
            "schema": {
              "minimum": 1,
              "type": "integer"
            }
          },
          {
            "description": "The test case identifier.",
            "in": "path",
            "name": "test_case_id",
            "required": true,
            "schema": {
              "minimum": 1,
              "type": "integer"
            }
          }
        ],
        "responses": {
          "200": {
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/GetWorkspacesWorkspaceIdTestCasesTestCaseIdResult"
                }
              }
            },
            "description": "Get test case response."
          },
          "401": {
            "$ref": "#/components/responses/AuthenticationError"
          },
          "403": {
            "$ref": "#/components/responses/PermissionError"
          },
          "404": {
            "$ref": "#/components/responses/NotFoundError"
          },
          "429": {
            "$ref": "#/components/responses/RateLimitError"
          },
          "500": {
            "$ref": "#/components/responses/InternalError"
          }
        },
        "security": [
          {
            "BearerAuth": []
          }
        ],
        "summary": "Get test case",
        "tags": [
          "Test management"
        ],
        "x-required-scopes": [
          "tests:read"
        ]
      },
      "patch": {
        "description": "Update test case. The operation uses JSON Merge Patch: omitted fields remain unchanged and documented nullable fields accept null. Unknown fields are rejected.",
        "operationId": "patchWorkspacesWorkspaceIdTestCasesTestCaseId",
        "parameters": [
          {
            "description": "The workspace identifier.",
            "in": "path",
            "name": "workspace_id",
            "required": true,
            "schema": {
              "minimum": 1,
              "type": "integer"
            }
          },
          {
            "description": "The test case identifier.",
            "in": "path",
            "name": "test_case_id",
            "required": true,
            "schema": {
              "minimum": 1,
              "type": "integer"
            }
          }
        ],
        "requestBody": {
          "content": {
            "application/merge-patch+json": {
              "schema": {
                "$ref": "#/components/schemas/PatchWorkspacesWorkspaceIdTestCasesTestCaseIdPayload"
              }
            }
          },
          "required": true
        },
        "responses": {
          "200": {
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/PatchWorkspacesWorkspaceIdTestCasesTestCaseIdResult"
                }
              }
            },
            "description": "Update test case response."
          },
          "400": {
            "$ref": "#/components/responses/InvalidRequestError"
          },
          "401": {
            "$ref": "#/components/responses/AuthenticationError"
          },
          "403": {
            "$ref": "#/components/responses/PermissionError"
          },
          "404": {
            "$ref": "#/components/responses/NotFoundError"
          },
          "413": {
            "$ref": "#/components/responses/PayloadTooLargeError"
          },
          "415": {
            "$ref": "#/components/responses/UnsupportedMediaTypeError"
          },
          "429": {
            "$ref": "#/components/responses/RateLimitError"
          },
          "500": {
            "$ref": "#/components/responses/InternalError"
          }
        },
        "security": [
          {
            "BearerAuth": []
          }
        ],
        "summary": "Update test case",
        "tags": [
          "Test management"
        ],
        "x-required-scopes": [
          "tests:write"
        ]
      }
    },
    "/workspaces/{workspace_id}/test-cases/{test_case_id}/connections": {
      "get": {
        "description": "Get test case connections. Results include only resources visible to the authenticated caller; collections use their documented stable order and bounds.",
        "operationId": "getWorkspacesWorkspaceIdTestCasesTestCaseIdConnections",
        "parameters": [
          {
            "description": "The workspace identifier.",
            "in": "path",
            "name": "workspace_id",
            "required": true,
            "schema": {
              "minimum": 1,
              "type": "integer"
            }
          },
          {
            "description": "The test case identifier.",
            "in": "path",
            "name": "test_case_id",
            "required": true,
            "schema": {
              "minimum": 1,
              "type": "integer"
            }
          }
        ],
        "responses": {
          "200": {
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/GetWorkspacesWorkspaceIdTestCasesTestCaseIdConnectionsResult"
                }
              }
            },
            "description": "Get test case connections response."
          },
          "401": {
            "$ref": "#/components/responses/AuthenticationError"
          },
          "403": {
            "$ref": "#/components/responses/PermissionError"
          },
          "404": {
            "$ref": "#/components/responses/NotFoundError"
          },
          "429": {
            "$ref": "#/components/responses/RateLimitError"
          },
          "500": {
            "$ref": "#/components/responses/InternalError"
          }
        },
        "security": [
          {
            "BearerAuth": []
          }
        ],
        "summary": "Get test case connections",
        "tags": [
          "Test management"
        ],
        "x-required-scopes": [
          "tests:read"
        ]
      }
    },
    "/workspaces/{workspace_id}/test-cases/{test_case_id}/labels": {
      "get": {
        "description": "List test case labels. Results include only resources visible to the authenticated caller; collections use their documented stable order and bounds.",
        "operationId": "getWorkspacesWorkspaceIdTestCasesTestCaseIdLabels",
        "parameters": [
          {
            "description": "The workspace identifier.",
            "in": "path",
            "name": "workspace_id",
            "required": true,
            "schema": {
              "minimum": 1,
              "type": "integer"
            }
          },
          {
            "description": "The test case identifier.",
            "in": "path",
            "name": "test_case_id",
            "required": true,
            "schema": {
              "minimum": 1,
              "type": "integer"
            }
          }
        ],
        "responses": {
          "200": {
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/GetWorkspacesWorkspaceIdTestCasesTestCaseIdLabelsResult"
                }
              }
            },
            "description": "List test case labels response."
          },
          "401": {
            "$ref": "#/components/responses/AuthenticationError"
          },
          "403": {
            "$ref": "#/components/responses/PermissionError"
          },
          "404": {
            "$ref": "#/components/responses/NotFoundError"
          },
          "429": {
            "$ref": "#/components/responses/RateLimitError"
          },
          "500": {
            "$ref": "#/components/responses/InternalError"
          }
        },
        "security": [
          {
            "BearerAuth": []
          }
        ],
        "summary": "List test case labels",
        "tags": [
          "Test management"
        ],
        "x-required-scopes": [
          "tests:read"
        ]
      },
      "post": {
        "description": "Add test case label. The server validates resource ownership and command preconditions before persisting changes. Unknown JSON fields are rejected when the operation accepts a body.",
        "operationId": "postWorkspacesWorkspaceIdTestCasesTestCaseIdLabels",
        "parameters": [
          {
            "description": "The workspace identifier.",
            "in": "path",
            "name": "workspace_id",
            "required": true,
            "schema": {
              "minimum": 1,
              "type": "integer"
            }
          },
          {
            "description": "The test case identifier.",
            "in": "path",
            "name": "test_case_id",
            "required": true,
            "schema": {
              "minimum": 1,
              "type": "integer"
            }
          }
        ],
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/PostWorkspacesWorkspaceIdTestCasesTestCaseIdLabelsPayload"
              }
            }
          },
          "required": true
        },
        "responses": {
          "200": {
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/PostWorkspacesWorkspaceIdTestCasesTestCaseIdLabelsResult"
                }
              }
            },
            "description": "Add test case label response."
          },
          "400": {
            "$ref": "#/components/responses/InvalidRequestError"
          },
          "401": {
            "$ref": "#/components/responses/AuthenticationError"
          },
          "403": {
            "$ref": "#/components/responses/PermissionError"
          },
          "404": {
            "$ref": "#/components/responses/NotFoundError"
          },
          "413": {
            "$ref": "#/components/responses/PayloadTooLargeError"
          },
          "415": {
            "$ref": "#/components/responses/UnsupportedMediaTypeError"
          },
          "429": {
            "$ref": "#/components/responses/RateLimitError"
          },
          "500": {
            "$ref": "#/components/responses/InternalError"
          }
        },
        "security": [
          {
            "BearerAuth": []
          }
        ],
        "summary": "Add test case label",
        "tags": [
          "Test management"
        ],
        "x-required-scopes": [
          "tests:write"
        ]
      }
    },
    "/workspaces/{workspace_id}/test-cases/{test_case_id}/labels/{label_id}": {
      "delete": {
        "description": "Remove test case label. The server verifies resource ownership and deletion preconditions before removing the resource.",
        "operationId": "deleteWorkspacesWorkspaceIdTestCasesTestCaseIdLabelsLabelId",
        "parameters": [
          {
            "description": "The workspace identifier.",
            "in": "path",
            "name": "workspace_id",
            "required": true,
            "schema": {
              "minimum": 1,
              "type": "integer"
            }
          },
          {
            "description": "The test case identifier.",
            "in": "path",
            "name": "test_case_id",
            "required": true,
            "schema": {
              "minimum": 1,
              "type": "integer"
            }
          },
          {
            "description": "The label identifier.",
            "in": "path",
            "name": "label_id",
            "required": true,
            "schema": {
              "minimum": 1,
              "type": "integer"
            }
          }
        ],
        "responses": {
          "204": {
            "description": "Request completed successfully with no response body."
          },
          "401": {
            "$ref": "#/components/responses/AuthenticationError"
          },
          "403": {
            "$ref": "#/components/responses/PermissionError"
          },
          "404": {
            "$ref": "#/components/responses/NotFoundError"
          },
          "429": {
            "$ref": "#/components/responses/RateLimitError"
          },
          "500": {
            "$ref": "#/components/responses/InternalError"
          }
        },
        "security": [
          {
            "BearerAuth": []
          }
        ],
        "summary": "Remove test case label",
        "tags": [
          "Test management"
        ],
        "x-required-scopes": [
          "tests:write"
        ]
      }
    },
    "/workspaces/{workspace_id}/test-cases/{test_case_id}/move": {
      "post": {
        "description": "Move test case. The server validates resource ownership and command preconditions before persisting changes. Unknown JSON fields are rejected when the operation accepts a body.",
        "operationId": "postWorkspacesWorkspaceIdTestCasesTestCaseIdMove",
        "parameters": [
          {
            "description": "The workspace identifier.",
            "in": "path",
            "name": "workspace_id",
            "required": true,
            "schema": {
              "minimum": 1,
              "type": "integer"
            }
          },
          {
            "description": "The test case identifier.",
            "in": "path",
            "name": "test_case_id",
            "required": true,
            "schema": {
              "minimum": 1,
              "type": "integer"
            }
          }
        ],
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/PostWorkspacesWorkspaceIdTestCasesTestCaseIdMovePayload"
              }
            }
          },
          "required": true
        },
        "responses": {
          "200": {
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/PostWorkspacesWorkspaceIdTestCasesTestCaseIdMoveResult"
                }
              }
            },
            "description": "Move test case response."
          },
          "400": {
            "$ref": "#/components/responses/InvalidRequestError"
          },
          "401": {
            "$ref": "#/components/responses/AuthenticationError"
          },
          "403": {
            "$ref": "#/components/responses/PermissionError"
          },
          "404": {
            "$ref": "#/components/responses/NotFoundError"
          },
          "413": {
            "$ref": "#/components/responses/PayloadTooLargeError"
          },
          "415": {
            "$ref": "#/components/responses/UnsupportedMediaTypeError"
          },
          "429": {
            "$ref": "#/components/responses/RateLimitError"
          },
          "500": {
            "$ref": "#/components/responses/InternalError"
          }
        },
        "security": [
          {
            "BearerAuth": []
          }
        ],
        "summary": "Move test case",
        "tags": [
          "Test management"
        ],
        "x-required-scopes": [
          "tests:write"
        ]
      }
    },
    "/workspaces/{workspace_id}/test-cases/{test_case_id}/steps": {
      "get": {
        "description": "List test steps. Results include only resources visible to the authenticated caller; collections use their documented stable order and bounds.",
        "operationId": "getWorkspacesWorkspaceIdTestCasesTestCaseIdSteps",
        "parameters": [
          {
            "description": "The workspace identifier.",
            "in": "path",
            "name": "workspace_id",
            "required": true,
            "schema": {
              "minimum": 1,
              "type": "integer"
            }
          },
          {
            "description": "The test case identifier.",
            "in": "path",
            "name": "test_case_id",
            "required": true,
            "schema": {
              "minimum": 1,
              "type": "integer"
            }
          }
        ],
        "responses": {
          "200": {
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/GetWorkspacesWorkspaceIdTestCasesTestCaseIdStepsResult"
                }
              }
            },
            "description": "List test steps response."
          },
          "401": {
            "$ref": "#/components/responses/AuthenticationError"
          },
          "403": {
            "$ref": "#/components/responses/PermissionError"
          },
          "404": {
            "$ref": "#/components/responses/NotFoundError"
          },
          "429": {
            "$ref": "#/components/responses/RateLimitError"
          },
          "500": {
            "$ref": "#/components/responses/InternalError"
          }
        },
        "security": [
          {
            "BearerAuth": []
          }
        ],
        "summary": "List test steps",
        "tags": [
          "Test management"
        ],
        "x-required-scopes": [
          "tests:read"
        ]
      },
      "post": {
        "description": "Create test step. The server validates resource ownership and command preconditions before persisting changes. Unknown JSON fields are rejected when the operation accepts a body.",
        "operationId": "postWorkspacesWorkspaceIdTestCasesTestCaseIdSteps",
        "parameters": [
          {
            "description": "The workspace identifier.",
            "in": "path",
            "name": "workspace_id",
            "required": true,
            "schema": {
              "minimum": 1,
              "type": "integer"
            }
          },
          {
            "description": "The test case identifier.",
            "in": "path",
            "name": "test_case_id",
            "required": true,
            "schema": {
              "minimum": 1,
              "type": "integer"
            }
          }
        ],
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/PostWorkspacesWorkspaceIdTestCasesTestCaseIdStepsPayload"
              }
            }
          },
          "required": true
        },
        "responses": {
          "201": {
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/PostWorkspacesWorkspaceIdTestCasesTestCaseIdStepsResult"
                }
              }
            },
            "description": "Create test step response."
          },
          "400": {
            "$ref": "#/components/responses/InvalidRequestError"
          },
          "401": {
            "$ref": "#/components/responses/AuthenticationError"
          },
          "403": {
            "$ref": "#/components/responses/PermissionError"
          },
          "404": {
            "$ref": "#/components/responses/NotFoundError"
          },
          "413": {
            "$ref": "#/components/responses/PayloadTooLargeError"
          },
          "415": {
            "$ref": "#/components/responses/UnsupportedMediaTypeError"
          },
          "429": {
            "$ref": "#/components/responses/RateLimitError"
          },
          "500": {
            "$ref": "#/components/responses/InternalError"
          }
        },
        "security": [
          {
            "BearerAuth": []
          }
        ],
        "summary": "Create test step",
        "tags": [
          "Test management"
        ],
        "x-required-scopes": [
          "tests:write"
        ]
      }
    },
    "/workspaces/{workspace_id}/test-cases/{test_case_id}/steps/reorder": {
      "post": {
        "description": "Reorder test steps. The server validates resource ownership and command preconditions before persisting changes. Unknown JSON fields are rejected when the operation accepts a body.",
        "operationId": "postWorkspacesWorkspaceIdTestCasesTestCaseIdStepsReorder",
        "parameters": [
          {
            "description": "The workspace identifier.",
            "in": "path",
            "name": "workspace_id",
            "required": true,
            "schema": {
              "minimum": 1,
              "type": "integer"
            }
          },
          {
            "description": "The test case identifier.",
            "in": "path",
            "name": "test_case_id",
            "required": true,
            "schema": {
              "minimum": 1,
              "type": "integer"
            }
          }
        ],
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/PostWorkspacesWorkspaceIdTestCasesTestCaseIdStepsReorderPayload"
              }
            }
          },
          "required": true
        },
        "responses": {
          "200": {
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/PostWorkspacesWorkspaceIdTestCasesTestCaseIdStepsReorderResult"
                }
              }
            },
            "description": "Reorder test steps response."
          },
          "400": {
            "$ref": "#/components/responses/InvalidRequestError"
          },
          "401": {
            "$ref": "#/components/responses/AuthenticationError"
          },
          "403": {
            "$ref": "#/components/responses/PermissionError"
          },
          "404": {
            "$ref": "#/components/responses/NotFoundError"
          },
          "413": {
            "$ref": "#/components/responses/PayloadTooLargeError"
          },
          "415": {
            "$ref": "#/components/responses/UnsupportedMediaTypeError"
          },
          "429": {
            "$ref": "#/components/responses/RateLimitError"
          },
          "500": {
            "$ref": "#/components/responses/InternalError"
          }
        },
        "security": [
          {
            "BearerAuth": []
          }
        ],
        "summary": "Reorder test steps",
        "tags": [
          "Test management"
        ],
        "x-required-scopes": [
          "tests:write"
        ]
      }
    },
    "/workspaces/{workspace_id}/test-cases/{test_case_id}/steps/{step_id}": {
      "delete": {
        "description": "Delete test step. The server verifies resource ownership and deletion preconditions before removing the resource.",
        "operationId": "deleteWorkspacesWorkspaceIdTestCasesTestCaseIdStepsStepId",
        "parameters": [
          {
            "description": "The workspace identifier.",
            "in": "path",
            "name": "workspace_id",
            "required": true,
            "schema": {
              "minimum": 1,
              "type": "integer"
            }
          },
          {
            "description": "The test case identifier.",
            "in": "path",
            "name": "test_case_id",
            "required": true,
            "schema": {
              "minimum": 1,
              "type": "integer"
            }
          },
          {
            "description": "The step identifier.",
            "in": "path",
            "name": "step_id",
            "required": true,
            "schema": {
              "minimum": 1,
              "type": "integer"
            }
          }
        ],
        "responses": {
          "204": {
            "description": "Request completed successfully with no response body."
          },
          "401": {
            "$ref": "#/components/responses/AuthenticationError"
          },
          "403": {
            "$ref": "#/components/responses/PermissionError"
          },
          "404": {
            "$ref": "#/components/responses/NotFoundError"
          },
          "429": {
            "$ref": "#/components/responses/RateLimitError"
          },
          "500": {
            "$ref": "#/components/responses/InternalError"
          }
        },
        "security": [
          {
            "BearerAuth": []
          }
        ],
        "summary": "Delete test step",
        "tags": [
          "Test management"
        ],
        "x-required-scopes": [
          "tests:write"
        ]
      },
      "patch": {
        "description": "Update test step. The operation uses JSON Merge Patch: omitted fields remain unchanged and documented nullable fields accept null. Unknown fields are rejected.",
        "operationId": "patchWorkspacesWorkspaceIdTestCasesTestCaseIdStepsStepId",
        "parameters": [
          {
            "description": "The workspace identifier.",
            "in": "path",
            "name": "workspace_id",
            "required": true,
            "schema": {
              "minimum": 1,
              "type": "integer"
            }
          },
          {
            "description": "The test case identifier.",
            "in": "path",
            "name": "test_case_id",
            "required": true,
            "schema": {
              "minimum": 1,
              "type": "integer"
            }
          },
          {
            "description": "The step identifier.",
            "in": "path",
            "name": "step_id",
            "required": true,
            "schema": {
              "minimum": 1,
              "type": "integer"
            }
          }
        ],
        "requestBody": {
          "content": {
            "application/merge-patch+json": {
              "schema": {
                "$ref": "#/components/schemas/PatchWorkspacesWorkspaceIdTestCasesTestCaseIdStepsStepIdPayload"
              }
            }
          },
          "required": true
        },
        "responses": {
          "200": {
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/PatchWorkspacesWorkspaceIdTestCasesTestCaseIdStepsStepIdResult"
                }
              }
            },
            "description": "Update test step response."
          },
          "400": {
            "$ref": "#/components/responses/InvalidRequestError"
          },
          "401": {
            "$ref": "#/components/responses/AuthenticationError"
          },
          "403": {
            "$ref": "#/components/responses/PermissionError"
          },
          "404": {
            "$ref": "#/components/responses/NotFoundError"
          },
          "413": {
            "$ref": "#/components/responses/PayloadTooLargeError"
          },
          "415": {
            "$ref": "#/components/responses/UnsupportedMediaTypeError"
          },
          "429": {
            "$ref": "#/components/responses/RateLimitError"
          },
          "500": {
            "$ref": "#/components/responses/InternalError"
          }
        },
        "security": [
          {
            "BearerAuth": []
          }
        ],
        "summary": "Update test step",
        "tags": [
          "Test management"
        ],
        "x-required-scopes": [
          "tests:write"
        ]
      }
    },
    "/workspaces/{workspace_id}/test-coverage/config": {
      "get": {
        "description": "Get workspace test coverage config. Results include only resources visible to the authenticated caller; collections use their documented stable order and bounds.",
        "operationId": "getWorkspacesWorkspaceIdTestCoverageConfig",
        "parameters": [
          {
            "description": "The workspace identifier.",
            "in": "path",
            "name": "workspace_id",
            "required": true,
            "schema": {
              "minimum": 1,
              "type": "integer"
            }
          }
        ],
        "responses": {
          "200": {
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/GetWorkspacesWorkspaceIdTestCoverageConfigResult"
                }
              }
            },
            "description": "Get workspace test coverage config response."
          },
          "401": {
            "$ref": "#/components/responses/AuthenticationError"
          },
          "403": {
            "$ref": "#/components/responses/PermissionError"
          },
          "404": {
            "$ref": "#/components/responses/NotFoundError"
          },
          "429": {
            "$ref": "#/components/responses/RateLimitError"
          },
          "500": {
            "$ref": "#/components/responses/InternalError"
          }
        },
        "security": [
          {
            "BearerAuth": []
          }
        ],
        "summary": "Get workspace test coverage config",
        "tags": [
          "Test management"
        ],
        "x-required-scopes": [
          "tests:read"
        ]
      },
      "post": {
        "description": "Create workspace test coverage config. The server validates resource ownership and command preconditions before persisting changes. Unknown JSON fields are rejected when the operation accepts a body.",
        "operationId": "postWorkspacesWorkspaceIdTestCoverageConfig",
        "parameters": [
          {
            "description": "The workspace identifier.",
            "in": "path",
            "name": "workspace_id",
            "required": true,
            "schema": {
              "minimum": 1,
              "type": "integer"
            }
          }
        ],
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/PostWorkspacesWorkspaceIdTestCoverageConfigPayload"
              }
            }
          },
          "required": true
        },
        "responses": {
          "201": {
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/PostWorkspacesWorkspaceIdTestCoverageConfigResult"
                }
              }
            },
            "description": "Create workspace test coverage config response."
          },
          "400": {
            "$ref": "#/components/responses/InvalidRequestError"
          },
          "401": {
            "$ref": "#/components/responses/AuthenticationError"
          },
          "403": {
            "$ref": "#/components/responses/PermissionError"
          },
          "404": {
            "$ref": "#/components/responses/NotFoundError"
          },
          "413": {
            "$ref": "#/components/responses/PayloadTooLargeError"
          },
          "415": {
            "$ref": "#/components/responses/UnsupportedMediaTypeError"
          },
          "429": {
            "$ref": "#/components/responses/RateLimitError"
          },
          "500": {
            "$ref": "#/components/responses/InternalError"
          }
        },
        "security": [
          {
            "BearerAuth": []
          }
        ],
        "summary": "Create workspace test coverage config",
        "tags": [
          "Test management"
        ],
        "x-required-scopes": [
          "tests:write"
        ]
      }
    },
    "/workspaces/{workspace_id}/test-coverage/config/{config_id}": {
      "delete": {
        "description": "Delete workspace test coverage config. The server verifies resource ownership and deletion preconditions before removing the resource.",
        "operationId": "deleteWorkspacesWorkspaceIdTestCoverageConfigConfigId",
        "parameters": [
          {
            "description": "The workspace identifier.",
            "in": "path",
            "name": "workspace_id",
            "required": true,
            "schema": {
              "minimum": 1,
              "type": "integer"
            }
          },
          {
            "description": "The config identifier.",
            "in": "path",
            "name": "config_id",
            "required": true,
            "schema": {
              "minimum": 1,
              "type": "integer"
            }
          }
        ],
        "responses": {
          "204": {
            "description": "Request completed successfully with no response body."
          },
          "401": {
            "$ref": "#/components/responses/AuthenticationError"
          },
          "403": {
            "$ref": "#/components/responses/PermissionError"
          },
          "404": {
            "$ref": "#/components/responses/NotFoundError"
          },
          "429": {
            "$ref": "#/components/responses/RateLimitError"
          },
          "500": {
            "$ref": "#/components/responses/InternalError"
          }
        },
        "security": [
          {
            "BearerAuth": []
          }
        ],
        "summary": "Delete workspace test coverage config",
        "tags": [
          "Test management"
        ],
        "x-required-scopes": [
          "tests:write"
        ]
      },
      "patch": {
        "description": "Update workspace test coverage config. The operation uses JSON Merge Patch: omitted fields remain unchanged and documented nullable fields accept null. Unknown fields are rejected.",
        "operationId": "patchWorkspacesWorkspaceIdTestCoverageConfigConfigId",
        "parameters": [
          {
            "description": "The workspace identifier.",
            "in": "path",
            "name": "workspace_id",
            "required": true,
            "schema": {
              "minimum": 1,
              "type": "integer"
            }
          },
          {
            "description": "The config identifier.",
            "in": "path",
            "name": "config_id",
            "required": true,
            "schema": {
              "minimum": 1,
              "type": "integer"
            }
          }
        ],
        "requestBody": {
          "content": {
            "application/merge-patch+json": {
              "schema": {
                "$ref": "#/components/schemas/PatchWorkspacesWorkspaceIdTestCoverageConfigConfigIdPayload"
              }
            }
          },
          "required": true
        },
        "responses": {
          "200": {
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/PatchWorkspacesWorkspaceIdTestCoverageConfigConfigIdResult"
                }
              }
            },
            "description": "Update workspace test coverage config response."
          },
          "400": {
            "$ref": "#/components/responses/InvalidRequestError"
          },
          "401": {
            "$ref": "#/components/responses/AuthenticationError"
          },
          "403": {
            "$ref": "#/components/responses/PermissionError"
          },
          "404": {
            "$ref": "#/components/responses/NotFoundError"
          },
          "413": {
            "$ref": "#/components/responses/PayloadTooLargeError"
          },
          "415": {
            "$ref": "#/components/responses/UnsupportedMediaTypeError"
          },
          "429": {
            "$ref": "#/components/responses/RateLimitError"
          },
          "500": {
            "$ref": "#/components/responses/InternalError"
          }
        },
        "security": [
          {
            "BearerAuth": []
          }
        ],
        "summary": "Update workspace test coverage config",
        "tags": [
          "Test management"
        ],
        "x-required-scopes": [
          "tests:write"
        ]
      }
    },
    "/workspaces/{workspace_id}/test-coverage/requirements": {
      "get": {
        "description": "List workspace test coverage requirements. Results include only resources visible to the authenticated caller; collections use their documented stable order and bounds.",
        "operationId": "getWorkspacesWorkspaceIdTestCoverageRequirements",
        "parameters": [
          {
            "description": "The workspace identifier.",
            "in": "path",
            "name": "workspace_id",
            "required": true,
            "schema": {
              "minimum": 1,
              "type": "integer"
            }
          },
          {
            "description": "One-based page number.",
            "in": "query",
            "name": "page",
            "required": false,
            "schema": {
              "default": 1,
              "minimum": 1,
              "type": "integer"
            }
          },
          {
            "description": "Maximum number of resources to return.",
            "in": "query",
            "name": "page_size",
            "required": false,
            "schema": {
              "default": 50,
              "maximum": 100,
              "minimum": 1,
              "type": "integer"
            }
          },
          {
            "description": "Restricts results by coverage state.",
            "in": "query",
            "name": "covered",
            "required": false,
            "schema": {
              "enum": [
                "true",
                "false"
              ],
              "type": "string"
            }
          },
          {
            "description": "Restricts requirements to one item type.",
            "in": "query",
            "name": "item_type_id",
            "required": false,
            "schema": {
              "minimum": 1,
              "type": "integer"
            }
          },
          {
            "description": "Case-insensitive requirement search.",
            "in": "query",
            "name": "search",
            "required": false,
            "schema": {
              "type": "string"
            }
          }
        ],
        "responses": {
          "200": {
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/GetWorkspacesWorkspaceIdTestCoverageRequirementsResult"
                }
              }
            },
            "description": "List workspace test coverage requirements response."
          },
          "401": {
            "$ref": "#/components/responses/AuthenticationError"
          },
          "403": {
            "$ref": "#/components/responses/PermissionError"
          },
          "404": {
            "$ref": "#/components/responses/NotFoundError"
          },
          "429": {
            "$ref": "#/components/responses/RateLimitError"
          },
          "500": {
            "$ref": "#/components/responses/InternalError"
          }
        },
        "security": [
          {
            "BearerAuth": []
          }
        ],
        "summary": "List workspace test coverage requirements",
        "tags": [
          "Test management"
        ],
        "x-required-scopes": [
          "tests:read"
        ]
      }
    },
    "/workspaces/{workspace_id}/test-coverage/summary": {
      "get": {
        "description": "Get workspace test coverage summary. Results include only resources visible to the authenticated caller; collections use their documented stable order and bounds.",
        "operationId": "getWorkspacesWorkspaceIdTestCoverageSummary",
        "parameters": [
          {
            "description": "The workspace identifier.",
            "in": "path",
            "name": "workspace_id",
            "required": true,
            "schema": {
              "minimum": 1,
              "type": "integer"
            }
          }
        ],
        "responses": {
          "200": {
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/GetWorkspacesWorkspaceIdTestCoverageSummaryResult"
                }
              }
            },
            "description": "Get workspace test coverage summary response."
          },
          "401": {
            "$ref": "#/components/responses/AuthenticationError"
          },
          "403": {
            "$ref": "#/components/responses/PermissionError"
          },
          "404": {
            "$ref": "#/components/responses/NotFoundError"
          },
          "429": {
            "$ref": "#/components/responses/RateLimitError"
          },
          "500": {
            "$ref": "#/components/responses/InternalError"
          }
        },
        "security": [
          {
            "BearerAuth": []
          }
        ],
        "summary": "Get workspace test coverage summary",
        "tags": [
          "Test management"
        ],
        "x-required-scopes": [
          "tests:read"
        ]
      }
    },
    "/workspaces/{workspace_id}/test-folders": {
      "get": {
        "description": "List test folders. Results include only resources visible to the authenticated caller; collections use their documented stable order and bounds.",
        "operationId": "getWorkspacesWorkspaceIdTestFolders",
        "parameters": [
          {
            "description": "The workspace identifier.",
            "in": "path",
            "name": "workspace_id",
            "required": true,
            "schema": {
              "minimum": 1,
              "type": "integer"
            }
          },
          {
            "description": "One-based page number.",
            "in": "query",
            "name": "page",
            "required": false,
            "schema": {
              "default": 1,
              "minimum": 1,
              "type": "integer"
            }
          },
          {
            "description": "Maximum number of resources to return.",
            "in": "query",
            "name": "page_size",
            "required": false,
            "schema": {
              "default": 50,
              "maximum": 100,
              "minimum": 1,
              "type": "integer"
            }
          }
        ],
        "responses": {
          "200": {
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/GetWorkspacesWorkspaceIdTestFoldersResult"
                }
              }
            },
            "description": "List test folders response."
          },
          "401": {
            "$ref": "#/components/responses/AuthenticationError"
          },
          "403": {
            "$ref": "#/components/responses/PermissionError"
          },
          "404": {
            "$ref": "#/components/responses/NotFoundError"
          },
          "429": {
            "$ref": "#/components/responses/RateLimitError"
          },
          "500": {
            "$ref": "#/components/responses/InternalError"
          }
        },
        "security": [
          {
            "BearerAuth": []
          }
        ],
        "summary": "List test folders",
        "tags": [
          "Test management"
        ],
        "x-required-scopes": [
          "tests:read"
        ]
      },
      "post": {
        "description": "Create test folder. The server validates resource ownership and command preconditions before persisting changes. Unknown JSON fields are rejected when the operation accepts a body.",
        "operationId": "postWorkspacesWorkspaceIdTestFolders",
        "parameters": [
          {
            "description": "The workspace identifier.",
            "in": "path",
            "name": "workspace_id",
            "required": true,
            "schema": {
              "minimum": 1,
              "type": "integer"
            }
          }
        ],
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/PostWorkspacesWorkspaceIdTestFoldersPayload"
              }
            }
          },
          "required": true
        },
        "responses": {
          "201": {
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/PostWorkspacesWorkspaceIdTestFoldersResult"
                }
              }
            },
            "description": "Create test folder response."
          },
          "400": {
            "$ref": "#/components/responses/InvalidRequestError"
          },
          "401": {
            "$ref": "#/components/responses/AuthenticationError"
          },
          "403": {
            "$ref": "#/components/responses/PermissionError"
          },
          "404": {
            "$ref": "#/components/responses/NotFoundError"
          },
          "413": {
            "$ref": "#/components/responses/PayloadTooLargeError"
          },
          "415": {
            "$ref": "#/components/responses/UnsupportedMediaTypeError"
          },
          "429": {
            "$ref": "#/components/responses/RateLimitError"
          },
          "500": {
            "$ref": "#/components/responses/InternalError"
          }
        },
        "security": [
          {
            "BearerAuth": []
          }
        ],
        "summary": "Create test folder",
        "tags": [
          "Test management"
        ],
        "x-required-scopes": [
          "tests:write"
        ]
      }
    },
    "/workspaces/{workspace_id}/test-folders/reorder": {
      "post": {
        "description": "Reorder test folders. The server validates resource ownership and command preconditions before persisting changes. Unknown JSON fields are rejected when the operation accepts a body.",
        "operationId": "postWorkspacesWorkspaceIdTestFoldersReorder",
        "parameters": [
          {
            "description": "The workspace identifier.",
            "in": "path",
            "name": "workspace_id",
            "required": true,
            "schema": {
              "minimum": 1,
              "type": "integer"
            }
          }
        ],
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/PostWorkspacesWorkspaceIdTestFoldersReorderPayload"
              }
            }
          },
          "required": true
        },
        "responses": {
          "200": {
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/PostWorkspacesWorkspaceIdTestFoldersReorderResult"
                }
              }
            },
            "description": "Reorder test folders response."
          },
          "400": {
            "$ref": "#/components/responses/InvalidRequestError"
          },
          "401": {
            "$ref": "#/components/responses/AuthenticationError"
          },
          "403": {
            "$ref": "#/components/responses/PermissionError"
          },
          "404": {
            "$ref": "#/components/responses/NotFoundError"
          },
          "413": {
            "$ref": "#/components/responses/PayloadTooLargeError"
          },
          "415": {
            "$ref": "#/components/responses/UnsupportedMediaTypeError"
          },
          "429": {
            "$ref": "#/components/responses/RateLimitError"
          },
          "500": {
            "$ref": "#/components/responses/InternalError"
          }
        },
        "security": [
          {
            "BearerAuth": []
          }
        ],
        "summary": "Reorder test folders",
        "tags": [
          "Test management"
        ],
        "x-required-scopes": [
          "tests:write"
        ]
      }
    },
    "/workspaces/{workspace_id}/test-folders/{folder_id}": {
      "delete": {
        "description": "Delete test folder. The server verifies resource ownership and deletion preconditions before removing the resource.",
        "operationId": "deleteWorkspacesWorkspaceIdTestFoldersFolderId",
        "parameters": [
          {
            "description": "The workspace identifier.",
            "in": "path",
            "name": "workspace_id",
            "required": true,
            "schema": {
              "minimum": 1,
              "type": "integer"
            }
          },
          {
            "description": "The folder identifier.",
            "in": "path",
            "name": "folder_id",
            "required": true,
            "schema": {
              "minimum": 1,
              "type": "integer"
            }
          }
        ],
        "responses": {
          "204": {
            "description": "Request completed successfully with no response body."
          },
          "401": {
            "$ref": "#/components/responses/AuthenticationError"
          },
          "403": {
            "$ref": "#/components/responses/PermissionError"
          },
          "404": {
            "$ref": "#/components/responses/NotFoundError"
          },
          "429": {
            "$ref": "#/components/responses/RateLimitError"
          },
          "500": {
            "$ref": "#/components/responses/InternalError"
          }
        },
        "security": [
          {
            "BearerAuth": []
          }
        ],
        "summary": "Delete test folder",
        "tags": [
          "Test management"
        ],
        "x-required-scopes": [
          "tests:write"
        ]
      },
      "get": {
        "description": "Get test folder. Results include only resources visible to the authenticated caller; collections use their documented stable order and bounds.",
        "operationId": "getWorkspacesWorkspaceIdTestFoldersFolderId",
        "parameters": [
          {
            "description": "The workspace identifier.",
            "in": "path",
            "name": "workspace_id",
            "required": true,
            "schema": {
              "minimum": 1,
              "type": "integer"
            }
          },
          {
            "description": "The folder identifier.",
            "in": "path",
            "name": "folder_id",
            "required": true,
            "schema": {
              "minimum": 1,
              "type": "integer"
            }
          }
        ],
        "responses": {
          "200": {
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/GetWorkspacesWorkspaceIdTestFoldersFolderIdResult"
                }
              }
            },
            "description": "Get test folder response."
          },
          "401": {
            "$ref": "#/components/responses/AuthenticationError"
          },
          "403": {
            "$ref": "#/components/responses/PermissionError"
          },
          "404": {
            "$ref": "#/components/responses/NotFoundError"
          },
          "429": {
            "$ref": "#/components/responses/RateLimitError"
          },
          "500": {
            "$ref": "#/components/responses/InternalError"
          }
        },
        "security": [
          {
            "BearerAuth": []
          }
        ],
        "summary": "Get test folder",
        "tags": [
          "Test management"
        ],
        "x-required-scopes": [
          "tests:read"
        ]
      },
      "patch": {
        "description": "Update test folder. The operation uses JSON Merge Patch: omitted fields remain unchanged and documented nullable fields accept null. Unknown fields are rejected.",
        "operationId": "patchWorkspacesWorkspaceIdTestFoldersFolderId",
        "parameters": [
          {
            "description": "The workspace identifier.",
            "in": "path",
            "name": "workspace_id",
            "required": true,
            "schema": {
              "minimum": 1,
              "type": "integer"
            }
          },
          {
            "description": "The folder identifier.",
            "in": "path",
            "name": "folder_id",
            "required": true,
            "schema": {
              "minimum": 1,
              "type": "integer"
            }
          }
        ],
        "requestBody": {
          "content": {
            "application/merge-patch+json": {
              "schema": {
                "$ref": "#/components/schemas/PatchWorkspacesWorkspaceIdTestFoldersFolderIdPayload"
              }
            }
          },
          "required": true
        },
        "responses": {
          "200": {
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/PatchWorkspacesWorkspaceIdTestFoldersFolderIdResult"
                }
              }
            },
            "description": "Update test folder response."
          },
          "400": {
            "$ref": "#/components/responses/InvalidRequestError"
          },
          "401": {
            "$ref": "#/components/responses/AuthenticationError"
          },
          "403": {
            "$ref": "#/components/responses/PermissionError"
          },
          "404": {
            "$ref": "#/components/responses/NotFoundError"
          },
          "413": {
            "$ref": "#/components/responses/PayloadTooLargeError"
          },
          "415": {
            "$ref": "#/components/responses/UnsupportedMediaTypeError"
          },
          "429": {
            "$ref": "#/components/responses/RateLimitError"
          },
          "500": {
            "$ref": "#/components/responses/InternalError"
          }
        },
        "security": [
          {
            "BearerAuth": []
          }
        ],
        "summary": "Update test folder",
        "tags": [
          "Test management"
        ],
        "x-required-scopes": [
          "tests:write"
        ]
      }
    },
    "/workspaces/{workspace_id}/test-labels": {
      "get": {
        "description": "List test labels. Results include only resources visible to the authenticated caller; collections use their documented stable order and bounds.",
        "operationId": "getWorkspacesWorkspaceIdTestLabels",
        "parameters": [
          {
            "description": "The workspace identifier.",
            "in": "path",
            "name": "workspace_id",
            "required": true,
            "schema": {
              "minimum": 1,
              "type": "integer"
            }
          }
        ],
        "responses": {
          "200": {
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/GetWorkspacesWorkspaceIdTestLabelsResult"
                }
              }
            },
            "description": "List test labels response."
          },
          "401": {
            "$ref": "#/components/responses/AuthenticationError"
          },
          "403": {
            "$ref": "#/components/responses/PermissionError"
          },
          "404": {
            "$ref": "#/components/responses/NotFoundError"
          },
          "429": {
            "$ref": "#/components/responses/RateLimitError"
          },
          "500": {
            "$ref": "#/components/responses/InternalError"
          }
        },
        "security": [
          {
            "BearerAuth": []
          }
        ],
        "summary": "List test labels",
        "tags": [
          "Test management"
        ],
        "x-required-scopes": [
          "tests:read"
        ]
      },
      "post": {
        "description": "Create test label. The server validates resource ownership and command preconditions before persisting changes. Unknown JSON fields are rejected when the operation accepts a body.",
        "operationId": "postWorkspacesWorkspaceIdTestLabels",
        "parameters": [
          {
            "description": "The workspace identifier.",
            "in": "path",
            "name": "workspace_id",
            "required": true,
            "schema": {
              "minimum": 1,
              "type": "integer"
            }
          }
        ],
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/PostWorkspacesWorkspaceIdTestLabelsPayload"
              }
            }
          },
          "required": true
        },
        "responses": {
          "201": {
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/PostWorkspacesWorkspaceIdTestLabelsResult"
                }
              }
            },
            "description": "Create test label response."
          },
          "400": {
            "$ref": "#/components/responses/InvalidRequestError"
          },
          "401": {
            "$ref": "#/components/responses/AuthenticationError"
          },
          "403": {
            "$ref": "#/components/responses/PermissionError"
          },
          "404": {
            "$ref": "#/components/responses/NotFoundError"
          },
          "413": {
            "$ref": "#/components/responses/PayloadTooLargeError"
          },
          "415": {
            "$ref": "#/components/responses/UnsupportedMediaTypeError"
          },
          "429": {
            "$ref": "#/components/responses/RateLimitError"
          },
          "500": {
            "$ref": "#/components/responses/InternalError"
          }
        },
        "security": [
          {
            "BearerAuth": []
          }
        ],
        "summary": "Create test label",
        "tags": [
          "Test management"
        ],
        "x-required-scopes": [
          "tests:write"
        ]
      }
    },
    "/workspaces/{workspace_id}/test-labels/{label_id}": {
      "delete": {
        "description": "Delete test label. The server verifies resource ownership and deletion preconditions before removing the resource.",
        "operationId": "deleteWorkspacesWorkspaceIdTestLabelsLabelId",
        "parameters": [
          {
            "description": "The workspace identifier.",
            "in": "path",
            "name": "workspace_id",
            "required": true,
            "schema": {
              "minimum": 1,
              "type": "integer"
            }
          },
          {
            "description": "The label identifier.",
            "in": "path",
            "name": "label_id",
            "required": true,
            "schema": {
              "minimum": 1,
              "type": "integer"
            }
          }
        ],
        "responses": {
          "204": {
            "description": "Request completed successfully with no response body."
          },
          "401": {
            "$ref": "#/components/responses/AuthenticationError"
          },
          "403": {
            "$ref": "#/components/responses/PermissionError"
          },
          "404": {
            "$ref": "#/components/responses/NotFoundError"
          },
          "429": {
            "$ref": "#/components/responses/RateLimitError"
          },
          "500": {
            "$ref": "#/components/responses/InternalError"
          }
        },
        "security": [
          {
            "BearerAuth": []
          }
        ],
        "summary": "Delete test label",
        "tags": [
          "Test management"
        ],
        "x-required-scopes": [
          "tests:write"
        ]
      },
      "patch": {
        "description": "Update test label. The operation uses JSON Merge Patch: omitted fields remain unchanged and documented nullable fields accept null. Unknown fields are rejected.",
        "operationId": "patchWorkspacesWorkspaceIdTestLabelsLabelId",
        "parameters": [
          {
            "description": "The workspace identifier.",
            "in": "path",
            "name": "workspace_id",
            "required": true,
            "schema": {
              "minimum": 1,
              "type": "integer"
            }
          },
          {
            "description": "The label identifier.",
            "in": "path",
            "name": "label_id",
            "required": true,
            "schema": {
              "minimum": 1,
              "type": "integer"
            }
          }
        ],
        "requestBody": {
          "content": {
            "application/merge-patch+json": {
              "schema": {
                "$ref": "#/components/schemas/PatchWorkspacesWorkspaceIdTestLabelsLabelIdPayload"
              }
            }
          },
          "required": true
        },
        "responses": {
          "200": {
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/PatchWorkspacesWorkspaceIdTestLabelsLabelIdResult"
                }
              }
            },
            "description": "Update test label response."
          },
          "400": {
            "$ref": "#/components/responses/InvalidRequestError"
          },
          "401": {
            "$ref": "#/components/responses/AuthenticationError"
          },
          "403": {
            "$ref": "#/components/responses/PermissionError"
          },
          "404": {
            "$ref": "#/components/responses/NotFoundError"
          },
          "413": {
            "$ref": "#/components/responses/PayloadTooLargeError"
          },
          "415": {
            "$ref": "#/components/responses/UnsupportedMediaTypeError"
          },
          "429": {
            "$ref": "#/components/responses/RateLimitError"
          },
          "500": {
            "$ref": "#/components/responses/InternalError"
          }
        },
        "security": [
          {
            "BearerAuth": []
          }
        ],
        "summary": "Update test label",
        "tags": [
          "Test management"
        ],
        "x-required-scopes": [
          "tests:write"
        ]
      }
    },
    "/workspaces/{workspace_id}/test-plans": {
      "get": {
        "description": "List test plans. Results include only resources visible to the authenticated caller; collections use their documented stable order and bounds.",
        "operationId": "getWorkspacesWorkspaceIdTestPlans",
        "parameters": [
          {
            "description": "The workspace identifier.",
            "in": "path",
            "name": "workspace_id",
            "required": true,
            "schema": {
              "minimum": 1,
              "type": "integer"
            }
          },
          {
            "description": "One-based page number.",
            "in": "query",
            "name": "page",
            "required": false,
            "schema": {
              "default": 1,
              "minimum": 1,
              "type": "integer"
            }
          },
          {
            "description": "Maximum number of resources to return.",
            "in": "query",
            "name": "page_size",
            "required": false,
            "schema": {
              "default": 50,
              "maximum": 100,
              "minimum": 1,
              "type": "integer"
            }
          }
        ],
        "responses": {
          "200": {
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/GetWorkspacesWorkspaceIdTestPlansResult"
                }
              }
            },
            "description": "List test plans response."
          },
          "401": {
            "$ref": "#/components/responses/AuthenticationError"
          },
          "403": {
            "$ref": "#/components/responses/PermissionError"
          },
          "404": {
            "$ref": "#/components/responses/NotFoundError"
          },
          "429": {
            "$ref": "#/components/responses/RateLimitError"
          },
          "500": {
            "$ref": "#/components/responses/InternalError"
          }
        },
        "security": [
          {
            "BearerAuth": []
          }
        ],
        "summary": "List test plans",
        "tags": [
          "Test management"
        ],
        "x-required-scopes": [
          "tests:read"
        ]
      },
      "post": {
        "description": "Create test plan. The server validates resource ownership and command preconditions before persisting changes. Unknown JSON fields are rejected when the operation accepts a body.",
        "operationId": "postWorkspacesWorkspaceIdTestPlans",
        "parameters": [
          {
            "description": "The workspace identifier.",
            "in": "path",
            "name": "workspace_id",
            "required": true,
            "schema": {
              "minimum": 1,
              "type": "integer"
            }
          }
        ],
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/PostWorkspacesWorkspaceIdTestPlansPayload"
              }
            }
          },
          "required": true
        },
        "responses": {
          "201": {
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/PostWorkspacesWorkspaceIdTestPlansResult"
                }
              }
            },
            "description": "Create test plan response."
          },
          "400": {
            "$ref": "#/components/responses/InvalidRequestError"
          },
          "401": {
            "$ref": "#/components/responses/AuthenticationError"
          },
          "403": {
            "$ref": "#/components/responses/PermissionError"
          },
          "404": {
            "$ref": "#/components/responses/NotFoundError"
          },
          "413": {
            "$ref": "#/components/responses/PayloadTooLargeError"
          },
          "415": {
            "$ref": "#/components/responses/UnsupportedMediaTypeError"
          },
          "429": {
            "$ref": "#/components/responses/RateLimitError"
          },
          "500": {
            "$ref": "#/components/responses/InternalError"
          }
        },
        "security": [
          {
            "BearerAuth": []
          }
        ],
        "summary": "Create test plan",
        "tags": [
          "Test management"
        ],
        "x-required-scopes": [
          "tests:write"
        ]
      }
    },
    "/workspaces/{workspace_id}/test-plans/{plan_id}": {
      "delete": {
        "description": "Delete test plan. The server verifies resource ownership and deletion preconditions before removing the resource.",
        "operationId": "deleteWorkspacesWorkspaceIdTestPlansPlanId",
        "parameters": [
          {
            "description": "The workspace identifier.",
            "in": "path",
            "name": "workspace_id",
            "required": true,
            "schema": {
              "minimum": 1,
              "type": "integer"
            }
          },
          {
            "description": "The plan identifier.",
            "in": "path",
            "name": "plan_id",
            "required": true,
            "schema": {
              "minimum": 1,
              "type": "integer"
            }
          }
        ],
        "responses": {
          "204": {
            "description": "Request completed successfully with no response body."
          },
          "401": {
            "$ref": "#/components/responses/AuthenticationError"
          },
          "403": {
            "$ref": "#/components/responses/PermissionError"
          },
          "404": {
            "$ref": "#/components/responses/NotFoundError"
          },
          "429": {
            "$ref": "#/components/responses/RateLimitError"
          },
          "500": {
            "$ref": "#/components/responses/InternalError"
          }
        },
        "security": [
          {
            "BearerAuth": []
          }
        ],
        "summary": "Delete test plan",
        "tags": [
          "Test management"
        ],
        "x-required-scopes": [
          "tests:write"
        ]
      },
      "get": {
        "description": "Get test plan. Results include only resources visible to the authenticated caller; collections use their documented stable order and bounds.",
        "operationId": "getWorkspacesWorkspaceIdTestPlansPlanId",
        "parameters": [
          {
            "description": "The workspace identifier.",
            "in": "path",
            "name": "workspace_id",
            "required": true,
            "schema": {
              "minimum": 1,
              "type": "integer"
            }
          },
          {
            "description": "The plan identifier.",
            "in": "path",
            "name": "plan_id",
            "required": true,
            "schema": {
              "minimum": 1,
              "type": "integer"
            }
          }
        ],
        "responses": {
          "200": {
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/GetWorkspacesWorkspaceIdTestPlansPlanIdResult"
                }
              }
            },
            "description": "Get test plan response."
          },
          "401": {
            "$ref": "#/components/responses/AuthenticationError"
          },
          "403": {
            "$ref": "#/components/responses/PermissionError"
          },
          "404": {
            "$ref": "#/components/responses/NotFoundError"
          },
          "429": {
            "$ref": "#/components/responses/RateLimitError"
          },
          "500": {
            "$ref": "#/components/responses/InternalError"
          }
        },
        "security": [
          {
            "BearerAuth": []
          }
        ],
        "summary": "Get test plan",
        "tags": [
          "Test management"
        ],
        "x-required-scopes": [
          "tests:read"
        ]
      },
      "patch": {
        "description": "Update test plan. The operation uses JSON Merge Patch: omitted fields remain unchanged and documented nullable fields accept null. Unknown fields are rejected.",
        "operationId": "patchWorkspacesWorkspaceIdTestPlansPlanId",
        "parameters": [
          {
            "description": "The workspace identifier.",
            "in": "path",
            "name": "workspace_id",
            "required": true,
            "schema": {
              "minimum": 1,
              "type": "integer"
            }
          },
          {
            "description": "The plan identifier.",
            "in": "path",
            "name": "plan_id",
            "required": true,
            "schema": {
              "minimum": 1,
              "type": "integer"
            }
          }
        ],
        "requestBody": {
          "content": {
            "application/merge-patch+json": {
              "schema": {
                "$ref": "#/components/schemas/PatchWorkspacesWorkspaceIdTestPlansPlanIdPayload"
              }
            }
          },
          "required": true
        },
        "responses": {
          "200": {
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/PatchWorkspacesWorkspaceIdTestPlansPlanIdResult"
                }
              }
            },
            "description": "Update test plan response."
          },
          "400": {
            "$ref": "#/components/responses/InvalidRequestError"
          },
          "401": {
            "$ref": "#/components/responses/AuthenticationError"
          },
          "403": {
            "$ref": "#/components/responses/PermissionError"
          },
          "404": {
            "$ref": "#/components/responses/NotFoundError"
          },
          "413": {
            "$ref": "#/components/responses/PayloadTooLargeError"
          },
          "415": {
            "$ref": "#/components/responses/UnsupportedMediaTypeError"
          },
          "429": {
            "$ref": "#/components/responses/RateLimitError"
          },
          "500": {
            "$ref": "#/components/responses/InternalError"
          }
        },
        "security": [
          {
            "BearerAuth": []
          }
        ],
        "summary": "Update test plan",
        "tags": [
          "Test management"
        ],
        "x-required-scopes": [
          "tests:write"
        ]
      }
    },
    "/workspaces/{workspace_id}/test-plans/{plan_id}/runs": {
      "get": {
        "description": "List test plan runs. Results include only resources visible to the authenticated caller; collections use their documented stable order and bounds.",
        "operationId": "getWorkspacesWorkspaceIdTestPlansPlanIdRuns",
        "parameters": [
          {
            "description": "The workspace identifier.",
            "in": "path",
            "name": "workspace_id",
            "required": true,
            "schema": {
              "minimum": 1,
              "type": "integer"
            }
          },
          {
            "description": "The plan identifier.",
            "in": "path",
            "name": "plan_id",
            "required": true,
            "schema": {
              "minimum": 1,
              "type": "integer"
            }
          }
        ],
        "responses": {
          "200": {
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/GetWorkspacesWorkspaceIdTestPlansPlanIdRunsResult"
                }
              }
            },
            "description": "List test plan runs response."
          },
          "401": {
            "$ref": "#/components/responses/AuthenticationError"
          },
          "403": {
            "$ref": "#/components/responses/PermissionError"
          },
          "404": {
            "$ref": "#/components/responses/NotFoundError"
          },
          "429": {
            "$ref": "#/components/responses/RateLimitError"
          },
          "500": {
            "$ref": "#/components/responses/InternalError"
          }
        },
        "security": [
          {
            "BearerAuth": []
          }
        ],
        "summary": "List test plan runs",
        "tags": [
          "Test management"
        ],
        "x-required-scopes": [
          "tests:read"
        ]
      }
    },
    "/workspaces/{workspace_id}/test-plans/{plan_id}/test-cases": {
      "get": {
        "description": "List test plan cases. Results include only resources visible to the authenticated caller; collections use their documented stable order and bounds.",
        "operationId": "getWorkspacesWorkspaceIdTestPlansPlanIdTestCases",
        "parameters": [
          {
            "description": "The workspace identifier.",
            "in": "path",
            "name": "workspace_id",
            "required": true,
            "schema": {
              "minimum": 1,
              "type": "integer"
            }
          },
          {
            "description": "The plan identifier.",
            "in": "path",
            "name": "plan_id",
            "required": true,
            "schema": {
              "minimum": 1,
              "type": "integer"
            }
          }
        ],
        "responses": {
          "200": {
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/GetWorkspacesWorkspaceIdTestPlansPlanIdTestCasesResult"
                }
              }
            },
            "description": "List test plan cases response."
          },
          "401": {
            "$ref": "#/components/responses/AuthenticationError"
          },
          "403": {
            "$ref": "#/components/responses/PermissionError"
          },
          "404": {
            "$ref": "#/components/responses/NotFoundError"
          },
          "429": {
            "$ref": "#/components/responses/RateLimitError"
          },
          "500": {
            "$ref": "#/components/responses/InternalError"
          }
        },
        "security": [
          {
            "BearerAuth": []
          }
        ],
        "summary": "List test plan cases",
        "tags": [
          "Test management"
        ],
        "x-required-scopes": [
          "tests:read"
        ]
      },
      "post": {
        "description": "Add test case to plan. The server validates resource ownership and command preconditions before persisting changes. Unknown JSON fields are rejected when the operation accepts a body.",
        "operationId": "postWorkspacesWorkspaceIdTestPlansPlanIdTestCases",
        "parameters": [
          {
            "description": "The workspace identifier.",
            "in": "path",
            "name": "workspace_id",
            "required": true,
            "schema": {
              "minimum": 1,
              "type": "integer"
            }
          },
          {
            "description": "The plan identifier.",
            "in": "path",
            "name": "plan_id",
            "required": true,
            "schema": {
              "minimum": 1,
              "type": "integer"
            }
          }
        ],
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/PostWorkspacesWorkspaceIdTestPlansPlanIdTestCasesPayload"
              }
            }
          },
          "required": true
        },
        "responses": {
          "200": {
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/PostWorkspacesWorkspaceIdTestPlansPlanIdTestCasesResult"
                }
              }
            },
            "description": "Add test case to plan response."
          },
          "400": {
            "$ref": "#/components/responses/InvalidRequestError"
          },
          "401": {
            "$ref": "#/components/responses/AuthenticationError"
          },
          "403": {
            "$ref": "#/components/responses/PermissionError"
          },
          "404": {
            "$ref": "#/components/responses/NotFoundError"
          },
          "413": {
            "$ref": "#/components/responses/PayloadTooLargeError"
          },
          "415": {
            "$ref": "#/components/responses/UnsupportedMediaTypeError"
          },
          "429": {
            "$ref": "#/components/responses/RateLimitError"
          },
          "500": {
            "$ref": "#/components/responses/InternalError"
          }
        },
        "security": [
          {
            "BearerAuth": []
          }
        ],
        "summary": "Add test case to plan",
        "tags": [
          "Test management"
        ],
        "x-required-scopes": [
          "tests:write"
        ]
      }
    },
    "/workspaces/{workspace_id}/test-plans/{plan_id}/test-cases/{test_case_id}": {
      "delete": {
        "description": "Remove test case from plan. The server verifies resource ownership and deletion preconditions before removing the resource.",
        "operationId": "deleteWorkspacesWorkspaceIdTestPlansPlanIdTestCasesTestCaseId",
        "parameters": [
          {
            "description": "The workspace identifier.",
            "in": "path",
            "name": "workspace_id",
            "required": true,
            "schema": {
              "minimum": 1,
              "type": "integer"
            }
          },
          {
            "description": "The plan identifier.",
            "in": "path",
            "name": "plan_id",
            "required": true,
            "schema": {
              "minimum": 1,
              "type": "integer"
            }
          },
          {
            "description": "The test case identifier.",
            "in": "path",
            "name": "test_case_id",
            "required": true,
            "schema": {
              "minimum": 1,
              "type": "integer"
            }
          }
        ],
        "responses": {
          "204": {
            "description": "Request completed successfully with no response body."
          },
          "401": {
            "$ref": "#/components/responses/AuthenticationError"
          },
          "403": {
            "$ref": "#/components/responses/PermissionError"
          },
          "404": {
            "$ref": "#/components/responses/NotFoundError"
          },
          "429": {
            "$ref": "#/components/responses/RateLimitError"
          },
          "500": {
            "$ref": "#/components/responses/InternalError"
          }
        },
        "security": [
          {
            "BearerAuth": []
          }
        ],
        "summary": "Remove test case from plan",
        "tags": [
          "Test management"
        ],
        "x-required-scopes": [
          "tests:write"
        ]
      }
    },
    "/workspaces/{workspace_id}/test-reports/summary": {
      "get": {
        "description": "Computes an authorization-checked test summary from committed runs within the bounded 1-to-365-day window. The response is atomic and includes overall, trend, recent-failure, and recent-blocked projections.",
        "operationId": "getWorkspacesWorkspaceIdTestReportsSummary",
        "parameters": [
          {
            "description": "The workspace identifier.",
            "in": "path",
            "name": "workspace_id",
            "required": true,
            "schema": {
              "minimum": 1,
              "type": "integer"
            }
          },
          {
            "description": "Restricts the report to one milestone.",
            "in": "query",
            "name": "milestone_id",
            "required": false,
            "schema": {
              "minimum": 1,
              "type": "integer"
            }
          },
          {
            "description": "Number of recent civil days included in trend calculations.",
            "in": "query",
            "name": "days",
            "required": false,
            "schema": {
              "default": 30,
              "maximum": 365,
              "minimum": 1,
              "type": "integer"
            }
          }
        ],
        "responses": {
          "200": {
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/GetWorkspacesWorkspaceIdTestReportsSummaryResult"
                }
              }
            },
            "description": "Get test reports summary response."
          },
          "401": {
            "$ref": "#/components/responses/AuthenticationError"
          },
          "403": {
            "$ref": "#/components/responses/PermissionError"
          },
          "404": {
            "$ref": "#/components/responses/NotFoundError"
          },
          "429": {
            "$ref": "#/components/responses/RateLimitError"
          },
          "500": {
            "$ref": "#/components/responses/InternalError"
          }
        },
        "security": [
          {
            "BearerAuth": []
          }
        ],
        "summary": "Get test reports summary",
        "tags": [
          "Test management"
        ],
        "x-required-scopes": [
          "tests:read"
        ]
      }
    },
    "/workspaces/{workspace_id}/test-results/{result_id}/items": {
      "get": {
        "description": "List test result items. Results include only resources visible to the authenticated caller; collections use their documented stable order and bounds.",
        "operationId": "getWorkspacesWorkspaceIdTestResultsResultIdItems",
        "parameters": [
          {
            "description": "The workspace identifier.",
            "in": "path",
            "name": "workspace_id",
            "required": true,
            "schema": {
              "minimum": 1,
              "type": "integer"
            }
          },
          {
            "description": "The result identifier.",
            "in": "path",
            "name": "result_id",
            "required": true,
            "schema": {
              "minimum": 1,
              "type": "integer"
            }
          }
        ],
        "responses": {
          "200": {
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/GetWorkspacesWorkspaceIdTestResultsResultIdItemsResult"
                }
              }
            },
            "description": "List test result items response."
          },
          "401": {
            "$ref": "#/components/responses/AuthenticationError"
          },
          "403": {
            "$ref": "#/components/responses/PermissionError"
          },
          "404": {
            "$ref": "#/components/responses/NotFoundError"
          },
          "429": {
            "$ref": "#/components/responses/RateLimitError"
          },
          "500": {
            "$ref": "#/components/responses/InternalError"
          }
        },
        "security": [
          {
            "BearerAuth": []
          }
        ],
        "summary": "List test result items",
        "tags": [
          "Test management"
        ],
        "x-required-scopes": [
          "tests:read"
        ]
      },
      "post": {
        "description": "Link test result item. The server validates resource ownership and command preconditions before persisting changes. Unknown JSON fields are rejected when the operation accepts a body.",
        "operationId": "postWorkspacesWorkspaceIdTestResultsResultIdItems",
        "parameters": [
          {
            "description": "The workspace identifier.",
            "in": "path",
            "name": "workspace_id",
            "required": true,
            "schema": {
              "minimum": 1,
              "type": "integer"
            }
          },
          {
            "description": "The result identifier.",
            "in": "path",
            "name": "result_id",
            "required": true,
            "schema": {
              "minimum": 1,
              "type": "integer"
            }
          }
        ],
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/PostWorkspacesWorkspaceIdTestResultsResultIdItemsPayload"
              }
            }
          },
          "required": true
        },
        "responses": {
          "200": {
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/PostWorkspacesWorkspaceIdTestResultsResultIdItemsResult"
                }
              }
            },
            "description": "Link test result item response."
          },
          "400": {
            "$ref": "#/components/responses/InvalidRequestError"
          },
          "401": {
            "$ref": "#/components/responses/AuthenticationError"
          },
          "403": {
            "$ref": "#/components/responses/PermissionError"
          },
          "404": {
            "$ref": "#/components/responses/NotFoundError"
          },
          "413": {
            "$ref": "#/components/responses/PayloadTooLargeError"
          },
          "415": {
            "$ref": "#/components/responses/UnsupportedMediaTypeError"
          },
          "429": {
            "$ref": "#/components/responses/RateLimitError"
          },
          "500": {
            "$ref": "#/components/responses/InternalError"
          }
        },
        "security": [
          {
            "BearerAuth": []
          }
        ],
        "summary": "Link test result item",
        "tags": [
          "Test management"
        ],
        "x-required-scopes": [
          "tests:write"
        ]
      }
    },
    "/workspaces/{workspace_id}/test-results/{result_id}/items/{item_id}": {
      "delete": {
        "description": "Unlink test result item. The server verifies resource ownership and deletion preconditions before removing the resource.",
        "operationId": "deleteWorkspacesWorkspaceIdTestResultsResultIdItemsItemId",
        "parameters": [
          {
            "description": "The workspace identifier.",
            "in": "path",
            "name": "workspace_id",
            "required": true,
            "schema": {
              "minimum": 1,
              "type": "integer"
            }
          },
          {
            "description": "The result identifier.",
            "in": "path",
            "name": "result_id",
            "required": true,
            "schema": {
              "minimum": 1,
              "type": "integer"
            }
          },
          {
            "description": "The item identifier.",
            "in": "path",
            "name": "item_id",
            "required": true,
            "schema": {
              "minimum": 1,
              "type": "integer"
            }
          }
        ],
        "responses": {
          "204": {
            "description": "Request completed successfully with no response body."
          },
          "401": {
            "$ref": "#/components/responses/AuthenticationError"
          },
          "403": {
            "$ref": "#/components/responses/PermissionError"
          },
          "404": {
            "$ref": "#/components/responses/NotFoundError"
          },
          "429": {
            "$ref": "#/components/responses/RateLimitError"
          },
          "500": {
            "$ref": "#/components/responses/InternalError"
          }
        },
        "security": [
          {
            "BearerAuth": []
          }
        ],
        "summary": "Unlink test result item",
        "tags": [
          "Test management"
        ],
        "x-required-scopes": [
          "tests:write"
        ]
      }
    },
    "/workspaces/{workspace_id}/test-run-templates": {
      "get": {
        "description": "List test run templates. Results include only resources visible to the authenticated caller; collections use their documented stable order and bounds.",
        "operationId": "getWorkspacesWorkspaceIdTestRunTemplates",
        "parameters": [
          {
            "description": "The workspace identifier.",
            "in": "path",
            "name": "workspace_id",
            "required": true,
            "schema": {
              "minimum": 1,
              "type": "integer"
            }
          },
          {
            "description": "One-based page number.",
            "in": "query",
            "name": "page",
            "required": false,
            "schema": {
              "default": 1,
              "minimum": 1,
              "type": "integer"
            }
          },
          {
            "description": "Maximum number of resources to return.",
            "in": "query",
            "name": "page_size",
            "required": false,
            "schema": {
              "default": 50,
              "maximum": 100,
              "minimum": 1,
              "type": "integer"
            }
          }
        ],
        "responses": {
          "200": {
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/GetWorkspacesWorkspaceIdTestRunTemplatesResult"
                }
              }
            },
            "description": "List test run templates response."
          },
          "401": {
            "$ref": "#/components/responses/AuthenticationError"
          },
          "403": {
            "$ref": "#/components/responses/PermissionError"
          },
          "404": {
            "$ref": "#/components/responses/NotFoundError"
          },
          "429": {
            "$ref": "#/components/responses/RateLimitError"
          },
          "500": {
            "$ref": "#/components/responses/InternalError"
          }
        },
        "security": [
          {
            "BearerAuth": []
          }
        ],
        "summary": "List test run templates",
        "tags": [
          "Test management"
        ],
        "x-required-scopes": [
          "tests:read"
        ]
      },
      "post": {
        "description": "Create test run template. The server validates resource ownership and command preconditions before persisting changes. Unknown JSON fields are rejected when the operation accepts a body.",
        "operationId": "postWorkspacesWorkspaceIdTestRunTemplates",
        "parameters": [
          {
            "description": "The workspace identifier.",
            "in": "path",
            "name": "workspace_id",
            "required": true,
            "schema": {
              "minimum": 1,
              "type": "integer"
            }
          }
        ],
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/PostWorkspacesWorkspaceIdTestRunTemplatesPayload"
              }
            }
          },
          "required": true
        },
        "responses": {
          "201": {
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/PostWorkspacesWorkspaceIdTestRunTemplatesResult"
                }
              }
            },
            "description": "Create test run template response."
          },
          "400": {
            "$ref": "#/components/responses/InvalidRequestError"
          },
          "401": {
            "$ref": "#/components/responses/AuthenticationError"
          },
          "403": {
            "$ref": "#/components/responses/PermissionError"
          },
          "404": {
            "$ref": "#/components/responses/NotFoundError"
          },
          "413": {
            "$ref": "#/components/responses/PayloadTooLargeError"
          },
          "415": {
            "$ref": "#/components/responses/UnsupportedMediaTypeError"
          },
          "429": {
            "$ref": "#/components/responses/RateLimitError"
          },
          "500": {
            "$ref": "#/components/responses/InternalError"
          }
        },
        "security": [
          {
            "BearerAuth": []
          }
        ],
        "summary": "Create test run template",
        "tags": [
          "Test management"
        ],
        "x-required-scopes": [
          "tests:write"
        ]
      }
    },
    "/workspaces/{workspace_id}/test-run-templates/{template_id}": {
      "delete": {
        "description": "Delete test run template. The server verifies resource ownership and deletion preconditions before removing the resource.",
        "operationId": "deleteWorkspacesWorkspaceIdTestRunTemplatesTemplateId",
        "parameters": [
          {
            "description": "The workspace identifier.",
            "in": "path",
            "name": "workspace_id",
            "required": true,
            "schema": {
              "minimum": 1,
              "type": "integer"
            }
          },
          {
            "description": "The template identifier.",
            "in": "path",
            "name": "template_id",
            "required": true,
            "schema": {
              "minimum": 1,
              "type": "integer"
            }
          }
        ],
        "responses": {
          "204": {
            "description": "Request completed successfully with no response body."
          },
          "401": {
            "$ref": "#/components/responses/AuthenticationError"
          },
          "403": {
            "$ref": "#/components/responses/PermissionError"
          },
          "404": {
            "$ref": "#/components/responses/NotFoundError"
          },
          "429": {
            "$ref": "#/components/responses/RateLimitError"
          },
          "500": {
            "$ref": "#/components/responses/InternalError"
          }
        },
        "security": [
          {
            "BearerAuth": []
          }
        ],
        "summary": "Delete test run template",
        "tags": [
          "Test management"
        ],
        "x-required-scopes": [
          "tests:write"
        ]
      },
      "get": {
        "description": "Get test run template. Results include only resources visible to the authenticated caller; collections use their documented stable order and bounds.",
        "operationId": "getWorkspacesWorkspaceIdTestRunTemplatesTemplateId",
        "parameters": [
          {
            "description": "The workspace identifier.",
            "in": "path",
            "name": "workspace_id",
            "required": true,
            "schema": {
              "minimum": 1,
              "type": "integer"
            }
          },
          {
            "description": "The template identifier.",
            "in": "path",
            "name": "template_id",
            "required": true,
            "schema": {
              "minimum": 1,
              "type": "integer"
            }
          }
        ],
        "responses": {
          "200": {
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/GetWorkspacesWorkspaceIdTestRunTemplatesTemplateIdResult"
                }
              }
            },
            "description": "Get test run template response."
          },
          "401": {
            "$ref": "#/components/responses/AuthenticationError"
          },
          "403": {
            "$ref": "#/components/responses/PermissionError"
          },
          "404": {
            "$ref": "#/components/responses/NotFoundError"
          },
          "429": {
            "$ref": "#/components/responses/RateLimitError"
          },
          "500": {
            "$ref": "#/components/responses/InternalError"
          }
        },
        "security": [
          {
            "BearerAuth": []
          }
        ],
        "summary": "Get test run template",
        "tags": [
          "Test management"
        ],
        "x-required-scopes": [
          "tests:read"
        ]
      },
      "patch": {
        "description": "Update test run template. The operation uses JSON Merge Patch: omitted fields remain unchanged and documented nullable fields accept null. Unknown fields are rejected.",
        "operationId": "patchWorkspacesWorkspaceIdTestRunTemplatesTemplateId",
        "parameters": [
          {
            "description": "The workspace identifier.",
            "in": "path",
            "name": "workspace_id",
            "required": true,
            "schema": {
              "minimum": 1,
              "type": "integer"
            }
          },
          {
            "description": "The template identifier.",
            "in": "path",
            "name": "template_id",
            "required": true,
            "schema": {
              "minimum": 1,
              "type": "integer"
            }
          }
        ],
        "requestBody": {
          "content": {
            "application/merge-patch+json": {
              "schema": {
                "$ref": "#/components/schemas/PatchWorkspacesWorkspaceIdTestRunTemplatesTemplateIdPayload"
              }
            }
          },
          "required": true
        },
        "responses": {
          "200": {
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/PatchWorkspacesWorkspaceIdTestRunTemplatesTemplateIdResult"
                }
              }
            },
            "description": "Update test run template response."
          },
          "400": {
            "$ref": "#/components/responses/InvalidRequestError"
          },
          "401": {
            "$ref": "#/components/responses/AuthenticationError"
          },
          "403": {
            "$ref": "#/components/responses/PermissionError"
          },
          "404": {
            "$ref": "#/components/responses/NotFoundError"
          },
          "413": {
            "$ref": "#/components/responses/PayloadTooLargeError"
          },
          "415": {
            "$ref": "#/components/responses/UnsupportedMediaTypeError"
          },
          "429": {
            "$ref": "#/components/responses/RateLimitError"
          },
          "500": {
            "$ref": "#/components/responses/InternalError"
          }
        },
        "security": [
          {
            "BearerAuth": []
          }
        ],
        "summary": "Update test run template",
        "tags": [
          "Test management"
        ],
        "x-required-scopes": [
          "tests:write"
        ]
      }
    },
    "/workspaces/{workspace_id}/test-run-templates/{template_id}/execute": {
      "post": {
        "description": "Execute test run template. The server validates resource ownership and command preconditions before persisting changes. Unknown JSON fields are rejected when the operation accepts a body.",
        "operationId": "postWorkspacesWorkspaceIdTestRunTemplatesTemplateIdExecute",
        "parameters": [
          {
            "description": "The workspace identifier.",
            "in": "path",
            "name": "workspace_id",
            "required": true,
            "schema": {
              "minimum": 1,
              "type": "integer"
            }
          },
          {
            "description": "The template identifier.",
            "in": "path",
            "name": "template_id",
            "required": true,
            "schema": {
              "minimum": 1,
              "type": "integer"
            }
          }
        ],
        "responses": {
          "201": {
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/PostWorkspacesWorkspaceIdTestRunTemplatesTemplateIdExecuteResult"
                }
              }
            },
            "description": "Execute test run template response."
          },
          "401": {
            "$ref": "#/components/responses/AuthenticationError"
          },
          "403": {
            "$ref": "#/components/responses/PermissionError"
          },
          "404": {
            "$ref": "#/components/responses/NotFoundError"
          },
          "429": {
            "$ref": "#/components/responses/RateLimitError"
          },
          "500": {
            "$ref": "#/components/responses/InternalError"
          }
        },
        "security": [
          {
            "BearerAuth": []
          }
        ],
        "summary": "Execute test run template",
        "tags": [
          "Test management"
        ],
        "x-required-scopes": [
          "tests:write"
        ]
      }
    },
    "/workspaces/{workspace_id}/test-run-templates/{template_id}/executions": {
      "get": {
        "description": "List test run template executions. Results include only resources visible to the authenticated caller; collections use their documented stable order and bounds.",
        "operationId": "getWorkspacesWorkspaceIdTestRunTemplatesTemplateIdExecutions",
        "parameters": [
          {
            "description": "The workspace identifier.",
            "in": "path",
            "name": "workspace_id",
            "required": true,
            "schema": {
              "minimum": 1,
              "type": "integer"
            }
          },
          {
            "description": "The template identifier.",
            "in": "path",
            "name": "template_id",
            "required": true,
            "schema": {
              "minimum": 1,
              "type": "integer"
            }
          }
        ],
        "responses": {
          "200": {
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/GetWorkspacesWorkspaceIdTestRunTemplatesTemplateIdExecutionsResult"
                }
              }
            },
            "description": "List test run template executions response."
          },
          "401": {
            "$ref": "#/components/responses/AuthenticationError"
          },
          "403": {
            "$ref": "#/components/responses/PermissionError"
          },
          "404": {
            "$ref": "#/components/responses/NotFoundError"
          },
          "429": {
            "$ref": "#/components/responses/RateLimitError"
          },
          "500": {
            "$ref": "#/components/responses/InternalError"
          }
        },
        "security": [
          {
            "BearerAuth": []
          }
        ],
        "summary": "List test run template executions",
        "tags": [
          "Test management"
        ],
        "x-required-scopes": [
          "tests:read"
        ]
      }
    },
    "/workspaces/{workspace_id}/test-runs": {
      "get": {
        "description": "List test runs. Results include only resources visible to the authenticated caller; collections use their documented stable order and bounds.",
        "operationId": "getWorkspacesWorkspaceIdTestRuns",
        "parameters": [
          {
            "description": "The workspace identifier.",
            "in": "path",
            "name": "workspace_id",
            "required": true,
            "schema": {
              "minimum": 1,
              "type": "integer"
            }
          },
          {
            "description": "Restricts test runs by plan id.",
            "in": "query",
            "name": "plan_id",
            "required": false,
            "schema": {
              "minimum": 1,
              "type": "integer"
            }
          },
          {
            "description": "One-based page number.",
            "in": "query",
            "name": "page",
            "required": false,
            "schema": {
              "default": 1,
              "minimum": 1,
              "type": "integer"
            }
          },
          {
            "description": "Maximum number of resources to return.",
            "in": "query",
            "name": "page_size",
            "required": false,
            "schema": {
              "default": 50,
              "maximum": 100,
              "minimum": 1,
              "type": "integer"
            }
          },
          {
            "description": "Restricts test runs by assignee id.",
            "in": "query",
            "name": "assignee_id",
            "required": false,
            "schema": {
              "minimum": 1,
              "type": "integer"
            }
          },
          {
            "description": "Restricts test runs by template id.",
            "in": "query",
            "name": "template_id",
            "required": false,
            "schema": {
              "minimum": 1,
              "type": "integer"
            }
          },
          {
            "description": "Restricts results to unassigned test runs.",
            "in": "query",
            "name": "unassigned",
            "required": false,
            "schema": {
              "default": false,
              "type": "boolean"
            }
          },
          {
            "description": "Whether ended test runs are included.",
            "in": "query",
            "name": "include_ended",
            "required": false,
            "schema": {
              "default": false,
              "type": "boolean"
            }
          }
        ],
        "responses": {
          "200": {
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/GetWorkspacesWorkspaceIdTestRunsResult"
                }
              }
            },
            "description": "List test runs response."
          },
          "401": {
            "$ref": "#/components/responses/AuthenticationError"
          },
          "403": {
            "$ref": "#/components/responses/PermissionError"
          },
          "404": {
            "$ref": "#/components/responses/NotFoundError"
          },
          "429": {
            "$ref": "#/components/responses/RateLimitError"
          },
          "500": {
            "$ref": "#/components/responses/InternalError"
          }
        },
        "security": [
          {
            "BearerAuth": []
          }
        ],
        "summary": "List test runs",
        "tags": [
          "Test management"
        ],
        "x-required-scopes": [
          "tests:read"
        ]
      },
      "post": {
        "description": "Create test run. The server validates resource ownership and command preconditions before persisting changes. Unknown JSON fields are rejected when the operation accepts a body.",
        "operationId": "postWorkspacesWorkspaceIdTestRuns",
        "parameters": [
          {
            "description": "The workspace identifier.",
            "in": "path",
            "name": "workspace_id",
            "required": true,
            "schema": {
              "minimum": 1,
              "type": "integer"
            }
          }
        ],
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/PostWorkspacesWorkspaceIdTestRunsPayload"
              }
            }
          },
          "required": true
        },
        "responses": {
          "201": {
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/PostWorkspacesWorkspaceIdTestRunsResult"
                }
              }
            },
            "description": "Create test run response."
          },
          "400": {
            "$ref": "#/components/responses/InvalidRequestError"
          },
          "401": {
            "$ref": "#/components/responses/AuthenticationError"
          },
          "403": {
            "$ref": "#/components/responses/PermissionError"
          },
          "404": {
            "$ref": "#/components/responses/NotFoundError"
          },
          "413": {
            "$ref": "#/components/responses/PayloadTooLargeError"
          },
          "415": {
            "$ref": "#/components/responses/UnsupportedMediaTypeError"
          },
          "429": {
            "$ref": "#/components/responses/RateLimitError"
          },
          "500": {
            "$ref": "#/components/responses/InternalError"
          }
        },
        "security": [
          {
            "BearerAuth": []
          }
        ],
        "summary": "Create test run",
        "tags": [
          "Test management"
        ],
        "x-required-scopes": [
          "tests:write"
        ]
      }
    },
    "/workspaces/{workspace_id}/test-runs/{run_id}": {
      "delete": {
        "description": "Delete test run. The server verifies resource ownership and deletion preconditions before removing the resource.",
        "operationId": "deleteWorkspacesWorkspaceIdTestRunsRunId",
        "parameters": [
          {
            "description": "The workspace identifier.",
            "in": "path",
            "name": "workspace_id",
            "required": true,
            "schema": {
              "minimum": 1,
              "type": "integer"
            }
          },
          {
            "description": "The run identifier.",
            "in": "path",
            "name": "run_id",
            "required": true,
            "schema": {
              "minimum": 1,
              "type": "integer"
            }
          }
        ],
        "responses": {
          "204": {
            "description": "Request completed successfully with no response body."
          },
          "401": {
            "$ref": "#/components/responses/AuthenticationError"
          },
          "403": {
            "$ref": "#/components/responses/PermissionError"
          },
          "404": {
            "$ref": "#/components/responses/NotFoundError"
          },
          "429": {
            "$ref": "#/components/responses/RateLimitError"
          },
          "500": {
            "$ref": "#/components/responses/InternalError"
          }
        },
        "security": [
          {
            "BearerAuth": []
          }
        ],
        "summary": "Delete test run",
        "tags": [
          "Test management"
        ],
        "x-required-scopes": [
          "tests:write"
        ]
      },
      "get": {
        "description": "Get test run. Results include only resources visible to the authenticated caller; collections use their documented stable order and bounds.",
        "operationId": "getWorkspacesWorkspaceIdTestRunsRunId",
        "parameters": [
          {
            "description": "The workspace identifier.",
            "in": "path",
            "name": "workspace_id",
            "required": true,
            "schema": {
              "minimum": 1,
              "type": "integer"
            }
          },
          {
            "description": "The run identifier.",
            "in": "path",
            "name": "run_id",
            "required": true,
            "schema": {
              "minimum": 1,
              "type": "integer"
            }
          }
        ],
        "responses": {
          "200": {
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/GetWorkspacesWorkspaceIdTestRunsRunIdResult"
                }
              }
            },
            "description": "Get test run response."
          },
          "401": {
            "$ref": "#/components/responses/AuthenticationError"
          },
          "403": {
            "$ref": "#/components/responses/PermissionError"
          },
          "404": {
            "$ref": "#/components/responses/NotFoundError"
          },
          "429": {
            "$ref": "#/components/responses/RateLimitError"
          },
          "500": {
            "$ref": "#/components/responses/InternalError"
          }
        },
        "security": [
          {
            "BearerAuth": []
          }
        ],
        "summary": "Get test run",
        "tags": [
          "Test management"
        ],
        "x-required-scopes": [
          "tests:read"
        ]
      },
      "patch": {
        "description": "Update test run. The operation uses JSON Merge Patch: omitted fields remain unchanged and documented nullable fields accept null. Unknown fields are rejected.",
        "operationId": "patchWorkspacesWorkspaceIdTestRunsRunId",
        "parameters": [
          {
            "description": "The workspace identifier.",
            "in": "path",
            "name": "workspace_id",
            "required": true,
            "schema": {
              "minimum": 1,
              "type": "integer"
            }
          },
          {
            "description": "The run identifier.",
            "in": "path",
            "name": "run_id",
            "required": true,
            "schema": {
              "minimum": 1,
              "type": "integer"
            }
          }
        ],
        "requestBody": {
          "content": {
            "application/merge-patch+json": {
              "schema": {
                "$ref": "#/components/schemas/PatchWorkspacesWorkspaceIdTestRunsRunIdPayload"
              }
            }
          },
          "required": true
        },
        "responses": {
          "200": {
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/PatchWorkspacesWorkspaceIdTestRunsRunIdResult"
                }
              }
            },
            "description": "Update test run response."
          },
          "400": {
            "$ref": "#/components/responses/InvalidRequestError"
          },
          "401": {
            "$ref": "#/components/responses/AuthenticationError"
          },
          "403": {
            "$ref": "#/components/responses/PermissionError"
          },
          "404": {
            "$ref": "#/components/responses/NotFoundError"
          },
          "413": {
            "$ref": "#/components/responses/PayloadTooLargeError"
          },
          "415": {
            "$ref": "#/components/responses/UnsupportedMediaTypeError"
          },
          "429": {
            "$ref": "#/components/responses/RateLimitError"
          },
          "500": {
            "$ref": "#/components/responses/InternalError"
          }
        },
        "security": [
          {
            "BearerAuth": []
          }
        ],
        "summary": "Update test run",
        "tags": [
          "Test management"
        ],
        "x-required-scopes": [
          "tests:write"
        ]
      }
    },
    "/workspaces/{workspace_id}/test-runs/{run_id}/detail": {
      "get": {
        "description": "Get test run detail. Results include only resources visible to the authenticated caller; collections use their documented stable order and bounds.",
        "operationId": "getWorkspacesWorkspaceIdTestRunsRunIdDetail",
        "parameters": [
          {
            "description": "The workspace identifier.",
            "in": "path",
            "name": "workspace_id",
            "required": true,
            "schema": {
              "minimum": 1,
              "type": "integer"
            }
          },
          {
            "description": "The run identifier.",
            "in": "path",
            "name": "run_id",
            "required": true,
            "schema": {
              "minimum": 1,
              "type": "integer"
            }
          }
        ],
        "responses": {
          "200": {
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/GetWorkspacesWorkspaceIdTestRunsRunIdDetailResult"
                }
              }
            },
            "description": "Get test run detail response."
          },
          "401": {
            "$ref": "#/components/responses/AuthenticationError"
          },
          "403": {
            "$ref": "#/components/responses/PermissionError"
          },
          "404": {
            "$ref": "#/components/responses/NotFoundError"
          },
          "429": {
            "$ref": "#/components/responses/RateLimitError"
          },
          "500": {
            "$ref": "#/components/responses/InternalError"
          }
        },
        "security": [
          {
            "BearerAuth": []
          }
        ],
        "summary": "Get test run detail",
        "tags": [
          "Test management"
        ],
        "x-required-scopes": [
          "tests:read"
        ]
      }
    },
    "/workspaces/{workspace_id}/test-runs/{run_id}/end": {
      "post": {
        "description": "End test run. The server validates resource ownership and command preconditions before persisting changes. Unknown JSON fields are rejected when the operation accepts a body.",
        "operationId": "postWorkspacesWorkspaceIdTestRunsRunIdEnd",
        "parameters": [
          {
            "description": "The workspace identifier.",
            "in": "path",
            "name": "workspace_id",
            "required": true,
            "schema": {
              "minimum": 1,
              "type": "integer"
            }
          },
          {
            "description": "The run identifier.",
            "in": "path",
            "name": "run_id",
            "required": true,
            "schema": {
              "minimum": 1,
              "type": "integer"
            }
          }
        ],
        "responses": {
          "200": {
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/PostWorkspacesWorkspaceIdTestRunsRunIdEndResult"
                }
              }
            },
            "description": "End test run response."
          },
          "401": {
            "$ref": "#/components/responses/AuthenticationError"
          },
          "403": {
            "$ref": "#/components/responses/PermissionError"
          },
          "404": {
            "$ref": "#/components/responses/NotFoundError"
          },
          "429": {
            "$ref": "#/components/responses/RateLimitError"
          },
          "500": {
            "$ref": "#/components/responses/InternalError"
          }
        },
        "security": [
          {
            "BearerAuth": []
          }
        ],
        "summary": "End test run",
        "tags": [
          "Test management"
        ],
        "x-required-scopes": [
          "tests:write"
        ]
      }
    },
    "/workspaces/{workspace_id}/test-runs/{run_id}/results": {
      "get": {
        "description": "List test run results. Results include only resources visible to the authenticated caller; collections use their documented stable order and bounds.",
        "operationId": "getWorkspacesWorkspaceIdTestRunsRunIdResults",
        "parameters": [
          {
            "description": "The workspace identifier.",
            "in": "path",
            "name": "workspace_id",
            "required": true,
            "schema": {
              "minimum": 1,
              "type": "integer"
            }
          },
          {
            "description": "The run identifier.",
            "in": "path",
            "name": "run_id",
            "required": true,
            "schema": {
              "minimum": 1,
              "type": "integer"
            }
          }
        ],
        "responses": {
          "200": {
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/GetWorkspacesWorkspaceIdTestRunsRunIdResultsResult"
                }
              }
            },
            "description": "List test run results response."
          },
          "401": {
            "$ref": "#/components/responses/AuthenticationError"
          },
          "403": {
            "$ref": "#/components/responses/PermissionError"
          },
          "404": {
            "$ref": "#/components/responses/NotFoundError"
          },
          "429": {
            "$ref": "#/components/responses/RateLimitError"
          },
          "500": {
            "$ref": "#/components/responses/InternalError"
          }
        },
        "security": [
          {
            "BearerAuth": []
          }
        ],
        "summary": "List test run results",
        "tags": [
          "Test management"
        ],
        "x-required-scopes": [
          "tests:read"
        ]
      }
    },
    "/workspaces/{workspace_id}/test-runs/{run_id}/results/{result_id}": {
      "patch": {
        "description": "Update test run result. The operation uses JSON Merge Patch: omitted fields remain unchanged and documented nullable fields accept null. Unknown fields are rejected.",
        "operationId": "patchWorkspacesWorkspaceIdTestRunsRunIdResultsResultId",
        "parameters": [
          {
            "description": "The workspace identifier.",
            "in": "path",
            "name": "workspace_id",
            "required": true,
            "schema": {
              "minimum": 1,
              "type": "integer"
            }
          },
          {
            "description": "The run identifier.",
            "in": "path",
            "name": "run_id",
            "required": true,
            "schema": {
              "minimum": 1,
              "type": "integer"
            }
          },
          {
            "description": "The result identifier.",
            "in": "path",
            "name": "result_id",
            "required": true,
            "schema": {
              "minimum": 1,
              "type": "integer"
            }
          }
        ],
        "requestBody": {
          "content": {
            "application/merge-patch+json": {
              "schema": {
                "$ref": "#/components/schemas/PatchWorkspacesWorkspaceIdTestRunsRunIdResultsResultIdPayload"
              }
            }
          },
          "required": true
        },
        "responses": {
          "200": {
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/PatchWorkspacesWorkspaceIdTestRunsRunIdResultsResultIdResult"
                }
              }
            },
            "description": "Update test run result response."
          },
          "400": {
            "$ref": "#/components/responses/InvalidRequestError"
          },
          "401": {
            "$ref": "#/components/responses/AuthenticationError"
          },
          "403": {
            "$ref": "#/components/responses/PermissionError"
          },
          "404": {
            "$ref": "#/components/responses/NotFoundError"
          },
          "413": {
            "$ref": "#/components/responses/PayloadTooLargeError"
          },
          "415": {
            "$ref": "#/components/responses/UnsupportedMediaTypeError"
          },
          "429": {
            "$ref": "#/components/responses/RateLimitError"
          },
          "500": {
            "$ref": "#/components/responses/InternalError"
          }
        },
        "security": [
          {
            "BearerAuth": []
          }
        ],
        "summary": "Update test run result",
        "tags": [
          "Test management"
        ],
        "x-required-scopes": [
          "tests:write"
        ]
      }
    },
    "/workspaces/{workspace_id}/test-runs/{run_id}/steps": {
      "get": {
        "description": "List test run steps. Results include only resources visible to the authenticated caller; collections use their documented stable order and bounds.",
        "operationId": "getWorkspacesWorkspaceIdTestRunsRunIdSteps",
        "parameters": [
          {
            "description": "The workspace identifier.",
            "in": "path",
            "name": "workspace_id",
            "required": true,
            "schema": {
              "minimum": 1,
              "type": "integer"
            }
          },
          {
            "description": "The run identifier.",
            "in": "path",
            "name": "run_id",
            "required": true,
            "schema": {
              "minimum": 1,
              "type": "integer"
            }
          }
        ],
        "responses": {
          "200": {
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/GetWorkspacesWorkspaceIdTestRunsRunIdStepsResult"
                }
              }
            },
            "description": "List test run steps response."
          },
          "401": {
            "$ref": "#/components/responses/AuthenticationError"
          },
          "403": {
            "$ref": "#/components/responses/PermissionError"
          },
          "404": {
            "$ref": "#/components/responses/NotFoundError"
          },
          "429": {
            "$ref": "#/components/responses/RateLimitError"
          },
          "500": {
            "$ref": "#/components/responses/InternalError"
          }
        },
        "security": [
          {
            "BearerAuth": []
          }
        ],
        "summary": "List test run steps",
        "tags": [
          "Test management"
        ],
        "x-required-scopes": [
          "tests:read"
        ]
      }
    },
    "/workspaces/{workspace_id}/test-runs/{run_id}/steps/{step_id}": {
      "patch": {
        "description": "Update test run step. The operation uses JSON Merge Patch: omitted fields remain unchanged and documented nullable fields accept null. Unknown fields are rejected.",
        "operationId": "patchWorkspacesWorkspaceIdTestRunsRunIdStepsStepId",
        "parameters": [
          {
            "description": "The workspace identifier.",
            "in": "path",
            "name": "workspace_id",
            "required": true,
            "schema": {
              "minimum": 1,
              "type": "integer"
            }
          },
          {
            "description": "The run identifier.",
            "in": "path",
            "name": "run_id",
            "required": true,
            "schema": {
              "minimum": 1,
              "type": "integer"
            }
          },
          {
            "description": "The step identifier.",
            "in": "path",
            "name": "step_id",
            "required": true,
            "schema": {
              "minimum": 1,
              "type": "integer"
            }
          }
        ],
        "requestBody": {
          "content": {
            "application/merge-patch+json": {
              "schema": {
                "$ref": "#/components/schemas/PatchWorkspacesWorkspaceIdTestRunsRunIdStepsStepIdPayload"
              }
            }
          },
          "required": true
        },
        "responses": {
          "200": {
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/PatchWorkspacesWorkspaceIdTestRunsRunIdStepsStepIdResult"
                }
              }
            },
            "description": "Update test run step response."
          },
          "400": {
            "$ref": "#/components/responses/InvalidRequestError"
          },
          "401": {
            "$ref": "#/components/responses/AuthenticationError"
          },
          "403": {
            "$ref": "#/components/responses/PermissionError"
          },
          "404": {
            "$ref": "#/components/responses/NotFoundError"
          },
          "413": {
            "$ref": "#/components/responses/PayloadTooLargeError"
          },
          "415": {
            "$ref": "#/components/responses/UnsupportedMediaTypeError"
          },
          "429": {
            "$ref": "#/components/responses/RateLimitError"
          },
          "500": {
            "$ref": "#/components/responses/InternalError"
          }
        },
        "security": [
          {
            "BearerAuth": []
          }
        ],
        "summary": "Update test run step",
        "tags": [
          "Test management"
        ],
        "x-required-scopes": [
          "tests:write"
        ]
      }
    },
    "/workspaces/{workspace_id}/test-runs/{run_id}/summary": {
      "get": {
        "description": "Get test run summary. Results include only resources visible to the authenticated caller; collections use their documented stable order and bounds.",
        "operationId": "getWorkspacesWorkspaceIdTestRunsRunIdSummary",
        "parameters": [
          {
            "description": "The workspace identifier.",
            "in": "path",
            "name": "workspace_id",
            "required": true,
            "schema": {
              "minimum": 1,
              "type": "integer"
            }
          },
          {
            "description": "The run identifier.",
            "in": "path",
            "name": "run_id",
            "required": true,
            "schema": {
              "minimum": 1,
              "type": "integer"
            }
          }
        ],
        "responses": {
          "200": {
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/GetWorkspacesWorkspaceIdTestRunsRunIdSummaryResult"
                }
              }
            },
            "description": "Get test run summary response."
          },
          "401": {
            "$ref": "#/components/responses/AuthenticationError"
          },
          "403": {
            "$ref": "#/components/responses/PermissionError"
          },
          "404": {
            "$ref": "#/components/responses/NotFoundError"
          },
          "429": {
            "$ref": "#/components/responses/RateLimitError"
          },
          "500": {
            "$ref": "#/components/responses/InternalError"
          }
        },
        "security": [
          {
            "BearerAuth": []
          }
        ],
        "summary": "Get test run summary",
        "tags": [
          "Test management"
        ],
        "x-required-scopes": [
          "tests:read"
        ]
      }
    },
    "/workspaces/{workspace_id}/time-projects": {
      "get": {
        "description": "List workspace time projects. Results include only resources visible to the authenticated caller; collections use their documented stable order and bounds.",
        "operationId": "getWorkspacesWorkspaceIdTimeProjects",
        "parameters": [
          {
            "description": "The workspace identifier.",
            "in": "path",
            "name": "workspace_id",
            "required": true,
            "schema": {
              "minimum": 1,
              "type": "integer"
            }
          },
          {
            "description": "Restricts time projects to one status.",
            "in": "query",
            "name": "status",
            "required": false,
            "schema": {
              "type": "string"
            }
          }
        ],
        "responses": {
          "200": {
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/GetWorkspacesWorkspaceIdTimeProjectsResult"
                }
              }
            },
            "description": "List workspace time projects response."
          },
          "401": {
            "$ref": "#/components/responses/AuthenticationError"
          },
          "403": {
            "$ref": "#/components/responses/PermissionError"
          },
          "404": {
            "$ref": "#/components/responses/NotFoundError"
          },
          "429": {
            "$ref": "#/components/responses/RateLimitError"
          },
          "500": {
            "$ref": "#/components/responses/InternalError"
          }
        },
        "security": [
          {
            "BearerAuth": []
          }
        ],
        "summary": "List workspace time projects",
        "tags": [
          "Time tracking"
        ],
        "x-required-scopes": [
          "time:read"
        ]
      }
    },
    "/workspaces/{workspace_id}/transition-matrix": {
      "get": {
        "description": "Get workspace transition matrix. Results include only resources visible to the authenticated caller; collections use their documented stable order and bounds.",
        "operationId": "getWorkspacesWorkspaceIdTransitionMatrix",
        "parameters": [
          {
            "description": "The workspace identifier.",
            "in": "path",
            "name": "workspace_id",
            "required": true,
            "schema": {
              "minimum": 1,
              "type": "integer"
            }
          }
        ],
        "responses": {
          "200": {
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/GetWorkspacesWorkspaceIdTransitionMatrixResult"
                }
              }
            },
            "description": "Get workspace transition matrix response."
          },
          "401": {
            "$ref": "#/components/responses/AuthenticationError"
          },
          "403": {
            "$ref": "#/components/responses/PermissionError"
          },
          "404": {
            "$ref": "#/components/responses/NotFoundError"
          },
          "429": {
            "$ref": "#/components/responses/RateLimitError"
          },
          "500": {
            "$ref": "#/components/responses/InternalError"
          }
        },
        "security": [
          {
            "BearerAuth": []
          }
        ],
        "summary": "Get workspace transition matrix",
        "tags": [
          "Workspace configuration"
        ],
        "x-required-scopes": [
          "items:read"
        ]
      }
    },
    "/workspaces/{workspace_id}/workflows": {
      "get": {
        "description": "List workspace workflows. Results include only resources visible to the authenticated caller; collections use their documented stable order and bounds.",
        "operationId": "getWorkspacesWorkspaceIdWorkflows",
        "parameters": [
          {
            "description": "The workspace identifier.",
            "in": "path",
            "name": "workspace_id",
            "required": true,
            "schema": {
              "minimum": 1,
              "type": "integer"
            }
          }
        ],
        "responses": {
          "200": {
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/GetWorkspacesWorkspaceIdWorkflowsResult"
                }
              }
            },
            "description": "List workspace workflows response."
          },
          "401": {
            "$ref": "#/components/responses/AuthenticationError"
          },
          "403": {
            "$ref": "#/components/responses/PermissionError"
          },
          "404": {
            "$ref": "#/components/responses/NotFoundError"
          },
          "429": {
            "$ref": "#/components/responses/RateLimitError"
          },
          "500": {
            "$ref": "#/components/responses/InternalError"
          }
        },
        "security": [
          {
            "BearerAuth": []
          }
        ],
        "summary": "List workspace workflows",
        "tags": [
          "Workspace configuration"
        ],
        "x-required-scopes": [
          "workspaces:read"
        ]
      }
    },
    "/workspaces/{workspace_key}/items/{item_number}": {
      "get": {
        "description": "Get item by key. Results include only resources visible to the authenticated caller; collections use their documented stable order and bounds.",
        "operationId": "getWorkspacesWorkspaceKeyItemsItemNumber",
        "parameters": [
          {
            "description": "The workspace key.",
            "in": "path",
            "name": "workspace_key",
            "required": true,
            "schema": {
              "minLength": 1,
              "type": "string"
            }
          },
          {
            "description": "The workspace-scoped item number.",
            "in": "path",
            "name": "item_number",
            "required": true,
            "schema": {
              "minimum": 1,
              "type": "integer"
            }
          }
        ],
        "responses": {
          "200": {
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/GetWorkspacesWorkspaceKeyItemsItemNumberResult"
                }
              }
            },
            "description": "Get item by key response."
          },
          "401": {
            "$ref": "#/components/responses/AuthenticationError"
          },
          "403": {
            "$ref": "#/components/responses/PermissionError"
          },
          "404": {
            "$ref": "#/components/responses/NotFoundError"
          },
          "429": {
            "$ref": "#/components/responses/RateLimitError"
          },
          "500": {
            "$ref": "#/components/responses/InternalError"
          }
        },
        "security": [
          {
            "BearerAuth": []
          }
        ],
        "summary": "Get item by key",
        "tags": [
          "Work items"
        ],
        "x-required-scopes": [
          "items:read"
        ]
      }
    },
    "/workspaces/{workspace_key}/items/{item_number}/detail-summary": {
      "get": {
        "description": "Returns an authorization-checked item-detail bootstrap projection from committed state. Independent optional sections report deterministic section_errors when they fail, so partial data is distinguishable from an empty section.",
        "operationId": "getWorkspacesWorkspaceKeyItemsItemNumberDetailSummary",
        "parameters": [
          {
            "description": "The workspace key.",
            "in": "path",
            "name": "workspace_key",
            "required": true,
            "schema": {
              "minLength": 1,
              "type": "string"
            }
          },
          {
            "description": "The workspace-scoped item number.",
            "in": "path",
            "name": "item_number",
            "required": true,
            "schema": {
              "minimum": 1,
              "type": "integer"
            }
          },
          {
            "description": "Use `mobile` to omit desktop-only detail sections.",
            "in": "query",
            "name": "surface",
            "required": false,
            "schema": {
              "enum": [
                "mobile"
              ],
              "type": "string"
            }
          }
        ],
        "responses": {
          "200": {
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/GetWorkspacesWorkspaceKeyItemsItemNumberDetailSummaryResult"
                }
              }
            },
            "description": "Get item detail summary by key response."
          },
          "401": {
            "$ref": "#/components/responses/AuthenticationError"
          },
          "403": {
            "$ref": "#/components/responses/PermissionError"
          },
          "404": {
            "$ref": "#/components/responses/NotFoundError"
          },
          "429": {
            "$ref": "#/components/responses/RateLimitError"
          },
          "500": {
            "$ref": "#/components/responses/InternalError"
          }
        },
        "security": [
          {
            "BearerAuth": []
          }
        ],
        "summary": "Get item detail summary by key",
        "tags": [
          "Work items"
        ],
        "x-required-scopes": [
          "items:read"
        ]
      }
    }
  },
  "servers": [
    {
      "url": "/rest/api/v2"
    }
  ],
  "tags": [
    {
      "description": "API discovery and metadata.",
      "name": "API"
    },
    {
      "description": "Users and user preferences.",
      "name": "People"
    },
    {
      "description": "Work items and their supporting content.",
      "name": "Work items"
    },
    {
      "description": "Workspace lifecycle management.",
      "name": "Workspaces"
    },
    {
      "description": "Workspace types, statuses, workflows, and settings.",
      "name": "Workspace configuration"
    },
    {
      "description": "Pages, page labels, and diagrams.",
      "name": "Knowledge"
    },
    {
      "description": "Collections, boards, milestones, and iterations.",
      "name": "Planning"
    },
    {
      "description": "Worklogs, timers, and time projects.",
      "name": "Time tracking"
    },
    {
      "description": "Links between Windshift resources.",
      "name": "Links"
    },
    {
      "description": "Coding-agent skills and runs.",
      "name": "Agents"
    },
    {
      "description": "Workspace actions and templates.",
      "name": "Automation"
    },
    {
      "description": "Test cases, plans, runs, and coverage.",
      "name": "Test management"
    },
    {
      "description": "Asset catalogs, records, and imports.",
      "name": "Asset management"
    },
    {
      "description": "Conditions, approvals, and workflow governance.",
      "name": "Governance"
    }
  ]
}
