Represents an edit suggestion, potentially containing multiple individual suggestions.

interface EditSuggestion {
    bbox: BBox;
    id: string;
    isRead: boolean;
    isStarred: boolean;
    modificationData: ModificationMetadata;
    source: EditSuggestionSource;
    status: EditSuggestionStatus;
    suggestions: Suggestion[];
}

Properties

bbox: BBox

The bounding box of the area covered by the edit suggestion.

id: string
isRead: boolean

Whether the edit suggestion is read or not.

isStarred: boolean

Whether the edit suggestion is starred or not.

modificationData: ModificationMetadata

The source from which the edit suggestion originated.

The overall status of the edit suggestion.

suggestions: Suggestion[]

A list of individual suggestions included in the edit suggestion.