String odataContextValue = JsonUtils.createODataContextValueForTombstone(entityInfo.getEntitySetName());
String selfLink = AtomEntryEntityProducer.createSelfLink(entityInfo, deletedEntry, null);
String idValue = properties.getServiceRoot().toASCIIString() + selfLink;
jsonStreamWriter.namedStringValue(FormatJson.ODATA_CONTEXT, odataContextValue);
jsonStreamWriter.separator();
jsonStreamWriter.namedStringValue(FormatJson.ID, idValue);
jsonStreamWriter.endObject();
if (counter < deletedEntries.size() - 1) {