Documentation Index
Fetch the complete documentation index at: https://docs.encord.com/llms.txt
Use this file to discover all available pages before exploring further.
SceneCoordinateIssue Objects
IssueFrameRange Objects
FrameRangeIssue Objects
AnnotationIssue Objects
TaskIssues Objects
list
- FileIssue: Issues anchored to the entire data unit
- FrameIssue: Issues anchored to a specific frame
- CoordinateIssue: Issues anchored to specific 2D coordinates on a frame
- SceneCoordinateIssue: Issues anchored to 3D scene coordinates on a frame
- FrameRangeIssue: Issues anchored to a range of frames
- AnnotationIssue: Issues anchored to a specific annotation
Iterable[Issue]- An iterator of Issue objects (discriminated union of all issue types).
add_file_issue
commentstr - The comment for the issue.issue_tagsList[str] - The issue tags for the issue.
add_frame_issue
frame_indexint - The index of the frame to add the issue to.commentstr - The comment for the issue.issue_tagsList[str] - The issue tags for the issue.
add_coordinate_issue
frame_indexint - The index of the frame to add the issue to.xfloat - The x coordinate of the issue.yfloat - The y coordinate of the issue.commentstr - The comment for the issue.issue_tagsList[str] - The issue tags for the issue.
add_scene_coordinate_issue
frame_indexint - The index of the frame to add the issue to.xfloat - The x coordinate (in scene space).yfloat - The y coordinate (in scene space).zfloat - The z coordinate (in scene space).commentstr - The comment for the issue.issue_tagsList[str] - The issue tags for the issue.
delete
Issue objects (as returned by list()) or raw UUIDs,
mixed freely. Empty input is a no-op.
Permissions: project admins can delete any issue. Issue authors can
delete their own general issues, but annotation issues (label
rejections) can only be deleted by project admins.
The back-end validates the entire batch before deleting anything: if
any issue cannot be deleted (because the caller is not the author and
not a project admin, or the issue doesn’t belong to this task’s
project), the request raises and NO issues in the batch are deleted.
Arguments:
issues- A list ofIssueobjects orUUIDs to delete.

